I hereby claim:
- I am icio on github.
- I am icio (https://keybase.io/icio) on keybase.
- I have a public key ASBBQCsu980HaJfo_B6E2_2q5i6miC4B7Ho28ym7fYx7kQo
To claim this, I am signing this object:
| function go-local-package() { | |
| go list ./... | head -1 | xargs dirname | |
| } | |
| function go-diff() { | |
| ROOT_PKG=$(go-local-package) | |
| go list -f '{{.Name}} {{.ImportPath}} {{.Deps}}' $(go list $ROOT_PKG/...) | \ | |
| grep ^main | \ | |
| grep -w -f <( | |
| git diff --dirstat ${2:-master}...${1:-HEAD} | \ |
I hereby claim:
To claim this, I am signing this object:
| // I take the tube in this morning to start collecting from data. | |
| Account{ | |
| SpendingToday:240, | |
| PendingPayments:[]main.Payment{ | |
| main.Payment{Origin:"Bethnal Green LU", Destination:"Liverpool Street LU", Cost:240} | |
| } | |
| } | |
| // Later, I get on at Liverpool street, and when checking immediately after | |
| // exiting Bank. Tfl have gotten this journey WRONG. Due to the absence of a |
| #!/usr/bin/env bash | |
| function run_scripts() { | |
| for script in $1/*; do | |
| # skip non-executable snippets | |
| [ -x "$script" ] || continue | |
| # execute $script in the context of the current shell | |
| . $script |
As you cruise along the vast expanses of Tatooine desert, your X-34 landspeeder begins to splutter and stutter, before drifting slowly to a halt. A brief scan of the horizon reveals few features you can aim for in search of rescue.
Miraculously, a troop of Jawas appear out of nowhere -- presumably masked by the heat waves engulfing all who dare make this journey. The Jawas, being the scavengers they are, can be identified by the clattering of their many belongings. You strike up a conversation with one of the shorter ones, who is willing to trade some supplies you can use to fix your vehicle in exchange for some help with their counting.
Each Jawa's cloak contains many pockets. Many of those pockets (which aren't nearly as wet as an Otter's) contain pockets themselves, which themselves may contain pockets, and so-forth. The Jawas need your help to determine how many items they own altogether.
The pockets are represented as an array of the number of items within the pocket, and pockets which contain other p
| """Imperative enter/exit control for python contextmanagers. | |
| Where you'd prefer to use `with`: | |
| with my_context(123) as f: | |
| do_something() | |
| but only have access to before and after hook-functions (as with Flask): | |
| def before_hook(): |
| <?php | |
| /* | |
| $ php ~/test.php | |
| Runs: 100,000 | |
| Benchmark Avg (s) Total (s) | |
| ---------- ---------- ---------- | |
| sum 0.000006 0.597605 | |
| merge 0.000007 0.713410 |
| {% set text = 'back & for"th' %} | |
| <script> | |
| console.log({ | |
| "str0": "{{ text }}", | |
| "str1": "{{ 'back & for"th' }}", | |
| "num1": {{ 123 }}, | |
| "str2": "{{ 'back & for"th' | e('html') }}", | |
| "num2": {{ 123 }}, |
| diff -r html/sites/all/libraries/recurly_v2/recurly/account.php vendor/recurly/recurly-client/lib/recurly/account.php | |
| 9c9,10 | |
| < function __construct($accountCode = null) { | |
| --- | |
| > function __construct($accountCode = null, $client = null) { | |
| > parent::__construct(null, $client); | |
| 11a13,15 | |
| > $this->address = new Recurly_Address(); | |
| > $this->balance_in_cents_invoiced = new Recurly_CurrencyList('balance_in_cents_invoiced'); | |
| > $this->balance_in_cents_uninvoiced = new Recurly_CurrencyList('balance_in_cents_uninvoiced'); |
| <!-- | |
| https://gist.github.com/nnnick/696cc9c55f4b0beb8fe9 | |
| --> | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset=utf-8 /> | |
| <title>Polytext</title> | |
| <style type="text/css"> | |
| .polytext { |