View all-trackers-ips-location
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
Netherlands 93.158.213.92 udp://tracker.opentrackr.org:1337/announce | |
Netherlands 93.158.213.92 http://tracker.opentrackr.org:1337/announce | |
France Roubaix 151.80.120.115 udp://9.rarbg.com:2810/announce | |
France Roubaix 151.80.120.112 udp://9.rarbg.com:2810/announce | |
France Roubaix 151.80.120.114 udp://9.rarbg.com:2810/announce | |
France Roubaix 151.80.120.113 udp://9.rarbg.com:2810/announce | |
United Kingdom 45.154.253.5 udp://tracker.openbittorrent.com:6969/announce | |
United Kingdom 45.154.253.6 udp://tracker.openbittorrent.com:6969/announce | |
United Kingdom 45.154.253.4 udp://tracker.openbittorrent.com:6969/announce | |
United Kingdom 45.154.253.7 udp://tracker.openbittorrent.com:6969/announce |
View fuck.sh
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
fly ssh console -a <postgres app> | |
export $(cat /data/.env | xargs) | |
stolonctl removekeeper <keeper id> |
View gist:6e0e24d7d600ef834970c1d5230d23aa
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
anacrolix@anacrolix-mbp-2018:~/src/replica-haskell$ cabal v2-repl | |
Resolving dependencies... | |
cabal: Could not resolve dependencies: | |
[__0] trying: replica-haskell-0.1.0.0 (user goal) | |
[__1] next goal: base (dependency of replica-haskell) | |
[__1] rejecting: base-4.14.1.0/installed-4.14.1.0, base-4.15.0.0, | |
base-4.14.1.0, base-4.14.0.0 (constraint from project config TODO requires | |
==4.13.0.0) | |
[__1] rejecting: base-4.13.0.0 (constraint from non-upgradeable package | |
requires installed instance) |
View gist:fa0768126ac3535787b307c124f626d2
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
async def sendto(self, bytes, addr): | |
try: | |
await self.socket.sendto( | |
bytes, addr, | |
) | |
finally: | |
exc_value = sys.exc_info()[1] | |
if exc_value is not None: | |
exc_value = str(exc_value) | |
with self.db_conn: |
View main.pony
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
use "net" | |
use "logger" | |
use "time" | |
actor Main | |
new create(env: Env) => | |
let auth = | |
try |
View main.pony
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
use "net" | |
actor Main | |
new create(env: Env) => | |
let auth = | |
try | |
env.root as AmbientAuth | |
else | |
env.err.print("couldn't get auth") |
View main.pony
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
use "net" | |
actor Main | |
new create(env: Env) => | |
let auth = | |
try | |
env.root as AmbientAuth | |
else | |
env.err.print("couldn't get auth") |
View main.pony
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
use "net" | |
use "logger" | |
use "time" | |
actor Main | |
new create(env: Env) => | |
let auth = | |
try |
View main.pony
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
actor Main | |
new create(env: Env) => | |
let chain = DivisibleFilter(2, Printer(env), env) | |
let g = Generator(1_000_000, chain) | |
actor Generator | |
var _i: I = 2 | |
let _max: I | |
let _next: Next | |
new create(max: I, next: Next) => |
View main.pony
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
actor Main | |
new create(env: Env) => | |
let chain = DivisibleFilter(2, Printer(env), env) | |
let g = Generator(100000000, chain) | |
actor Generator | |
new create(max: I, next: Next tag) => | |
var i: I = 2 | |
while i <= max do | |
next.apply(i) |
NewerOlder