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
param ( | |
# DockerHub image name passed as a parameter (required) | |
[Parameter(Mandatory=$true)][string]$dockerImage, | |
[string]$wslDistroName = ($dockerImage -replace ":[^:]+$", "").Replace("/", "_"), | |
[string]$arch = "amd64", | |
[switch]$Force | |
) | |
$ErrorActionPreference = 'Stop' |
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
{ | |
via3.DDRA = 1; | |
via3.DDRB = 0xff; // output | |
via3.PCR = 1; // CA1: Independent interrupt input-negative edge | |
via2.DDRA = 0; // input | |
via2.DDRB = 0xff; // output | |
via2.PCR = 0x88; // CA & CB: Handshake output, negative active edge | |
bool moreBits = true; |
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
#include <boost/beast.hpp> | |
#include <boost/asio.hpp> | |
namespace ip = boost::asio::ip; | |
namespace http = boost::beast::http; | |
int main() { | |
boost::asio::thread_pool ioc; | |
ip::tcp::acceptor acceptor{ioc, ip::tcp::endpoint{ip::address::from_string("127.0.0.1"), 9999}}; | |
while(true) { | |
ip::tcp::socket socket{ioc}; | |
acceptor.accept(socket); |
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
/// This is an automatic generated amalgamation of: | |
/// continuable version 4.0.0 (735697026b72a8f415d3443834cceeda9623780d) | |
/* | |
/~` _ _ _|_. _ _ |_ | _ | |
\_,(_)| | | || ||_|(_||_)|(/_ | |
https://github.com/Naios/continuable | |
v4.2.0 |
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
/// This is an automatic generated amalgamation of: | |
/// continuable version 4.0.0 (735697026b72a8f415d3443834cceeda9623780d) | |
/* | |
/~` _ _ _|_. _ _ |_ | _ | |
\_,(_)| | | || ||_|(_||_)|(/_ | |
https://github.com/Naios/continuable | |
v4.1.0 |
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
/// This is an automatic generated amalgamation of: | |
/// continuable version 4.0.0 (735697026b72a8f415d3443834cceeda9623780d) | |
/* | |
/~` _ _ _|_. _ _ |_ | _ | |
\_,(_)| | | || ||_|(_||_)|(/_ | |
https://github.com/Naios/continuable | |
v4.2.0 |
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
# the NAME of the WSL distro: `wsl.exe -l -v` | |
$distro = "centos7" | |
# the NAME of the Windows Network Interface: `powershell.exe Get-NetAdapter` | |
$iface = "LAN" | |
# static IP address for wsl interface | |
$address = "192.168.1.3/24" | |
$gateway = "192.168.1.1" |
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
iisreset /stop /timeout:0 | |
net stop w3svc /y | |
net stop http /y | |
net stop CertPropSvc /y | |
certutil -setreg chain\ChainCacheResyncFiletime @now | |
certutil -urlcache * delete | |
del /q /f /s /a:h C:\Windows\System32\config\systemprofile\AppData\LocalLow\Microsoft\CryptnetUrlCache\* |
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 strict"; | |
const STRETCH_2D = (1 / Math.sqrt(2 + 1) - 1) / 2; | |
const STRETCH_3D = (1 / Math.sqrt(3 + 1) - 1) / 3; | |
const STRETCH_4D = (1 / Math.sqrt(4 + 1) - 1) / 4; | |
const SQUISH_2D = (Math.sqrt(2 + 1) - 1) / 2; | |
const SQUISH_3D = (Math.sqrt(3 + 1) - 1) / 3; | |
const SQUISH_4D = (Math.sqrt(4 + 1) - 1) / 4; | |
const NORM_2D = 1 / 47; | |
const NORM_3D = 1 / 103; |
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
Welcome | |
Hello! By browsing the table of contents on your left, you can read the entire text of this book online for free, licensed under a Creative Commons Attribution-NonCommercial 3.0 Unported License. | |
Start reading the introduction now! | |
If you like this book, please consider supporting it via the links below: | |
NewerOlder