Este gist incluye un fichero por cada charla, artículo, vídeo que me ha parecido interesante y quiero recordar una serie de notas que haya tomado de ese recurson interesante.
View json2csv.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
You'll need NodeJS installed to run this script. | |
Place this script in your track's root folder: | |
track/ | |
+ config.json | |
+ json2csv.js <----- | |
+ exercises/ | |
+ hello_world |
View decissions-made.markdown
2013, May 23rd meeting
Decissions we made
- Operating systems: windows and linux
- IDE: Take a look to IntelliJ. Use eclipse otherwise.
- Programming language for the server: scala & play framework
- Programming language for the web cliente: html5, css3, js
- Mobile client: android
- Source code repositories: git & github
View derby-delete-statement.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
String driver = "org.apache.derby.jdbc.EmbeddedDriver"; | |
String dbName = "/DerbyDB/ExampleDB"; | |
String connectionURL = "jdbc:derby:" + dbName; | |
Connection conn = null; | |
try{ | |
Class.forName(driver); | |
} catch(java.lang.ClassNotFoundException e) { | |
e.printStackTrace(); | |
} |
View jpa-config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<persistence xmlns="http://java.sun.com/xml/ns/persistence" version="1.0"> | |
<persistence-unit name="test-jpa" transaction-type="RESOURCE_LOCAL"> | |
<provider>org.hibernate.ejb.HibernatePersistence</provider> | |
<class>es.rct.jpa.model.Person</class> | |
<exclude-unlisted-classes>true</exclude-unlisted-classes> | |
<properties> | |
<property name="hibernate.connection.url" |
View pom-fragment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- ... --> | |
<dependency> | |
<groupId>org.apache.derby</groupId> | |
<artifactId>derby</artifactId> | |
<version>10.6.2.1</version> | |
<type>jar</type> | |
<scope>compile</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.hibernate</groupId> |
View LoadTibrvjApp.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.tibco.tibrv.Tibrv; | |
import com.tibco.tibrv.TibrvException; | |
public class TibrvLoaderTest { | |
public static void main(String[] args) { | |
new TibrvLoaderTest().start(); | |
} | |
private void start() { |
View about.md
Programming Achievements: How to Level Up as a Developer
This gist is part of a blog post. Check it out at:
http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer
I found it through kinisoftware:
http://kinisoftware.com/blog/2011/08/17/lista-de-logros-para-ser-un-mejor-programador/