Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | π :tada: |
Version tag | π :bookmark: |
New feature | β¨ :sparkles: |
Bugfix | π :bug: |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | π :tada: |
Version tag | π :bookmark: |
New feature | β¨ :sparkles: |
Bugfix | π :bug: |
NOTE: no x64 package is available (unless you want to install from source), so I installed the x86 version
Install mono MDK from:
http://www.mono-project.com/download/
I used 3.10.0, which corresponds to .NET 4.5
<?php | |
/** | |
* 1. create project at https://console.developers.google.com/project | |
* 2. enable 'Analytics API' under 'APIs & auth' / APIs | |
* 3. create 'NEW CLIENT ID' (OAuth client) under 'APIs & auth' / Credentials | |
* i. select 'Service account' | |
* ii. save generated key file to 'key.p12' | |
* iii. remember CLIENT ID | |
* 4. under GA account add 'Read & Analyze' access to newly generated email (access to GA Account not Property nor View) |
{url:'stun:stun01.sipphone.com'}, | |
{url:'stun:stun.ekiga.net'}, | |
{url:'stun:stun.fwdnet.net'}, | |
{url:'stun:stun.ideasip.com'}, | |
{url:'stun:stun.iptel.org'}, | |
{url:'stun:stun.rixtelecom.se'}, | |
{url:'stun:stun.schlund.de'}, | |
{url:'stun:stun.l.google.com:19302'}, | |
{url:'stun:stun1.l.google.com:19302'}, | |
{url:'stun:stun2.l.google.com:19302'}, |
SELECT description FROM pg_catalog.pg_description WHERE objsubid = | |
( | |
SELECT ordinal_position FROM information_schema.columns WHERE table_name='YOUR_TABLE_NAME' AND column_name='YOUR_COLUMN_NAME' | |
) | |
and objoid = | |
( | |
SELECT oid FROM pg_class WHERE relname = 'YOUR_TABLE_NAME' AND relnamespace = | |
( | |
SELECT oid FROM pg_catalog.pg_namespace WHERE nspname = 'public' | |
) |
WOW! WatchJS became so popular that I've been pushed to migrate it to GitHub
https://github.com/melanke/Watch.JS
Just kidding
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 (γγβ) |