Keplr wallet setup:
- Chose: Connect Hardware Wallet
- Chose: Connect Ledger
- Chose: Connect to: Cosmos app (Recommended)
- Launched Cosmos app on Ledger
- Chose: Next
- Chains: left default (all 47, which includes THORChain and Cosmos)
- Chains: chose Skip
| Below is a transcription of the Pacos Pete cassette liner notes. The "???" | |
| sections are due the source image being partially obscured: | |
| https://imgur.com/a/7AJYs2a | |
| An alternate manual/instruction book is available as part of the | |
| "Mastertronic 2-On-One Pecos Pete and Pipeline 2" diskette and can be found | |
| here: | |
| https://c64.remotecpu.com/c64/reference/manuals/game-manuals/games-multi/Mastertronic%202-On-One%20Pecos%20Pete%20And%20Pipeline%202%20Instruction%20Booklet.pdf |
https://videogamegeek.com/videogame/246794/loremaster
There are 3 main data files used by the game:
EXE\LM1_DB.001DAT\LM1_DB.002DAT\LM1_DB.003| #!/usr/bin/env python2.7 | |
| def test(x=[]): | |
| x.append(2) | |
| return x | |
| print (test()) # returns [2] | |
| print (test()) # returns [2, 2] | |
| print (test()) # returns [2, 2, 2] |
| #!/usr/bin/env perl | |
| use strict; | |
| use warnings; | |
| # %child key = parent PID, value = array of child PIDs | |
| use vars qw(%child $pid $parent); | |
| open(FH, "ps -axe -o pid,ppid,comm |") or die; | |
| while(<FH>) { | |
| s/^\s+//g; # Remove any spaces at the beginning of the line |
| diff --git a/release/src-rt-6.x.4708/router/Makefile b/release/src-rt-6.x.4708/router/Makefile | |
| index e97164e7f..b76ef17cf 100644 | |
| --- a/release/src-rt-6.x.4708/router/Makefile | |
| +++ b/release/src-rt-6.x.4708/router/Makefile | |
| @@ -18,23 +18,6 @@ include common.mak | |
| export PARALLEL_BUILD := -j`grep -c '^processor' /proc/cpuinfo` | |
| -define patch_files | |
| - find patches/$(1) -maxdepth 1 -type f -name '*.patch' | sort -t '\0' -n | while read FILE; do \ |