Skip to content

Instantly share code, notes, and snippets.

ID Country code Municipality Subsidy (EUR) Selected or reserve
17640 AT Altenberg bei Linz 15000 selected
1897 AT Assling 15000 selected
24828 AT Bad Deutsch-Altenburg 15000 selected
23275 AT Bad Radkersburg 15000 selected
2044 AT Bad Tatzmannsdorf 15000 selected
11890 AT Baumgarten 15000 reserve
20626 AT Blons 15000 selected
19780 AT Dalaas 15000 selected
7327 AT Dellach 15000 selected
echo "options usb-storage quirks=0bc2:331a:o" | tee -a /etc/modprobe.d/blacklist_uas_seagate.conf
@zajdee
zajdee / java_tool_options.startup.plist
Created October 22, 2019 11:48
MacOS X 10.10+ .plist to make Java work in an IPv6-only+NAT64/DNS64 environment
<?xml version="1.0" encoding="UTF-8"?>
<!-- Save the contents of this file as ~/Library/LaunchAgents/java_tool_options.startup.plist -->
<!-- Log off and on afterwards, wait until the plist is loaded. Run a program, get its pid and -->
<!-- check using `ps eww -o command <pid> | tr ' ' '\n' | grep -i java` that the system-wide environment variable is set -->
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>java_tool_options.startup</string>
<key>ProgramArguments</key>
<plist version="1.0">
<dict>
<key>ConsentText</key>
<dict>
<key>default</key>
<string>Installs APN YOURAPNNAME IPv6</string>
</dict>
<key>PayloadContent</key>
<array>
<dict>
<plist version="1.0">
<dict>
<key>ConsentText</key>
<dict>
<key>default</key>
<string>Installs APN YOURAPNNAME IPv4v6</string>
</dict>
<key>PayloadContent</key>
<array>
<dict>
#!/usr/bin/env python3
from ipaddress import ip_network
with open('address.list', 'r') as f:
for line in f.readlines():
address = line.strip()
print(ip_network('{}/64'.format(address), strict=False).exploded)
print(ip_network('{}/48'.format(address), strict=False))
print(ip_network('{}/32'.format(address), strict=False))
@zajdee
zajdee / ripe-ncc-educa-QA
Created June 8, 2020 11:55
The answers to questions that popped up as part of my talk on RIPE NCC::Educa 2020
> --------------------------
> Open Questions (8)
> --------------------------
> 1. Colin: Any idea of plan or roadmap for when other browers will support HE V2?
> 2. Colin: browsers :-)
We have to request it from browser vendors and explain the benefits so that they want to implement it. As far as I know, v2 is not on any browser vendor's roadmap.
> 3. Christian Bretterhofer: can we persuade to get a browser plugin to switch from happy eyballs to ipv6 only and back?
Not sure why would anyone want to do that; additionally the browser plugins have become less powerful over time - I'm not a plugin developer, but from what I know I assume it's not possible for a plugin to override DNS or the connection attempts of the browser.
> 4. david yasler 2: who is monitoring "happy Eye Balls" and do you need the addressing space or will it self discover
> 5. david yasler 2: dial up
@zajdee
zajdee / measurement.anonymized.json
Created August 27, 2020 21:39
Vodafone gigabit service measurements
This file has been truncated, but you can view the full file.
{"type":"result","timestamp":"2020-08-21T13:37:33Z","ping":{"jitter":2.1499999999999999,"latency":7.242},"download":{"bandwidth":117071302,"bytes":965061797,"elapsed":8303},"upload":{"bandwidth":6064735,"bytes":30346624,"elapsed":5005},"packetLoss":0,"isp":"UPC Ceska Republika","interface":{"internalIp":"192.168.9.2","name":"arris","macAddr":"12:34:56:78:9A:BC","isVpn":false,"externalIp":"86.49.251.1"},"server":{"id":30620,"name":"O2 Czech Republic, a.s.","location":"Prague","country":"Czech Republic","host":"ookla.o2.cz","port":8080,"ip":"90.181.131.114"},"result":{"id":"59198934-add0-4034-b39f-f289822e9d44","url":"https://www.speedtest.net/result/c/59198934-add0-4034-b39f-f289822e9d44"}}
{"type":"result","timestamp":"2020-08-21T13:37:46Z","ping":{"jitter":1.2430000000000001,"latency":7.032},"download":{"bandwidth":116953484,"bytes":941622528,"elapsed":8103},"upload":{"bandwidth":6072290,"bytes":24331648,"elapsed":4001},"packetLoss":0,"isp":"UPC Ceska Republika","interface":{"internalIp":"192.168.9.2","name"
@zajdee
zajdee / O2-Internet-iPhone-IPv4v6.mobileconfig
Created September 28, 2020 21:27
APN config for dual-stack (IPv4v6) APN "internet" for O2 Czech Republic
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>ConsentText</key>
<dict>
<key>default</key>
<string>Installs APN internet IPv4v6</string>
</dict>
<key>PayloadContent</key>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>ConsentText</key>
<dict>
<key>default</key>
<string>Installs APN internet IPv4v6</string>
</dict>
<key>PayloadContent</key>