Skip to content

Instantly share code, notes, and snippets.

View Judit's full-sized avatar

Judit Sarmiento Rodríguez Judit

View GitHub Profile
@Judit
Judit / pom.xml
Last active August 29, 2015 13:57
Maven + Neo4j JDBC Driver + Deploy CloudBees
@Judit
Judit / helloWorld-2.0.0.java
Last active August 29, 2015 13:57
Neo4j JDBC - Connect with GrapheneDB
import org.neo4j.jdbc.Driver;
import org.neo4j.jdbc.Neo4jConnection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.Properties;
public class HelloWorld {
public static void main(String[] args) throws ClassNotFoundException, SQLException {
@Judit
Judit / application.coffee
Last active August 29, 2015 13:57
Use of HTML5 FileSystem API
#= require jquery
#= require jquery_ujs
#= require_tree .
$(document).ready ->
window.requestFileSystem = window.requestFileSystem || window.webkitRequestFileSystem
window.fs = null
initFS = (->
window.requestFileSystem window.TEMPORARY, 1024*1024, (filesystem) ->
Install VLC: http://www.videolan.org/vlc/download-debian.html
Install Firefox plugin: http://www.videolan.org/doc/vlc-user-guide/en/ch07.html
@Judit
Judit / 00. rvm && postgres
Created September 20, 2010 10:44
Rails 3 steps
* Install rvm
http://rvm.beginrescueend.com/rvm/install/
* Prepare the development environment update rvm whit ruby 1.9.2 and rails 3.0.0:
rvm update && rvm reload # update rvm
rvm install 1.9.2
rvm use 1.9.2
rvm gemset create rails3
rvm --default 1.9.2@rails3