-
Run the command:
python pixiv_auth.py login
This will open the browser with Pixiv login page.
This file contains hidden or 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
{ | |
"final_space": true, | |
"console_title": true, | |
"console_title_style": "folder", | |
"blocks": [ | |
{ | |
"type": "prompt", | |
"alignment": "left", | |
"horizontal_offset": 0, | |
"vertical_offset": 0, |
This file contains hidden or 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
{ | |
"final_space": true, | |
"console_title": true, | |
"console_title_style": "folder", | |
"blocks": [ | |
{ | |
"type": "prompt", | |
"alignment": "left", | |
"horizontal_offset": 0, | |
"vertical_offset": 0, |
This file contains hidden or 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
#!/bin/sh | |
/Applications/Discord.app/Contents/MacOS/Discord --proxy-server=http://po.cc.ibaraki-ct.ac.jp:3128 |
This file contains hidden or 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
IPv6 | 国家 | 省份 | 城市 | 学校/教育机构 | |
---|---|---|---|---|---|
2001:da8:0200::/48 | 中国 | 北京 | 北京 | 清华大学 | |
2001:da8:0201::/48 | 中国 | 北京 | 北京 | 北京大学 | |
2001:da8:0202::/48 | 中国 | 北京 | 北京 | 北京邮电大学 | |
2001:da8:0203::/48 | 中国 | 北京 | 北京 | 北京航空航天大学 | |
2001:da8:0204::/48 | 中国 | 北京 | 北京 | 北京理工大学 | |
2001:da8:0205::/48 | 中国 | 北京 | 北京 | 北京交通大学 | |
2001:da8:0206::/48 | 中国 | 北京 | 北京 | 北京城市学院 | |
2001:da8:0207::/48 | 中国 | 北京 | 北京 | 北京师范大学 | |
2001:da8:0208::/48 | 中国 | 北京 | 北京 | 北京科技大学 |
- Install package
libstdc++6
(Ubuntu 16.04) - Add following to
~/.gdbinit
python
import sys
sys.path.insert(0, '/usr/share/gcc-9/python')
from libstdcxx.v6.printers import register_libstdcxx_printers
register_libstdcxx_printers (None)
end
This file contains hidden or 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
cicini needs 7a80h, 79c8h | |
memory 0E59E81C char -> 0E59E344 variation | |
0004h - 4650h (7080h): map display | |
actually has 16 maps, last 6 unused | |
0004h - 0708h: southern woodland [25x18x4] | |
070ch - 0e10h: western coast [25x18x4] | |
0e14h - 1518h: island core [25x18x4] | |
151ch - 1c20h: northern tundra [25x18x4] | |
1c24h - 2328h: eastern highlands [25x18x4] |
This file contains hidden or 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
#!/usr/bin/env node | |
/** | |
* Grafana Dashboard Screenshot | |
* | |
* Derived from https://github.com/sindresorhus/capture-website/blob/v0.8.0/index.js | |
* by @sindresorhus (MIT). | |
*/ | |
const fs = require('fs'); |
Okay, I've got a need to build Firefox from source, and I'd like to do that on a remote machine, and then copy build result back to my laptop. With Nix, using bastion host. I'll note details of my successful adventure.
Here's the list of resources I've used actively:
- https://nixos.wiki/wiki/Distributed_build
- https://nixos.org/nix/manual/#conf-trusted-substituters and various other configuration parameters
- https://github.com/NixOS/nixpkgs/blob/release-19.09/nixos/modules/services/misc/nix-daemon.nix which contains mappings from Nix config names to NixOS config names (damn, they are different!)
Here's my setup: