This file contains 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
{"did":"did:plc:ragtjsm2j2vknwkz3zp4oxrd","operation":{"sig":"DyaPWDItkJnVkN1izINSW-fdjUzP9BkIKlD7SnzD5axfK_870ZZ-1EYcrQLQtP9VkWcp2cdbyIHprjPfeUs8WQ","prev":null,"type":"create","handle":"paul.bsky.social","service":"https://bsky.social","signingKey":"did:key:zQ3shP5TBe1sQfSttXty15FAEHV1DZgcxRZNxvEWnPfLFwLxJ","recoveryKey":"did:key:zQ3shhCGUqDKjStzuDxPkTxN6ujddP4RkEKJJouJGRRkaLGbg"},"cid":"bafyreieibu2mtgsovktnswo6l7dv4i4ztioutzpsy7wsasmbznzqxkpyje","nullified":false,"createdAt":"2022-11-17T00:35:16.391Z"} | |
{"did":"did:plc:l3rouwludahu3ui3bt66mfvj","operation":{"sig":"HIAolK_uyrcg8a6CqBT_taoF0AJ6HAwy70hutFGVM54j20rTe90MH---pm6aoe5CsiIm6khqgbr5_Aj7F3rptA","prev":null,"type":"create","handle":"divy.bsky.social","service":"https://bsky.social","signingKey":"did:key:zQ3shP5TBe1sQfSttXty15FAEHV1DZgcxRZNxvEWnPfLFwLxJ","recoveryKey":"did:key:zQ3shhCGUqDKjStzuDxPkTxN6ujddP4RkEKJJouJGRRkaLGbg"},"cid":"bafyreic64lvfs5ayb5g5cgym7xtbnkpcr6g42reni7n3c7r7i547w7wfoa","nullified":false,"createdAt":"2022-11-17T00:39:19.084Z"} |
This file contains 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
javascript:(function(){ | |
var currentUrl = window.location.href; | |
var newUrl = currentUrl | |
.replace('https://bsky.app/profile/', 'https://astrolabe.edavis.dev/at/') | |
.replace('/post/', '/app.bsky.feed.post/'); | |
window.open(newUrl, '_blank'); | |
})(); |
This file contains 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
22zzzzzzzzz22 1971-02-12T05:26:12.088Z | |
23zzzzzzzzz22 1972-03-25T10:52:24.177Z | |
24zzzzzzzzz22 1973-05-06T16:18:36.266Z | |
25zzzzzzzzz22 1974-06-17T21:44:48.355Z | |
26zzzzzzzzz22 1975-07-30T03:11:00.444Z | |
27zzzzzzzzz22 1976-09-09T08:37:12.532Z | |
2azzzzzzzzz22 1977-10-21T14:03:24.621Z | |
2bzzzzzzzzz22 1978-12-02T19:29:36.710Z | |
2czzzzzzzzz22 1980-01-14T00:55:48.799Z | |
2dzzzzzzzzz22 1981-02-24T06:22:00.888Z |
This file contains 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
3222222222222 2005-09-05T05:58:26.842Z | |
3322222222222 2006-10-17T11:24:38.931Z | |
3422222222222 2007-11-28T16:50:51.020Z | |
3522222222222 2009-01-08T22:17:03.109Z | |
3622222222222 2010-02-20T03:43:15.197Z | |
3722222222222 2011-04-03T09:09:27.286Z | |
3a22222222222 2012-05-14T14:35:39.375Z | |
3b22222222222 2013-06-25T20:01:51.464Z | |
3c22222222222 2014-08-07T01:28:03.553Z | |
3d22222222222 2015-09-18T06:54:15.642Z |
This file contains 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
#!/bin/bash | |
INTERFACE="eth0" | |
case $1 in | |
config) | |
echo "graph_title $INTERFACE rx traffic" | |
echo 'graph_args --base 1000' | |
echo 'graph_category network' | |
echo 'traffic.label rx' |
This file contains 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 | |
import os, glob | |
from io import BytesIO | |
class End(Exception): pass | |
def decode(stream): | |
delim = stream.read(1) |
This file contains 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 io | |
import base64 | |
import struct | |
import hashlib | |
import asyncio | |
import websockets | |
from enum import Enum | |
# ground control to major type |
This file contains 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
# The MIT License | |
# SPDX short identifier: MIT | |
# Further resources on the MIT License | |
# Copyright 2017 Denis Gladkikh (https://www.outcoldman.com/en/archive/2017/07/19/dbhist/) | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
This file contains 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 | |
import csv | |
from itertools import groupby | |
from collections import Counter | |
reader = csv.DictReader(open('MLB.CWEVENTS')) | |
writer = csv.writer(open('sequences.csv', 'wb')) | |
it = groupby(reader, key=lambda row: row['GAME_ID']) |
NewerOlder