Does anyone know of a good and simple open source code snippet repository? Ive seen many that are free services, but I want to host it myself. A few google searches just find the free services.
|
|
|
Can you clarify what you mean? Do you want one for your own personal use (what is wrong with the built in snippet management in visual studio? Are you looking for examples of design patterns? In that case maybe check java2s or the portland pattern repository. For snippets such as looping constructs, try catches, etc i love Coderush templates. That being said, my personal opinion is that snippets are as evil as copy-paste. What you probably want is to refactor so that there is no duplicate code. And if you need to share code between projects - some sort of core library might be the way to go. Edit: In the comments below you specify that you want snippets available via web. I don't have anything to recommend thats exactly like that but you should look into storing your snippets in visual studio and syncing them using LiveMesh. I know of several people that do something similar and they like it. OOoooor...what's wrong with just a wordpress blog? You can set it to private access only. You get tagging, searching, syntax highlighting (via the google syntax highlight plugin) and a nearly 0 fuss setup. |
|||||
|
|
|
|||||||||
|
|
http://code.google.com or sourceforge not good enough? Also, there is GitHub if you preffer Granted, it's not for short snippets, mainly, but you could easely use it for that. EditReading again your question and your comments, what you really want is an existing, open source, system to hold short pieces of text made in c#? I'd guess you'd have to do that yourself, I know of no project to do just that :S |
|||||
|
|
I'm also trying to understand what you mean. As the top commenter said, there's visual studio. Or there's Github but that's for more of version control and can have some annoying sides when trying to organise things. There's also Snippet Repo which you can post snippets, favourite other people's stuff. I guess it's like a social code repository. |
|||
|
|
|
I'd still suggest using existing sites. I often use Google Codesearch when I'm looking for existing examples of how to use a function or boilerplate code (just watch licenses of the code you are borrowing from...) But it sounds like you're looking to host a pastebin. pastebin.com has source code available. Other variations are available, and wikipedia has a good comparison of pastebin software. |
|||
|
|
git + gitosis + gitweb I have a repository specifically for small one-off scripts I'm unlikely to change or expand. Doing something similar for a personal library doesn't seem unreasonable. You want to manage source code; that's what source control is for. |
|||
|
|
Take a look into OpenGrok in conjunction with a SVN setup. |
||||
|
|