A collection of information gathered from various resources into a single document to be able to program for Amstrad CPC 464/6128 machines.
CPC has the following components on the mainboard:
| # first, fetch the latest refs for all branches. And be sure we have latest master, etc | |
| git checkout master | |
| git fetch | |
| # If any changes from remote, catch our local version up | |
| git rebase origin/master | |
| # could also be done as |
A collection of information gathered from various resources into a single document to be able to program for Amstrad CPC 464/6128 machines.
CPC has the following components on the mainboard:
| # One liner | |
| wget --recursive --page-requisites --adjust-extension --span-hosts --convert-links --restrict-file-names=windows --domains yoursite.com --no-parent yoursite.com | |
| # Explained | |
| wget \ | |
| --recursive \ # Download the whole site. | |
| --page-requisites \ # Get all assets/elements (CSS/JS/images). | |
| --adjust-extension \ # Save files with .html on the end. | |
| --span-hosts \ # Include necessary assets from offsite as well. | |
| --convert-links \ # Update links to still work in the static version. |
| """ | |
| client.py - AsyncIO Server using StreamReader and StreamWriter | |
| This will create 200 client connections to a server running server.py | |
| It will handshake and run similar to this: | |
| Server: HELLO | |
| Client: WORLD |
The Transmission torrent client has an option to set a Blocklist, which helps protect you from getting caught and having the DMCA send a letter/email.
It's as simple as downloading and installing the latest client:
| import org.junit.jupiter.api.Assertions; | |
| import org.junit.jupiter.api.Test; | |
| import org.slf4j.Logger; | |
| import org.slf4j.LoggerFactory; | |
| import org.xbill.DNS.DClass; | |
| import org.xbill.DNS.ExtendedResolver; | |
| import org.xbill.DNS.Lookup; | |
| import org.xbill.DNS.Message; | |
| import org.xbill.DNS.Name; | |
| import org.xbill.DNS.Record; |
| #! Robot Framework | |
| *** Settings *** | |
| Metadata Version 0.1.0 | |
| Metadata Author *Tset Noitamotua* | |
| Metadata Created 2019.01.23 | |
| Documentation Demo - Data Driven Test with RF | |
| ... |
| ! urxvt | |
| URxvt*buffered: true | |
| URxvt*cursorBlink: true | |
| URxvt*underlineColor: yellow | |
| URxvt*font: xft:inconsolata:size=10:antialias=true | |
| URxvt*depth: 32 | |
| URxvt*borderless: 1 | |
| URxvt*scrollBar: false | |
| URxvt*loginShell: true | |
| Urxvt*secondaryScroll: true # Enable Shift-PageUp/Down in screen |
| #include <string> | |
| #include <iostream> | |
| int main() { | |
| using std::string; | |
| std::string umlauts_small = u8"äöü"; | |
| std::string umlauts_capital = u8"ÄÖÜ"; | |
| auto foo = umlauts_small + "|" + umlauts_capital; |
collecting links and documents about the topic
Object Systems (2004, as used in Thief 1998) http://chrishecker.com/images/6/6f/ObjSys.ppt