I hereby claim:
- I am adamkal on github.
- I am adamkal (https://keybase.io/adamkal) on keybase.
- I have a public key ASCcE8Nxae1kdFcbzS1K3ekXsdZXop8x_ESkxyJh9d2XlAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| {"args": [[{"tracking": {"utm_campaign": "wereldspecial", "uuid": "5aa989c4-1d55-4607-b45d-79951ce148fa", "utm_content": "TB-20160517-TEST", "utm_source": "tb-admin-bulk-builder", "test_group": "Test", "test_name": "test"}, "modules": [{"type": "offers", "offer_ids": [104856, 89845, 105442, 105657, 103300, 98699, 104986, 91553]}, {"type": "categories", "category_ids": [854, 115, 39, 3936]}], "subscription_uuid": "5aa989c4-1d55-4607-b45d-79951ce148fa", "theme": "", "recipient": "[email protected]", "subject": "Special: De wereld rond met TravelBird!"}, {"tracking": {"utm_campaign": "wereldspecial", "uuid": "5aa989c4-1d55-4607-b45d-79951ce148fa", "utm_content": "TB-20160517-TEST", "utm_source": "tb-admin-bulk-builder", "test_group": "Test", "test_name": "test"}, "modules": [{"offer_ids": [104856, 89845, 105442, 105657, 103300, 98699, 104986, 91553], "type": "offers"}, {"type": "categories", "category_ids": [854, 115, 39, 3936]}], "subscription_uuid": "5aa989c4-1d55-4607-b45d-79951ce148fa", "theme": "", "recip |
| <feed> | |
| <mailing> | |
| <variables> | |
| <variable> | |
| <key>content</key> | |
| <value> | |
| <![CDATA[ | |
| Bekijk onze dagaanbiedingen, speciaal voor jou geselecteerd! |
| var d1 = new Date(0), | |
| d2 = new Date(0), | |
| d3 = new Date(5); | |
| d1 < d3 | |
| // true | |
| d3 < d2 | |
| // false |
| echo "Cleaning *.pyc (root: `pwd`)" | |
| find . -name "*.pyc" -exec rm '{}' ';' |
| from itertools import * | |
| def split_to_parts(arr, size): | |
| i = 0 | |
| for x in range(9): | |
| yield arr[x*size:x*size+3] | |
| cmp = [9, 158, 155, 57, 179, 183, 137, 191, 251] | |
| def parse_file(file_name): |
| outer = "outer" | |
| def function(): | |
| print outer |
| def forced_params(*params): | |
| def outer(fn): | |
| params = [fn.__name__] + params | |
| def inner(*args): | |
| args = params + args | |
| return fn(*args) | |
| return inner | |
| return outer | |
| @forced_params('lemon') |