- microsoft/WSL#10494 WSL 2.0: networkingMode=mirrored makes Docker unable to forward ports
Workaround: microsoft/WSL#10494 (comment)
Workaround: microsoft/WSL#10494 (comment)
For workspace like:
.
├── AandB.code-workspace
├── DirA
│ ├── A.py
│ └── venvA
| import json | |
| from typing import Any, List | |
| from httpx import Client | |
| class CardSquare: | |
| """ | |
| https://webstatic.mihoyo.com/ys/event/bbs-lineup-qskp/index.html#/pc/publish | |
| """ |
| #!/bin/bash | |
| set -e | |
| rm -rf slash | |
| mkdir slash | |
| pushd slash > /dev/null | |
| mkdir -p private/var | |
| pushd private/var > /dev/null |
| for dir in */; do | |
| if [ ! -d "${dir}.git" ]; then | |
| continue | |
| fi | |
| pushd ${dir} > /dev/null | |
| echo ${dir}$(git branch --show-current) | |
| git pull | |
| popd > /dev/null | |
| done |
| use rand::{rngs::ThreadRng, Rng}; | |
| const U5C_W: [i32; 90] = [ | |
| 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, | |
| 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, | |
| 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, | |
| 60, 660, 1260, 1860, 2460, 3060, 3660, 4260, 4860, 5460, 6060, 6660, 7260, 7860, 8460, 9060, | |
| 9660, 10260, | |
| ]; | |
| const U4C_W: [i32; 10] = [510, 510, 510, 510, 510, 510, 510, 510, 5610, 10710]; |
| import datetime | |
| import json | |
| import os | |
| import re | |
| import subprocess | |
| import sys | |
| import textwrap | |
| from typing import Self |
| #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
| ; #Warn ; Enable warnings to assist with detecting common errors. | |
| SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
| SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
| ; Reference https://medium.com/@chrisdhanaraj/mapping-your-macos-keybinds-to-windows-b6009c50065b | |
| ; Option Key Shortcuts | |
| <!BS::Send {LCtrl Down}{BackSpace}{LCtrl Up} | |
| <!Left::Send {LCtrl Down}{Left}{LCtrl Up} |
| services: | |
| # See https://github.com/jesec/flood/discussions/120 | |
| # Access Flood and register a user with `/config/.local/share/rtorrent/rtorrent.sock` rTorrent socket path | |
| flood: | |
| hostname: flood | |
| image: jesec/flood:master | |
| user: 0:0 | |
| restart: unless-stopped | |
| command: --port 3001 --allowedpath /data | |
| environment: |