Terminator, ZSH (+ .zshrc) + Oh My Zsh + Powerlevel9k + plugins, Rust, FNM + VSCode (+ext) and Nerd Font
To setup Linux for WSL2, see this gist
Terminator, ZSH (+ .zshrc) + Oh My Zsh + Powerlevel9k + plugins, Rust, FNM + VSCode (+ext) and Nerd Font
To setup Linux for WSL2, see this gist
Windows Subsystem 2 for Linux, Hyper, ZSH + Oh My Zsh + Powerlevel9k + plugins, FNM + VSCode (+ext) and Nerd Font
To setup native Linux, see this gist
| # Basic tracking list by leodutra | |
| # License: MIT | |
| # Contact: leodutra.br [at] gmail.com | |
| www.serveradx.com |
| # AS ADMIN | |
| Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux | |
| Enable-WindowsOptionalFeature -Online -FeatureName VirtualMachinePlatform | |
| # Use this command to convert a distro to use the WSL 2 architecture or use the WSL 1 architecture. | |
| # <Distro>: the specific Linux distro (e.g. “Ubuntu”) | |
| # <Version>: 1 or 2 (for WSL 1 or 2) | |
| # wsl --set-version <Distro> <Version> | |
| # Changes the default install version (WSL 1 or 2) for new distributions. |
| cd\Program Files\Microsoft Office\Office16 | |
| cd\Program Files (x86)\Microsoft Office\Office16 | |
| cscript OSPP.VBS /sethst:kms.digiboy.ir | |
| cscript OSPP.VBS /actcscript OSPP.VBS /dstatus | |
| slmgr.vbs /ckms |
| function bufferFromDataURI(dataURI) { | |
| const [, mimeType, encoding, data] = dataURI.match( | |
| /^data:((?:[^,](?!,|;base64))*[^,])?(?:;(base64))?,(.+)/im | |
| ) | |
| return { | |
| mimeType: mimeType, | |
| data: encoding | |
| ? Buffer.from(data, encoding) | |
| : data | |
| } |
Today (April 16th 2019 at noon) the first major clues to discover key #1 was set to be released in a few cities. A QR code with the words 'orbital' were found at these locations and looked like this: (https://imgur.com/a/6rNmz7T). If you read the QR code with your phone you will be directed to this url: https://satoshistreasure.xyz/k1
At this URL you are prompted to input a passphrase to decrypt the first shard. An obvious first guess was to try the word 'orbital' from the QR code. Not suprisingly this worked! This reveals a congratulations page and presents the first key shard:
ST-0001-a36e904f9431ff6b18079881a20af2b3403b86b4a6bace5f3a6a47e945b95cce937c415bedaad6c86bb86b59f0b1d137442537a8.
Now, we were supposed to wait until April 17th to get clues from the other cities for keys #2 and #3 but that wouldn't stop me from digging around with all the new information we had. All that time "playing" notpron (http://notpron.org/notpron/) years ago was going to help me here.
The first thing I noticed was
| const puppeteer = require('puppeteer') | |
| // Related Issues: | |
| // 3118 - https://github.com/GoogleChrome/puppeteer/issues/3118#issuecomment-417754246 | |
| async function main() { | |
| const browser = await puppeteer.launch({ | |
| args: ['--start-maximized'], | |
| headless: false, | |
| defaultViewport: null |
| [Unit] | |
| Description=noip2 service | |
| [Service] | |
| Type=forking | |
| ExecStart=/usr/local/bin/noip2 | |
| Restart=always | |
| [Install] | |
| WantedBy=default.target |
| call code --install-extension alefragnani.bookmarks | |
| call code --install-extension amandeepmittal.pug | |
| call code --install-extension amazonwebservices.aws-toolkit-vscode | |
| call code --install-extension angular.ng-template | |
| call code --install-extension bierner.markdown-preview-github-styles | |
| call code --install-extension coenraads.bracket-pair-colorizer-2 | |
| call code --install-extension cweijan.vscode-office | |
| call code --install-extension DavidAnson.vscode-markdownlint | |
| call code --install-extension dbaeumer.vscode-eslint | |
| call code --install-extension eamodio.gitlens |