- [http://requestb.in/](Request Bin) - AKA Postb.in, the original-ish
- [http://bin.mailgun.net](Mailgun's request bin)
- https://www.runscope.com - commercial tool
- http://respondto.it/ - allows mocking of responses
- http://webhookapp.com/ - webhook receiver
- http://httpbin.org/ - Another Runscope util; endpoint/receiver more general HTTP client debugging
This file contains 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
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() { |
Magic words:
psql -U postgres
Some 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)
From a terminal run the following commands:
git clone [email protected]:emberjs/ember.js
cd ember.js
npm install
npm start
While that is running open another terminal and run the following (starting from the ember.js
folder you cloned a moment ago):
This file contains 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
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 |