I hereby claim:
- I am davidvasandani on github.
- I am davidneudorfer (https://keybase.io/davidneudorfer) on keybase.
- I have a public key ASC7ALkyhOoafuwlFl4JnX-S6H4mw4yP2B1afIACvH_NTQo
To claim this, I am signing this object:
#! /usr/bin/env ruby | |
# Downloads "Payment Received" transactions from the EasyPayMetrocard | |
# website (www.easypaymetrocard.com"). | |
# | |
# Requires capybara and capybara-webkit for headless JavaScript execution - | |
# the EasyPayMetroCard site requires JavaScript to obtain account activity. | |
# | |
# To install capybara-webkit, you must first install Qt, a cross-platform | |
# development kit. For instructions, see |
#!/bin/sh | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# Set the colours you can use | |
black='\033[0;30m' | |
white='\033[0;37m' | |
red='\033[0;31m' |
-- show running queries (pre 9.2) | |
SELECT procpid, age(query_start, clock_timestamp()), usename, current_query | |
FROM pg_stat_activity | |
WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%' | |
ORDER BY query_start desc; | |
-- show running queries (9.2) | |
SELECT pid, age(query_start, clock_timestamp()), usename, query | |
FROM pg_stat_activity | |
WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%' |
I hereby claim:
To claim this, I am signing this object:
FROM python:2.7.12 | |
RUN apt-get update && \ | |
apt-get install --no-install-recommends -y \ | |
libgeos-dev | |
# ADD requirements.txt /opt/app/requirements.txt | |
ADD setup.py /opt/app/setup.py | |
ADD setup.cfg /opt/app/setup.cfg | |
ADD README.md /opt/app/README.md |
Learning How To Learn | |
Module 1 - What is Learning | |
Focused/Diffuse Modes Thinking | |
- Obviously ‘focused’ is when you’re concentrating. Direct approach to solving familiar problems. | |
- Focused: thoughts move through nicely-paved road of familiar notions (neural pattern looks very tight and directed). | |
- encompasses rational, sequential, analytical approaches to thinking | |
- Diffuse: More of a search function neural pattern. Thoughts move widely. More of a broad/big-picture perspective trying to connect ideas from different places. | |
- We’re always either in focused or diffuse mode of thinking. |
export SLACK_CLI_TOKEN='####' | |
alias dog_slack="/usr/bin/curl -s -X POST \ | |
https://slack.com/api/users.profile.set \ | |
--data-urlencode 'profile={\"status_text\":\"walking the dogs\", \"status_emoji\":\":dog2:\"}' \ | |
--data-urlencode 'token=$SLACK_CLI_TOKEN' | jq '.profile.status_text'" | |
alias lunch_slack="/usr/bin/curl -s -X POST \ | |
https://slack.com/api/users.profile.set \ | |
--data-urlencode 'profile={\"status_text\":\"getting lunch\", \"status_emoji\":\":taco:\"}' \ |
#!/bin/sh | |
# This pre-commit hook will prevent you from committing any line (or filename) containing | |
# the string NOCOMMIT. Use that tag in comments around source code you want to avoid | |
# accidentally committing, like temporary IP addresses or debug printfs. | |
# | |
# To add it to an existing repository, save it to .git/hooks/pre-commit (or append, if | |
# that file already exists). Remember to make executable (chmod +x ...) | |
# | |
# To automatically add this pre-commit hook to every repository you create or clone: |
resource "aws_db_event_subscription" "default" { | |
name = "rds-event-sub-${var.environment}" | |
sns_topic = "${aws_sns_topic.default.arn}" | |
source_type = "db-instance" | |
source_ids = ["${aws_db_instance.main_rds_instance.id}"] | |
event_categories = [ | |
"availability", | |
"deletion", |
{ | |
"config": { | |
"//": "any config values the api needs to provide i.e. scaling throttles or delays?" | |
}, | |
"services": [ | |
{ | |
"name": "api", | |
"scale": 10 | |
}, | |
{ |