This file contains hidden or 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
| (function(window){ | |
| "use strict"; | |
| // type 'thankyou' on your keyboard | |
| var key = [84,72,65,78,75,89,79,85]; | |
| var ck = 0; | |
| var max = key.length; | |
| var airguitar = function() { | |
| var shock = document.createElement('div'); | |
| var img = new Image; |
This file contains hidden or 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
| /* Vietnamese localization for the jQuery UI date picker plugin. */ | |
| /* Written by Tien Do ([email protected]) */ | |
| jQuery(function ($) | |
| { | |
| $.datepicker.regional["vi-VN"] = | |
| { | |
| closeText: "Đóng", | |
| prevText: "Trước", | |
| nextText: "Sau", |
This file contains hidden or 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
| var questions = [ | |
| { | |
| type: 'confirm', | |
| name: 'toBeDelivered', | |
| message: 'Is this for delivery?', | |
| default: false | |
| }, | |
| { | |
| type: 'input', | |
| name: 'phone', |
This file contains hidden or 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
| { | |
| "emojis": [ | |
| {"emoji": "👩👩👧👧", "name": "family_mothers_two_girls", "shortname": "", "unicode": "", "html": "👩‍👩‍👧‍👧", "category": "p", "order": ""}, | |
| {"emoji": "👩👩👧👦", "name": "family_mothers_children", "shortname": "", "unicode": "", "html": "👩‍👩‍👧‍👦", "category": "p", "order": ""}, | |
| {"emoji": "👩👩👦👦", "name": "family_mothers_two_boys", "shortname": "", "unicode": "", "html": "👩‍👩‍👦‍👦", "category": "p", "order": ""}, | |
| {"emoji": "👨👩👧👧", "name": "family_two_girls", "shortname": "", "unicode": "", "html": "👨‍👩‍👧‍👧", "category": "p", "order": ""}, | |
| {"emoji": "👨👩👧👦", "name": "family_children", "shortname": "", "unicode": "", "html": "👨‍👩‍👧‍👦", "category": "p", "order": ""}, | |
| {"emoji": "👨👩👦👦", "name": "family_two_biys", "shortname": "", "unicode": "", "html": "👨&zw |
This file contains hidden or 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
| 作者: houyating (橘色和風糰) 看板: N-E-W-S | |
| 標題: [分享] 買日本演唱會門票方法 | |
| 時間: Sat Oct 13 18:02:04 2007 | |
| 原文照例吃光光(最近糰財布扁到沒錢只好吃b板文維生!?) | |
| 以下內容全數轉載自改版前的J'P,前壇主caca的心得感想... | |
| 因為改版後該壇主似乎不知去處... |
This file contains hidden or 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
| # Cloning the boilerplate remote repo | |
| git clone -o [boilerplate name] [boilerplate remote repo] [new-project repo folder name] | |
| # Enter the cloned repo folder | |
| cd [new-project repo folder name] | |
| # Clean the README | |
| rm README.md && touch README.md | |
| # If you have LICENSE, you can clean it too. |
This file contains hidden or 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
| USAGE | |
| moro | |
| COMMANDS | |
| hi [start] example: "moro hi 09:45" registers your clock in at 09:45! | |
| bye [end] example: "moro bye 17:45" registers your clock out at 17:45 | |
| break <duration> example: 'moro break 45' Set the total amount of unpaid break for today to 45 minutes. 30 minutes is added by default for lunch. Use this command to enter the correct amount | |
| report See what you have done today!. Just like 'status' | |
| status See how long you have worked until now, same as report! | |
| clear |
This file contains hidden or 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
| Usage: organize [options] | |
| Options: | |
| -o, --output Output directory - Creates one if doesn't exist [string] | |
| -d, --date Organize files by dates [boolean] | |
| -s, --source Source directory to organize [string] [required] | |
| -t, --type Specific types to organize - strings of file extensions [array] | |
| -f, --folder Specific folder to move specific files to [string] | |
| -h, --help Show help [boolean] |
This file contains hidden or 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
| // Async/Await requirements: Latest Chrome/FF browser or Babel: https://babeljs.io/docs/plugins/transform-async-to-generator/ | |
| // Fetch requirements: Latest Chrome/FF browser or Github fetch polyfill: https://github.com/github/fetch | |
| // async function | |
| async function fetchAsync () { | |
| // await response of fetch call | |
| let response = await fetch('https://api.github.com'); | |
| // only proceed once promise is resolved | |
| let data = await response.json(); | |
| // only proceed once second promise is resolved |
This file contains hidden or 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
| Usage: | |
| $ licensed # Brings up an option to start a questionnaire or choose from a list of available licenses | |
| $ licensed <license-name> # Brings prompt to enter your name | |
| $ licensed <license-name> <your-full-name> [--year | -y] <year> | |
| $ licensed [--list | -l] | |
| Options: | |
| --year, -y <year> Manually enter year the license is in effect | |
| --list, -l List all available licenses | |
| --help Show this screen | |
| --version Show version |