Skip to content

Instantly share code, notes, and snippets.

@yaniv-aknin
yaniv-aknin / server.py
Created October 16, 2022 13:40
Simple multi-client server for my nephew
#!/usr/bin/env python3
import argparse
import select
import socket
def parse_options():
parser = argparse.ArgumentParser()
parser.add_argument('-p', '--port', type=int, required=True)
options = parser.parse_args()
from google.cloud import bigquery
c = bigquery.Client()
job_config = bigquery.LoadJobConfig(
source_format=bigquery.SourceFormat.NEWLINE_DELIMITED_JSON,
write_disposition='WRITE_APPEND')
job = c.load_table_from_json([{'id': '7', 'value': 'qux'}], 'test_dataset.test_table', job_config=job_config)
print(job.result())
@yaniv-aknin
yaniv-aknin / README.md
Last active April 28, 2021 08:38
Visual overview of fafalytics
@yaniv-aknin
yaniv-aknin / README.md
Last active April 24, 2021 21:41
Quick tour of FAF (Forged Alliance Forever) historic game data, in the database and the replay files
@yaniv-aknin
yaniv-aknin / process.py
Created June 26, 2016 10:07
Process UK Land Registry data
#!/usr/local/opt/playground/bin/python
"""
Helper tool to process the UK Land Registry data
https://www.gov.uk/government/publications/land-registry-data/public-data
"""
import numpy
import functools
import multiprocessing
@yaniv-aknin
yaniv-aknin / gist:7d285f9b1dc2fb91e013
Last active August 29, 2015 14:21
Some thoughts on communications

I posted this internally at Google, someone asked me to post it externally. To be frank, I almost didn't write it because it seemed so obvious. But isn't that the point? What's obvious to you might not be to others. So I'm happy to oblige.

Maybe this is obvious, maybe this is so generic that it's useless, but I feel it has to be written somewhere.

The time you spend on communicating something (writing a doc, an email, a bug, a comment, ...) should be proportional to the "distance" of the person receiving the message.

Distance varies on three axes I can think of:

  • Physical: This one is obvious, but requires some explanation. If someone is far away from you, your bandwidth is hugely limited already. You speak to them less often, they don't get your body language, they don't get your tone, they don't get you. Make things easy for them.
  • Subject matter: The less someone knows about (your project, this topic, your likely state of mind), the more you should explain. Good communication is a lot about empat
@yaniv-aknin
yaniv-aknin / keybase.md
Created January 20, 2015 16:40
keybase.md

Keybase proof

I hereby claim:

  • I am yaniv-aknin on github.
  • I am yanivaknin (https://keybase.io/yanivaknin) on keybase.
  • I have a public key whose fingerprint is 0793 D8DB D227 5338 920F 5D1A 40D0 78BF 34E4 2A6E

To claim this, I am signing this object:

11 Sep, email from Parallels: Upgrade Notification: Top reasons to upgrade to the new Parallels Desktop 9 for Mac!

19 Sep, email from Parallels: Urgent Service Notification for Parallels Desktop 7 for Mac Users

19 Sep, tweet from me: "Urgent Service Notification for Parallels Desktop 7 for Mac Users". @ParallelsMac, your marketing is disgustingly aggressive. Stop.

19 Sep, tweet from me: @ParallelsMac If my previous message wasn't clear: I doubt I will ever choose to give you money again, ever, just because of your marketing.

19 Sep, tweet from Parallels: @aknin Message received. We want to make sure all our customers are aware, so there are no surprises if they move to Mavericks.

@yaniv-aknin
yaniv-aknin / app_name.py
Last active December 15, 2015 13:39
This code snippet works fine on my development box (OSX 10.7.5, postgres 9.1.4, Postgres.App 1.0 (11), libpq 0.5.4), works fine from my development box against my Heroku shared database, but breaks with an `(OperationalError) invalid connection option "application_name"` when ran on Heroku. Any explanations?
from os import environ
from sqlalchemy import create_engine
e = create_engine(environ['DATABASE_URL'],
connect_args={"application_name": "foo"})
e.connect()
@yaniv-aknin
yaniv-aknin / Procfile
Created February 26, 2013 11:10
compileror: a file compilation service
web: ./compileror $PORT