Skip to content

Instantly share code, notes, and snippets.

View cadesalaberry's full-sized avatar
👀
Watching you

C-A de Salaberry cadesalaberry

👀
Watching you
View GitHub Profile
@kernelsmith
kernelsmith / useful_sublime_text2_plugins.txt
Last active December 15, 2015 18:59
useful sublime text 2 plugins
1) Install package control in sublime: http://wbond.net/sublime_packages/package_control/installation. For the impatient:
a) Ctl-` (control backtick, might be command-backtick for macsters)
b) Paste the following:
import urllib2,os; pf='Package Control.sublime-package'; ipp=sublime.installed_packages_path(); os.makedirs(ipp) if not os.path.exists(ipp) else None; urllib2.install_opener(urllib2.build_opener(urllib2.ProxyHandler())); open(os.path.join(ipp,pf),'wb').write(urllib2.urlopen('http://sublime.wbond.net/'+pf.replace(' ','%20')).read()); print('Please restart Sublime Text to finish installation')
c) Hit enter
d) Restart sublime
2) Install the git package (https://github.com/kemayo/sublime-text-2-git/wiki):
a) Bring up the Command Palette (Command+Shift+p on OS X, Control+Shift+p on Linux/Windows).
b) Select "Package Control: Install Package" (it'll take a few seconds)
@khaledmdiab
khaledmdiab / resources.md
Last active August 29, 2015 14:03
listing some important libraries/frameworks resources

Scala

  • Scalaz
  • Scalaz-stream
  • Scala + Akka
  • Scala Spray for http
  • ScalaTest + Scala
  • Google Guava: collections, caching, primitives support, concurrency libraries, common annotations, string processing, I/O, and so forth.
  • Scala + Play (web development)
  • Scala + BlueEyes (web development https://github.com/jdegoes/blueeyes)