Gist for https://youtu.be/admAfAYoVRo
| #!/usr/bin/python3 | |
| import asyncio | |
| import time | |
| import socket | |
| import argparse | |
| import aiohttp | |
| class MyConnector(aiohttp.TCPConnector): |
| package main | |
| // Windows pty example | |
| // https://devblogs.microsoft.com/commandline/windows-command-line-introducing-the-windows-pseudo-console-conpty/ | |
| import ( | |
| "io" | |
| "os" | |
| "fmt" | |
| "log" |
| pacman -S --needed git base-devel | |
| git clone https://aur.archlinux.org/yay.git | |
| cd yay | |
| makepkg -si | |
| yay -S flutter | |
| java -version | |
| sudo pacman -S jre8-openjdk |
| #!/usr/bin/env bash | |
| # Download metadata, modify these as your needs. | |
| ## The directory to save the downloaded files. | |
| download_directory="/volume1/Download/EPUB" | |
| ## The website you want to visit. | |
| calibre_site="http://soulseeker.myds.me:25788" | |
| ## The formats you want to download. We only download the first present format. | |
| ## All the formats should be upper case. | |
| allow_formats=( EPUB MOBI AZW3 ) |
Gist for https://youtu.be/admAfAYoVRo
| #include <assert.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <stdint.h> | |
| #include <stdio.h> | |
| #define N (100000063/64) | |
| struct bitset { | |
| uint64_t bits[N]; |