Is there anything like rubygems.org for scala libraries [closed] - scala

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I notice there is an sbaz tool that seems to have similar functionality to the ruby gem tool but I don't see any community site like gemcutter.org / rubygems.org. Is there something like this around.
There are 1084 repositories on github with scala in them. I'm surprised I can't find some centralized package management utility. Perhaps I'm just googling the wrong keywords.

The closest equivalent is probably http://scala-tools.org which maintains a Maven (ivy, sbt, etc) repository of most of the best-known packages.

Scala Tools appears to no longer be functional as of this writing. It says:
We are no longer providing any support for scala-tools.org.
Instead, it is suggested to use https://oss.sonatype.org/

As Kris said, http://scala-tools.org is the closest thing so far. We're working on improving the site, and will be enabling "static project sites" shortly. There's also http://implicit.ly/ which aims to be the standard new source for published releases.

Related

Is there a repository of community made PostgreSQL functions / snippets? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
Postgres is great, but it misses many quality of life features. For example, you can't perform an UPSERT without explicitly stating all of your columns. You can code some dynamic SQL to solve this, but wouldn't it be better to install someone else's code?
In almost all programming languages we have repositories of useful, community driven packages. Think pypi + pip in Python or npm in JS. Is there something similar for PostgreSQL, or at least some place to search for snippets?
I've tried to search on Google, but it is really hard to find anything, as most searches give you tutorials or documentation pages.
there are , you can add custom feature using extension in postgresql
and there are tens of open source extensions on github apart from official extensions available for postgresql
get more information here

looking for code revision gui/application for my eclipse subversion [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I was wondering if anyone can recommend any GUI/portal/platform/application that shows code revisions. I'm using subversion with my eclipse and wonder if there's something nice such as trac to see the changes.
Thanks
screenshot example from trac (I found it extremely hard to install)
http://www.linuxlinks.com/portal/content/reviews/Programming/Screenshot-Trac.png
*sorry, since I'm a newbie, I can't embed the picture
I've been using WebSVN and it works great. I've put it at the same host as my repository and access it through standard apache. WebSVN is free.
Then there is FishEye from Atlassian. It's not free but I don't doubt it's one of the best ones available.
What about good old subclipse? Not only it shows revisions, but also it's a great implementation of subversion client for eclipse with such functionality as: commit, update, branch, merge, etc. Not mentioning extended visualization capabilities. It seems that you do not use subclipse while you definitely should.

Which is the recommended groovy plugin for Emacs? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
When looking for a simple groovy mode plugin for emacs to get indenting and some form of syntax highlighting, I found 3 version on the groovy website.
This page is excellent at giving the overview and some down in the weeds details, however is a bit skimpy on why to choose one over the other.
There is Jeremy Rayner's groovy-mode.el which isn't painful
There is Russel Winder's identically named groovy-mode.el which is based on cc-mode.
There Stuart Clayman inferioir groovy mode inf-groovy.el
Currently I am drawn toward Jeremy's plugin, but I feel that being not painful is a poor reason to choose one over the others.
I'd like to know which ones are recommended or which ones are to be avoided?
Things changed a bit since ataylor's answer: now (March 2017) the official Groovy website links to Emacs-Groovy-Mode which combines Russel Winder's and Stuart Clayman's work.
As we may expect, the repo is available on Github.
I use Jeremy Ranyer's groovy-mode.el for the sole reason that it worked better with my code then Russel Winder's version, at the time I tested them.
Here's a small modification I've added to Rayner's that fixes some problems (the elvis operator, if I recall correctly):
(defconst groovy-block-mid-re
"need something here or it blows up"
)

Best Free Online Source Control [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
There are many free online Source Control available but I would like to know your experience on it, if any, and which is the best one?
Me and my friend are starting a small test project and would like some really good online source control.
We will be developing ASP.Net app.
If you're just after a hosted source code repository:
Github
Bitbucket
If you need issue tracking, file releases, wikis, mailing lists, etc:
Sourceforge
Google Code Hosting
I've got one project at Sourceforge, and I find the amenities quite nice. You might find this comparison handy.
I'm using Unfuddle for some personal stuff to avoid issues with corporate firewalls.
You can commit over http with them.
Otherwise, use Github as already suggested.

Open source examples of well written SCM web interface in Perl [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Can anyone point me to some good Open Source web interface for VCS (version control system) written in Perl?
Something well written, so I can examine the code and steal the best parts (or organization) for gitweb. Preferably something without tons of external dependences not available in (extended) Perl core.
I haven't looked at the source code of SVN::Web, so I can't tell you if it's well written, but I sure like to use it. Here is a list of the dependencies, and you can see it in action.
Have you has a look at CvsMonitor? Its a little old but its a perl web interface into CVS.