Skip to content

Instantly share code, notes, and snippets.

@KaczuH
KaczuH / mp4gps.html
Created May 12, 2021 06:48 — forked from hiskang/mp4gps.html
Novatek MP4 GPS Player: a single file JavaScript implementation of Sergei's nvtk_mp42gpx.py + Google Maps
<html>
<head>
<title>Novatek mp4 GPS Player</title>
<style>
.thumb {
height: 75px;
border: 1px solid #000;
margin: 10px 5px 0 0;
}
#map {
@KaczuH
KaczuH / VC_200.csv
Last active November 22, 2018 17:31
Organization NumberofInvestments NumberofExits parent
Root 0 0
EASME - EU Executive Agency for SMEs 2600 52 Brussels Hoofdstedelijk Gewest
Y Combinator 1939 202 California
500 Startups 1727 171 California
Techstars 1619 142 Colorado
New Enterprise Associates 1485 299 California
MassChallenge 1374 44 Massachusetts
Intel Capital 1275 352 California
Accel 1230 261 California

Keybase proof

I hereby claim:

  • I am KaczuH on github.
  • I am kniski (https://keybase.io/kniski) on keybase.
  • I have a public key whose fingerprint is 3FBD DE55 1177 8075 005E FA32 59B7 2B1E 98FD EDD6

To claim this, I am signing this object:

@KaczuH
KaczuH / snippets.py
Last active August 29, 2015 14:19
Python snippets
# Various code snippets I encounter at work
# Building dictionary from two lists
# http://stackoverflow.com/questions/209840/map-two-lists-into-a-dictionary-in-python
keys = ['a', 'b', 'c']
values = [1, 2, 3]
dictionary = dict(zip(keys, values))
# Transpose list of lists
# http://stackoverflow.com/a/17037588