From a terminal run the following commands:
git clone git@github.com:emberjs/ember.js
cd ember.js
npm install
npm startWhile that is running open another terminal and run the following (starting from the ember.js folder you cloned a moment ago):
| on alfred_script(q) | |
| set ticketId to q | |
| set serverURI to "https://procurios.zendesk.com" | |
| set browserURL to "/tickets/" & ticketId | |
| set found to false | |
| tell application "Google Chrome Canary" | |
| if (count every window) > 0 then | |
| repeat with theWindow in every window | |
| set theTabIndex to 0 |
From a terminal run the following commands:
git clone git@github.com:emberjs/ember.js
cd ember.js
npm install
npm startWhile that is running open another terminal and run the following (starting from the ember.js folder you cloned a moment ago):
Magic words:
psql -U postgresSome interesting flags (to see all, use -h or --help depending on your psql version):
-E: will describe the underlaying queries of the \ commands (cool for learning!)-l: psql will list all databases and then exit (useful if the user you connect with doesn't has a default database, like at AWS RDS)| import ifConditionHelper from 'myapp/helpers/if-condition'; | |
| /** | |
| * Logical AND Existence Conditional Block | |
| * | |
| * Usage: {{#if-all-exists field1 field2}}Either field1 or field2 is truthy{{/if-all-exists}} | |
| * | |
| * Executes the given block if all arguments are defined | |
| */ | |
| export default function() { |