Code Snippet Managers for Linux desktops? [closed] - linux

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
In the spirit of https://stackoverflow.com/questions/3349990/code-snippet-managers-for-os-x
What are some good code snippet managers for Linux?
My quick search didn't turn up much. Eclipse, emacs, vim, Kate, and KDevelop all offer their own integrated snippet managers, but I'm looking for something more generic along the lines of CodeCollector or Snippets, ideally with the option of a CLI interface.
Even a pure CLI tool would be acceptable (maybe even preferable).

Have you seen jCodeCollector? It's a significantly less complicated clone of CodeCollector, but is multiplatform (java). It is available from https://github.com/alessandrococco/jcodecollector
There is also Acire, a project started by Jono Bacon of Ubuntu fame, which is management library for useful python snippets. While full of useful tidbits, it is however, language and linux-specific.

I use snippets on the mac. I found a similar app (though not as beautiful...) called glipper. It is an gnome applet that was designed as a clipboard manager. It has a snippet collector built into it though (turn it on in plugins) that lets you save snippets forever. It is not very well organized...but it is a very simple offering that has a simple interface.

There is a plugin for Gedit that integrates with snipplr.
Gedit Snipplr Plugin

Related

F# Editor for Linux [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am about to develop a F# project in Linux, but I don't know of any good editors with F# support.
Google is no real help either, since the results tend to be quite old (FunctionalVariations plugin for MonoDevelop anyone?).
What text editors with F# syntax highlighting and IntelliSense support are there for Linux? What do you guys use?
You can use:
Monodevelop ide with F# addin, see info. Stable and lot of features.
emacs with F# mode, see info
SublimeText 3, see info
others (SublimeText 2, vim) less complete, see info
F# plugin (alpha) for Lighttable, see info
The F# editor plugins (like monodevelop/xamarinstudio/emacs/sublimetext) sources are at repository https://github.com/fsharp/fsharpbinding
All editor plugins are based on the common project FSharp.Compiler.Service
A note:
You will often see F# tutorials on XamarinStudio. XamarinStudio is based Monodevelop, and the F# plugin is the same. Xamarin sponsor the work of the plugin ( open source https://github.com/fsharp/fsharpbinding ).

Open source search engines : alternatives to Lucene [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Currently we are using Lucene for our search engine, but we want to look at some alternatives. I have looked at several on the net but seems like a lot of them are out of date or the development stopped. That is why I want to ask if you guys know any good open-source alternatives to Lucene that are still in development?
Kind regards,
Merlijn
Try Sphinx search http://sphinxsearch.com/. It is used by many NLP researchers.
If you are looking for an open source and Java based alternative, then you could try Terreir. Note that Terrier targets academia.
If the language is not an issue, then you could look at Xapian. I found its community quite active, and it has participated in Google Summer of Code several times.
Otherwise, you could try Whoosh, a python based search library.
FastcatSearch is also open source and java based alternative.
Lucene is a IR library as already you know, Solr is a search server, and FastcatSearch is a counterpart of Solr.
It provides web-based manager, so that you can set up configs easily.

Colloborative programming with compiler [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Does anyone know of any software like Google Docs, or collabedit that allows you to edit realtime collaboratively and even compile a .cpp or other program over the web?
I haven't used this website, but seems like http://codebunk.com/ does the job.
It doesn't work for Java though.
I know of this website that will compile the code for you:
http://ideone.com/
Unfortunately, I cannot help in the real time editing front.
I wrote a little webapp that does exactly that, i.e. it lets you compile Google Docs documents: http://compiler.m01.eu
You can write C++ code into a Google Document (and do that collaboratively if you like), and then click on a bookmark (provided on the site) to compile your code, which will either start the download of your binary or show a compiler error message.

How can I search for a code snippet in all folders/files of a site? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
How can I search for a code snippet in all folders/files of a site?
I can't find the line of code I'm looking for. It's a large site and looking through file by file is not reasonable. How can I go about finding this snippet?
Other details:
It's a Drupal site
I use a Mac
Code editing software I currently have avail: Coda, Text Wrangler, Dreamweaver
Any help would be incredibly appreciated.
Just use grep - take a closer look at this tool here: http://www.cyberciti.biz/faq/unix-linux-finding-files-by-content/
FYI: it is a command-line tool.
Also consider that Drupal may be storing something within the database, even the PHP code (which happens when you have PHP filter enabled for some contents and put PHP inline). Thus you may not find the specific code snippet within the code of the application and then you will probably need to look into the database.
While grep via a terminal will work wonderfully for OSX and *nix users, those on Windows may find that grep isn't available.
For Windows users who want a solution to this, you can try the following:
1) Using cygwin (http://www.cygwin.com), which can be installed with grep
or
2) Grabbing a copy of grepWin (http://tools.tortoisesvn.net/grepWin.html); a grep tool with a frontend UI.

Dreamweaver equivalent for Linux [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am looking for an equivalent software to Dreamweaver in Linux.
It is not an exact match but it is based out of Eclipse which means super cross platform funky java love.
http://www.aptana.com/
Aptana Studio is actually what I replaced Dreamweaver with since Adobe bought Macromedia, I use it on Windows and Linux without trouble. But for the suggestion you will also get my 2 cents about Wysiwtf... it is almost never what you get. Some of the best code I have ever done in my life was done in SciTE (also available in Linux), it supports multiple coding languages and offers enough features to be useful without becoming bloated.
If you want something reasonably non-technical, then perhaps Kompozer?
Or, if you want more technical stuff, then you probably want Aptana.
Another mention bluefish.
Depending on what desktop environment you use I can recommend Quanta+ to you. It's part of the KDE SC but can also be used in other DEs.
You could also use KompoZer, it seems to be nice as well. Didn't test this one though.
I've also researched this for myself, and the answer is that, in my opinion, there is nothing comparable.
Most people choose Dreamweaver for its WYSIWYG (as good as it can be with HTML), and the ease of use. If you're looking for database connectivity, PHP debugging and the like, then Elipse beats Dreamweaver by a lot, but chance is the original poster is looking for the ease-of-use, so neither Bluefish nor Eclipse is going to satisfy him.

Resources