- By Edmond Lau
- Highly Recommended 👍
- http://www.theeffectiveengineer.com/
- They are the people who get things done. Effective Engineers produce results.
| <template> | |
| <Page class="page"> | |
| <ActionBar class="action-bar" | |
| flat="true" | |
| title="Home"> | |
| <android> | |
| <NavigationButton | |
| icon="res://ic_menu_black_24dp" | |
| @tap="showSideMenu" | |
| text="Menu"></NavigationButton> |
| [ | |
| {name: 'Afghanistan', code: 'AF'}, | |
| {name: 'Åland Islands', code: 'AX'}, | |
| {name: 'Albania', code: 'AL'}, | |
| {name: 'Algeria', code: 'DZ'}, | |
| {name: 'American Samoa', code: 'AS'}, | |
| {name: 'AndorrA', code: 'AD'}, | |
| {name: 'Angola', code: 'AO'}, | |
| {name: 'Anguilla', code: 'AI'}, | |
| {name: 'Antarctica', code: 'AQ'}, |
| #!/bin/sh | |
| # | |
| # | |
| # | |
| # To enable this hook, rename this file to "post-commit". | |
| echo "Running Post-Commit hook: Push immediately to master after commits" | |
| # Get current branch | |
| branch=$(git rev-parse --abbrev-ref HEAD) |
| function startOfWeek (weekStart) { | |
| var today = new Date(); | |
| var todayInWeek = today.getDay(); | |
| var todayDate = today.getDate(); | |
| var startOfWeekDate = (weekStart == "m") ? | |
| todayDate - (todayInWeek - 1) : todayDate - todayInWeek; | |
| var startOfWeek = new Date(); |
| var objA = { | |
| "a" : 1, | |
| "b" : 2 | |
| }, | |
| objB = { | |
| "a" : 3, | |
| "c" : 4 | |
| }; | |
| var updateObj = function (a, b) { |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |