git diff --no-prefix > [path file name]
patch -p0 < [path file name]
| /* | |
| * object.watch polyfill | |
| * | |
| * 2012-04-03 | |
| * | |
| * By Eli Grey, http://eligrey.com | |
| * Public Domain. | |
| * NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. | |
| */ |
| Regex for matching ALL Japanese common & uncommon Kanji (4e00 โ 9fcf) ~ The Big Kahuna! | |
| ([ไธ-้พฏ]) | |
| Regex for matching Hirgana or Katakana | |
| ([ใ-ใใก-ใณ]) | |
| Regex for matching Non-Hirgana or Non-Katakana | |
| ([^ใ-ใใก-ใณ]) | |
| Regex for matching Hirgana or Katakana or basic punctuation (ใใโ) |
Prereq:
apt-get install zsh
apt-get install git-coreGetting zsh to work in ubuntu is weird, since sh does not understand the source command. So, you do this to install zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
| #!/usr/bin/env python | |
| import ConfigParser | |
| import os | |
| import time | |
| import getpass | |
| def get_dump(): | |
| print "Enter user:" | |
| user = raw_input() |
Create a Meteor app and put the client_/server_ files in a client/server directories. Also, create a public dir to save the uploaded files.
| <?xml version="1.0" encoding="utf-8"?> | |
| <root> | |
| <data name="Common_AuthenicationFailed" xml:space="preserve"> | |
| <value>Authentifikation fehlgeschlagen</value> | |
| </data> | |
| <!-- single line comment --> | |
| <data name="Common_Billable" xml:space="preserve"> | |
| <value>Verrechenbar</value> | |
| </data> | |
| <!-- multi |
| // define a grammar called Hello | |
| grammar Hello; | |
| r : 'hello' ID; | |
| ID : [a-z]+ ; | |
| WS : [ \t\r\n]+ -> skip ; |
People
:bowtie: |
๐ :smile: |
๐ :laughing: |
|---|---|---|
๐ :blush: |
๐ :smiley: |
:relaxed: |
๐ :smirk: |
๐ :heart_eyes: |
๐ :kissing_heart: |
๐ :kissing_closed_eyes: |
๐ณ :flushed: |
๐ :relieved: |
๐ :satisfied: |
๐ :grin: |
๐ :wink: |
๐ :stuck_out_tongue_winking_eye: |
๐ :stuck_out_tongue_closed_eyes: |
๐ :grinning: |
๐ :kissing: |
๐ :kissing_smiling_eyes: |
๐ :stuck_out_tongue: |
| /** | |
| * Module dependencies. | |
| */ | |
| var express = require('express'); | |
| var routes = require('./routes'); | |
| var user = require('./routes/user'); | |
| var http = require('http'); | |
| var path = require('path'); | |