#List of countries
It's time someone compiled a list of countries to use within a web application. This gist attempts to make a first move at that.
I've also compiled a list of nationalities
--- | |
ab: | |
name: Abkhaz | |
nativeName: "\xD0\xB0\xD2\xA7\xD1\x81\xD1\x83\xD0\xB0" | |
aa: | |
name: Afar | |
nativeName: Afaraf | |
af: | |
name: Afrikaans | |
nativeName: Afrikaans |
#List of countries
It's time someone compiled a list of countries to use within a web application. This gist attempts to make a first move at that.
I've also compiled a list of nationalities
class Thumb extends Backbone.Model | |
defaults: | |
uri: '' | |
state: '' | |
select: (state) -> | |
st = '' | |
st = 'selected' if state | |
@set('state' : st) |
#! /bin/sh | |
# ------------------------------------------------------------------------------ | |
# SOME INFOS : fairly standard (debian) init script. | |
# Note that node doesn't create a PID file (hence --make-pidfile) | |
# has to be run in the background (hence --background) | |
# and NOT as root (hence --chuid) | |
# | |
# MORE INFOS : INIT SCRIPT http://www.debian.org/doc/debian-policy/ch-opersys.html#s-sysvinit | |
# INIT-INFO RULES http://wiki.debian.org/LSBInitScripts | |
# INSTALL/REMOVE http://www.debian-administration.org/articles/28 |
/* | |
Simple feedparser | |
Based upon: | |
- https://raw.github.com/drudge/node-easyrss | |
*/ | |
var sax = require('./libs/sax'); | |
module.exports.streamParser = function(){ |