473,387 Members | 1,897 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Snippets management

Hi there,

I've been looking for a snippet manager and found PySnippet but it
requires PyGTK. Do you know any other option that doesn't need much?

I'm sort of new to python and user interfaces seem a bit far for me
right now, that's why I thought having to install PyGTK was
unnecessary.

Would you recommend installing it anyway?

I'm on a Mac, maybe some users of Steve's Unix flavour know about a
snippets software piece? I'm looking for free/open source alternatives.

Thank you!

P.S.: I'm also new to usenet ;) and hope my english is not that bad.
Nov 6 '08 #1
11 1352
r
On Nov 5, 7:55*pm, exp...@gmail.com (Edwin) wrote:
Hi there,

I've been looking for a snippet manager and found PySnippet but it
requires PyGTK. Do you know any other option that doesn't need much?

I'm sort of new to python and user interfaces seem a bit far for me
right now, that's why I thought having to install PyGTK was
unnecessary.

Would you recommend installing it anyway?

I'm on a Mac, maybe some users of Steve's Unix flavour know about a
snippets software piece? I'm looking for free/open source alternatives.

Thank you!

P.S.: I'm also new to usenet ;) and hope my english is not that bad.
I don't use one, but why not take a stab at coding one yourself.
Use Tkinter to start, its easy. well documented
gotta learn GUI somehow
if you need links to docs or help let me know

Nov 6 '08 #2
r <rt****@gmail.comwrites:
On Nov 5, 7:55Â*pm, exp...@gmail.com (Edwin) wrote:
>Hi there,

I've been looking for a snippet manager and found PySnippet but it
requires PyGTK. Do you know any other option that doesn't need much?

I'm sort of new to python and user interfaces seem a bit far for me
right now, that's why I thought having to install PyGTK was
unnecessary.

Would you recommend installing it anyway?

I'm on a Mac, maybe some users of Steve's Unix flavour know about a
snippets software piece? I'm looking for free/open source alternatives.

Thank you!

P.S.: I'm also new to usenet ;) and hope my english is not that bad.

I don't use one, but why not take a stab at coding one yourself.
Use Tkinter to start, its easy. well documented
gotta learn GUI somehow
if you need links to docs or help let me know
Good idea. It's not that I don't want to learn GUI, but coming from Web
related fields I'm taking it one step at a time, while learning Unix
(editors, shell, filesystem hierarchy, etc.).

All of this had been obscured by 'Apple's lifestyle'. It's been less than a
year since I realized I had so much powerful software around.

I'll start with Python documentation. If in any trouble, I'll get to you.

Cheers!
Nov 6 '08 #3
On approximately 11/5/2008 8:23 PM, came the following characters from
the keyboard of r:
I don't use one, but why not take a stab at coding one yourself.
Use Tkinter to start, its easy. well documented
gotta learn GUI somehow
Since you are recommending tkinter, maybe you know what is the state of
cross-platform (or even single-platform) printing capabilities in Tk
these days? Last I heard, there was a plan, but it was nowhere near
complete. So I guess the OP is on a mac, so maybe you could reply about
mac printing capabilities, if you know, but I'm interesting in
cross-platform printing.

Because of that, I've started learning PyQt, which seems to be
cross-platform at least for Linux, Mac, and Windows...

--
Glenn -- http://nevcal.com/
===========================
A protocol is complete when there is nothing left to remove.
-- Stuart Cheshire, Apple Computer, regarding Zero Configuration Networking

Nov 6 '08 #4
On Wed, 05 Nov 2008 19:55:51 -0600, Edwin wrote:
Hi there,

I've been looking for a snippet manager and found PySnippet but it
requires PyGTK. Do you know any other option that doesn't need much?
[snip]

If you're looking for a snippet manager for actually *using* it (not
educational purposes or something), I'd recommend your favorite editor
and the version control system of your choice. I found DVCSes to be
rather nice for local ad-hoc repositories (particulary Git_). If you'd
like to modify your snippet system you could take a look at Mercurial or
Bazaar, both being written in Python.

HTH,

... _Git: http://git.or.cz/

--
Robert "Stargaming" Lehmann
Nov 6 '08 #5
Edwin wrote:
Hi there,

I've been looking for a snippet manager and found PySnippet but it
requires PyGTK. Do you know any other option that doesn't need much?

I'm sort of new to python and user interfaces seem a bit far for me
right now, that's why I thought having to install PyGTK was
unnecessary.

Would you recommend installing it anyway?

I'm on a Mac, maybe some users of Steve's Unix flavour know about a
snippets software piece? I'm looking for free/open source alternatives.

Thank you!

P.S.: I'm also new to usenet ;) and hope my english is not that bad.
--
http://mail.python.org/mailman/listinfo/python-list
I developed one in wxPython, you can see some of the features here.
http://mientki.ruhosting.nl/data_www...de_editor.html

Although it's part of a larger part it can be used standalone,
but then it requires two actions copy and paste.
Started from a python application you can do copy+paste with just one
action.
It has integrated a full blown scintilla editor,
with syntax highlighting, code completion, and syntax checker.

If there's interest, I can distribute the files as a separate package.

cheers,
Stef Mientki

Nov 6 '08 #6
On Nov 6, 12:38*pm, Stef Mientki <stef.mien...@gmail.comwrote:
Edwin wrote:
Hi there,
I've been looking for a snippet manager and found PySnippet but it
requires PyGTK. Do you know any other option that doesn't need much?
I'm sort of new to python and user interfaces seem a bit far for me
right now, that's why I thought having to install PyGTK was
unnecessary.
Would you recommend installing it anyway?
I'm on a Mac, maybe some users of Steve's Unix flavour know about a
snippets software piece? I'm looking for free/open source alternatives.
Thank you!
P.S.: I'm also new to usenet ;) and hope my english is not that bad.
--
http://mail.python.org/mailman/listinfo/python-list

I developed one in wxPython, you can see some of the features here.
*http://mientki.ruhosting.nl/data_www...de_editor.html

Although it's part of a larger part it can be used standalone,
but then it requires two actions copy and paste.
Started from a python application you can do copy+paste with just one
action.
It has integrated a full blown scintilla editor,
with syntax highlighting, code completion, and syntax checker.

If there's interest, I can distribute the files as a separate package.

cheers,
Stef Mientki
Wicked!
I'm going to check it out Stef.

Is the source available? It's all about learning for me right now.

Cheers!
Nov 7 '08 #7
expora wrote:
On Nov 6, 12:38 pm, Stef Mientki <stef.mien...@gmail.comwrote:
>Edwin wrote:
>>Hi there,

I've been looking for a snippet manager and found PySnippet but it
requires PyGTK. Do you know any other option that doesn't need much?

I'm sort of new to python and user interfaces seem a bit far for me
right now, that's why I thought having to install PyGTK was
unnecessary.

Would you recommend installing it anyway?

I'm on a Mac, maybe some users of Steve's Unix flavour know about a
snippets software piece? I'm looking for free/open source alternatives.

Thank you!

P.S.: I'm also new to usenet ;) and hope my english is not that bad.
--
http://mail.python.org/mailman/listinfo/python-list
I developed one in wxPython, you can see some of the features here.
http://mientki.ruhosting.nl/data_www...de_editor.html

Although it's part of a larger part it can be used standalone,
but then it requires two actions copy and paste.
Started from a python application you can do copy+paste with just one
action.
It has integrated a full blown scintilla editor,
with syntax highlighting, code completion, and syntax checker.

If there's interest, I can distribute the files as a separate package.

cheers,
Stef Mientki

Wicked!
I'm going to check it out Stef.

Is the source available? It's all about learning for me right now.
I've to extract the right libs from the larger program,
as I'm in an import crisis right now,
it may take a couple of days.
If it's not here by the end of next week,
mail be directly, because I forget a lot :-)

cheers,
Stef
Cheers!
--
http://mail.python.org/mailman/listinfo/python-list
Nov 7 '08 #8
On Nov 7, 6:36*pm, Ricardo Aráoz <ricar...@gmail.comwrote:
>
Since you are in Linux you should definitely check "Basket". Go to it's
website and you'll be hooked, just what you need.
Actually I use Mac OS and Free BSD but I'll check it out mate.
Thanks for the tip!!
Nov 7 '08 #9
On Nov 7, 5:38*pm, Stef Mientki <stef.mien...@gmail.comwrote:
I've to extract the right libs from the larger program,
as I'm in an import crisis right now,
it may take a couple of days.
If it's not here by the end of next week,
mail be directly, because I forget a lot :-)

cheers,
Stef
Cheers!
--
http://mail.python.org/mailman/listinfo/python-list
Take your time mate. Thank you in advance.
In the meantime. I'm going to check BasKet as Ricardo recommended.
I'm also starting some sketches to make my own, ala Python. I don't
know how much will it take me but if anyone is interested I can send
you a message as soon as I've got something working.

Cheers,

Nov 8 '08 #10
expora wrote:
On Nov 6, 12:38 pm, Stef Mientki <stef.mien...@gmail.comwrote:
>Edwin wrote:
>>Hi there,

I've been looking for a snippet manager and found PySnippet but it
requires PyGTK. Do you know any other option that doesn't need much?

I'm sort of new to python and user interfaces seem a bit far for me
right now, that's why I thought having to install PyGTK was
unnecessary.

Would you recommend installing it anyway?

I'm on a Mac, maybe some users of Steve's Unix flavour know about a
snippets software piece? I'm looking for free/open source alternatives.

Thank you!

P.S.: I'm also new to usenet ;) and hope my english is not that bad.
--
http://mail.python.org/mailman/listinfo/python-list
I developed one in wxPython, you can see some of the features here.
http://mientki.ruhosting.nl/data_www...de_editor.html

Although it's part of a larger part it can be used standalone,
but then it requires two actions copy and paste.
Started from a python application you can do copy+paste with just one
action.
It has integrated a full blown scintilla editor,
with syntax highlighting, code completion, and syntax checker.

If there's interest, I can distribute the files as a separate package.

cheers,
Stef Mientki

Wicked!
I'm going to check it out Stef.

Is the source available? It's all about learning for me right now.
source can now be found here:
http://pylab-works.googlecode.com/fi..._Templates.zip

cheers,
Stef

Nov 10 '08 #11
On Nov 10, 3:14*pm, Stef Mientki <stef.mien...@gmail.comwrote:
expora wrote:
On Nov 6, 12:38 pm, Stef Mientki <stef.mien...@gmail.comwrote:
Edwin wrote:
>Hi there,
>I've been looking for a snippet manager and found PySnippet but it
requires PyGTK. Do you know any other option that doesn't need much?
>I'm sort of new to python and user interfaces seem a bit far for me
right now, that's why I thought having to install PyGTK was
unnecessary.
>Would you recommend installing it anyway?
>I'm on a Mac, maybe some users of Steve's Unix flavour know about a
snippets software piece? I'm looking for free/open source alternatives.
>Thank you!
>P.S.: I'm also new to usenet ;) and hope my english is not that bad.
--
http://mail.python.org/mailman/listinfo/python-list
I developed one in wxPython, you can see some of the features here.
*http://mientki.ruhosting.nl/data_www...de_editor.html
Although it's part of a larger part it can be used standalone,
but then it requires two actions copy and paste.
Started from a python application you can do copy+paste with just one
action.
It has integrated a full blown scintilla editor,
with syntax highlighting, code completion, and syntax checker.
If there's interest, I can distribute the files as a separate package.
cheers,
Stef Mientki
Wicked!
I'm going to check it out Stef.
Is the source available? It's all about learning for me right now.

source can now be found here:
*http://pylab-works.googlecode.com/fi..._Templates.zip

cheers,
Stef
How great!
Thanks for sharing mate! Downloading...

Cheers,
E.
Nov 11 '08 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
by: Aurélien Géron | last post by:
Hi, Does anyone know where I can find a lot of Python code snippets? I searched the Python wiki and Internet but could not find more than five or ten code snippets at a time. I'm looking...
2
by: - Steve - | last post by:
I'm working on my asp.net site and I'm wondering what the best way to reuse little snippets of code is? Right now I have a Class in it's own cs file that I call Snippets. Then when I want to...
2
by: Steve Franks | last post by:
I'm using VS.NET 2005 beta 2 and am excited about the idea of using code snippets. This is a nice time saver. For example I need to read all text from a file, and see that with a simple command...
5
by: moondaddy | last post by:
I've seen how people have snippets of code stored over by the tool box and then can drag them into a code page. What do you call this and what's a reference on how to do this? Thanks. --...
0
by: Ofer B. | last post by:
Hi Do any one know where visual studio save it's data about the code snippets directories? I added some directories with snippets and than remove them with the "Code Snippets Manager". now,...
0
by: robert | last post by:
I installed the C# snippets that were recently made available by Microsoft. Since then when I right-click and choose either Insert Snippet or Surround With... or press ctrl space, choose a snippet...
0
by: Robert Zurer | last post by:
Hello I have posted this here once before to no avail so I thought I might try again I love the snippets feature and use it constantly. However when I recently downloaded and ran the C#...
13
by: frk.won | last post by:
I am interested in learning how to use the VS 2005 code snippets. However, I wish to know what are the best ways to source control the code snippets? Are there any source safe/subversion...
2
Frinavale
by: Frinavale | last post by:
I'm attempting to supplement the help for my code by providing other developers with code snippets that demonstrate how to use my classes/method. I've created a .snippet file and have placed it in...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.