Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
var util = require('util'), | |
http = require('http'), | |
events = require('events'); | |
var Twitter = function(opts) { | |
this.username = opts.username; | |
this.password = opts.password; | |
this.track = opts.track; | |
this.data = ''; | |
}; |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
mkdir -p /usr/local/var/postgres9.3
initdb /usr/local/var/postgres9.3 -E 'UTF-8' --lc-collate='en_US.UTF-8' --lc-ctype='en_US.UTF-8'
pg_upgrade -d /usr/local/var/postgres9.2/ -D /usr/local/var/postgres9.3/ -b /usr/local/Cellar/postgresql/9.2.1/bin/ -B /usr/local/Cellar/postgresql/9.3.1/bin/ -v
#!/usr/bin/env python3 | |
# Download the daily APOD picture and set it as the system wallpaper on OS X | |
# @author Alex Zylstra | |
# @date 2013/10/05 | |
__author__ = 'Alex Zylstra' | |
__date__ = '2013-10-05' | |
import urllib.request | |
import os |
#this is a comment | |
#isql-port http-port name | |
12001 12002 myFirstEndpoint | |
12003 12004 mySecondEndpoint |
class Prototipo { | |
static init() { | |
Object.metaClass { | |
prototype = null | |
// La inicializo en null porque cuando redefino el constructor, ahi le digo que será un mapa. | |
dynamicProperties = null |
<?xml version="1.0" encoding="UTF-8"?> | |
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"> | |
<persistence-unit name="db" transaction-type="JTA"> | |
<provider>org.eclipse.persistence.jpa.PersistenceProvider</provider> | |
<jta-data-source>jdbc/DbPool</jta-data-source> | |
<exclude-unlisted-classes>false</exclude-unlisted-classes> | |
</persistence-unit> | |
</persistence> |