teamName | firstName | lastName | ageGroupShort | nettoTime | rankMale | startNo | combined | rankTotal | rankFemale | hash | rankAgeGroup |
---|---|---|---|---|---|---|---|---|---|---|---|
Brooks Road Runners/TSVE 1890 Bielefeld | Florian | Bochert | MH | 01:46:46 | 1 | 894 | 0_0_1 | 1 | mlJq3r_hmbmM6nxWz30rRjkq9mBjwvpfsUfXWsJmJd8 | 1 | |
TuS Eintracht Bielefeld | Elias | Sansar | M45 | 01:47:26 | 2 | 855 | 0_0_2 | 2 | f4nxvr-F6meCfC_2mqNdkcJi89N6o4a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with builtins; | |
let | |
div = x: y: if y / x * x == y then true else false; | |
divany = L: x: | |
if (length L) == 0 then | |
false | |
else if (div (head L) x) then | |
true | |
else | |
(divany (tail L) x); |
- Keyboard: CAPS=CTRL, Swap CMD / OPTION
- Mouse: Naural Scroll
- Install https://iterm2.com/
- Install Firefox: https://www.mozilla.org/
- Install Bitwarden
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
SYNOPSIS | |
gh-issue-fetch [-R <repository url>] [-d <output directory>] | |
DESCRIPTION | |
Fetch all issues from a GH repository into local text files. | |
By default issues are placed in ./issues/*, this can be | |
changed by using the -d flag. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
main: main.c lib.asm | |
nasm -f elf64 -o lib.o lib.asm | |
gcc -o main main.c lib.o | |
run: main | |
./main |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
import vobject | |
df = pd.read_csv("contacts.csv", index_col="Id") | |
for row in df.iterrows(): | |
rec = row[1].to_dict() | |
for k,v in rec.items(): | |
if v == "-": | |
rec[k] = None |
I hereby claim:
- I am heinrichhartmann on github.
- I am hartmann (https://keybase.io/hartmann) on keybase.
- I have a public key ASADQm4Cys6zXNQQjsHsuEk7xwjRTWF7VSrdUI2kRjrcuQo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# This is a Python wrapper for the Snowth/IRONdb API I wrote | |
# for personal use in 2014. Use at your own risk. | |
# | |
import logging | |
log = logging.getLogger() | |
if __name__ == "__main__": log.setLevel(logging.DEBUG) | |
else: log.setLevel(logging.WARN) | |
import requests |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun ignite-start () | |
"Auto advaince slides" | |
(interactive) | |
(set 'ignite-interval 15) | |
(set 'ignite-t ignite-interval) | |
(message (format "Go! (%d sec)" ignite-interval)) | |
(run-at-time 0 1 (lambda () | |
(if (<= ignite-t 0) | |
(progn | |
(doc-view-next-page) |
NewerOlder