User contributions for Razzi
Jump to navigation
Jump to search
23 February 2024
- 14:4914:49, 23 February 2024 diff hist +1,175 N Back to Blogging Created page with "You may notice this website's blog is unorganized and untidy. That's by design "Blog" is a truncation of "weblog" - breaking that word apart we get web log. That's what this blog is, it's a log of my web activities. Mostly for me, but you're welcome to browse as well. In the early days of internet, I think "bloggers" were simply logging their lives. Posting pictures and stuff, since social media hadn't taken off. It was a uninhibited and exciting time... Some people w..." current
- 14:4314:43, 23 February 2024 diff hist +245 N Blog: 2024-02-23 Created page with "Thinking about this book https://en.wikipedia.org/wiki/The_Story_About_Ping#cite_note-4 after seeing ducks on the https://en.wikipedia.org/wiki/Rice page And I have been rewarded with some internet lore https://ftp.arl.army.mil/~mike/ping.html" current
21 February 2024
- 21:4921:49, 21 February 2024 diff hist +430 N Blog: 2024-02-21 Created page with "Alright I was trying to do some tmux pane renaming and this is what I came up with <pre> if not string-empty $TMUX function _fish_tmux_window_title_command --on-event fish_preexec tmux rename-window (echo $argv | cut -d ' ' -f 1) end function _fish_tmux_window_title_pwd --on-event fish_postexec tmux rename-window (curdir) end end </pre> Now I'm restoring it out bc I don't care for the feature" current
19 February 2024
- 03:3103:31, 19 February 2024 diff hist +395 N Blog: 2024-02-19 Created page with "Realizing it's not actually trivial for a copy operator to do a whole line, and not dump the line after the current character on paste. Need p to be aware of clipboard length I guess, then paste after current line if the clipboard has its own newline... I guess the oscyank has probably been doing the right thing, it'd say the number of characters that would include a newline. Tired, bedtime." current
- 00:0800:08, 19 February 2024 diff hist +214 Blog: 2024-02-18 No edit summary current
- 00:0700:07, 19 February 2024 diff hist +62 Blog: 2024-02-18 No edit summary
- 00:0600:06, 19 February 2024 diff hist +288 N Blog: 2024-02-18 Created page with "cool got rid of needrestart which was posting the "need restart" messages like <pre> No services need to be restarted. No containers need to be restarted. No user sessions are running outdated binaries. No VM guests are running outdated hypervisor (qemu) binaries on this host. </pre>"
16 February 2024
- 00:5900:59, 16 February 2024 diff hist +65 N Blog: 2024-02-15 Created page with "The pretty silly CVE disclosure Bad Apple!! https://m1racles.com/" current
13 February 2024
- 11:0011:00, 13 February 2024 diff hist +324 Blog: 2024-02-13 No edit summary current
- 01:5901:59, 13 February 2024 diff hist +99 Blog: 2024-02-13 No edit summary Tag: Visual edit
- 01:5901:59, 13 February 2024 diff hist +280 N Blog: 2024-02-13 Created page with "How does this work but it doesn't seem to when you use the read and write methods on the io objects? <pre> proc = subprocess.Popen(['bc'], stdin=subprocess.PIPE, stdout=subprocess.PIPE) os.write(proc.stdin.fileno(), b'100+200\n') print(os.read(proc.stdout.fileno(), 4096)) </pre>"
- 00:4600:46, 13 February 2024 diff hist +824 Blog: 2024-02-12 No edit summary current Tag: Visual edit
12 February 2024
- 13:0713:07, 12 February 2024 diff hist +1,523 N Blog: 2024-02-12 Created page with "Started on this quest to have a scheme repl where the outputs are italicized, like the SICP book. Printing italics is pretty easy: <pre> In [1]: line = 'a' In [2]: print(f'\x1B[3m{line}\x1B[0m') a </pre> ''It's italic, trust me!'' But when it comes to spawning a scheme subprocess and interacting with its stdin and stdout, I took many turns, eventually trying nodejs since its asynchronous io model more closely fits this use case. Here's what worked (or at least is a..."
10 February 2024
- 00:1600:16, 10 February 2024 diff hist −1 Blog: 2024-02-09 No edit summary current Tag: Visual edit
- 00:1500:15, 10 February 2024 diff hist +323 Blog: 2024-02-09 No edit summary
- 00:1300:13, 10 February 2024 diff hist +22 N File:Debtree for fish.jpg No edit summary current
9 February 2024
- 22:1922:19, 9 February 2024 diff hist +1,721 Blog: 2024-02-09 No edit summary Tag: Visual edit
- 21:5221:52, 9 February 2024 diff hist +2 Blog: 2024-02-09 No edit summary
- 21:5221:52, 9 February 2024 diff hist +661 Blog: 2024-02-09 No edit summary Tag: Visual edit
- 13:1613:16, 9 February 2024 diff hist +8,487 Blog: 2024-02-09 No edit summary Tag: Visual edit
- 12:3212:32, 9 February 2024 diff hist +2,153 N Blog: 2024-02-09 Created page with "Ok rather than any of the nice projects I talked about on 2/7, I now have... the idea of making a ronin alternative, that uses podman instead of qemu. Coincidentally, I can see this converging, as I dig into the implementation of podman and see qemu. <pre> $ podman system connection list Name URI Identity Default podman-machine-default ssh://[email protected]...."
8 February 2024
- 00:0800:08, 8 February 2024 diff hist +67 Blog: 2024-02-07 No edit summary current
- 00:0800:08, 8 February 2024 diff hist +561 Blog: 2024-02-07 No edit summary
7 February 2024
- 13:0013:00, 7 February 2024 diff hist +82 N Blog: 2024-02-07 Created page with "Quick repo sync! cat ~/.repos.txt | xargs -I{} -P (nproc) fish -c 'sync-repo {}'"
3 February 2024
- 12:4412:44, 3 February 2024 diff hist +547 N Blog: 2024-02-03 Created page with "Weirdly, running `man hexdump` invoked xcodebuild and lagged for a while, so I thought I'd cut out the middleman and learned how to do this: groff -mandoc /usr/share/man/man1/hexdump.1 -Tascii Then I can groff -mandoc /usr/share/man/man1/hexdump.1 -Tascii | less Makes me think about how groff is antiquated and I don't know how to write its bespoke text format, so probably a better approach for a modern os would be to write man pages in md, or maybe just html? Is it..." current
2 February 2024
- 11:4311:43, 2 February 2024 diff hist +51 Blog: 2024-02-01 No edit summary current Tag: Visual edit
- 11:4111:41, 2 February 2024 diff hist +1,273 Blog: 2024-02-01 No edit summary Tag: Visual edit
1 February 2024
- 23:3323:33, 1 February 2024 diff hist +182 Blog: 2024-02-01 No edit summary
- 01:4901:49, 1 February 2024 diff hist +159 N Blog: 2024-02-01 Created page with "Found this song https://freemusicarchive.org/music/Yung_Kartz/August_2018/Mars_1797 while cleaning up my old functions; I found my krui function. Still works!"
30 January 2024
- 19:3819:38, 30 January 2024 diff hist +132 Blog: 2024-01-30 No edit summary current Tag: Visual edit
- 19:3519:35, 30 January 2024 diff hist +763 Blog: 2024-01-30 No edit summary
- 19:3219:32, 30 January 2024 diff hist +449 Blog: 2024-01-30 No edit summary
- 16:4916:49, 30 January 2024 diff hist +253 Blog: 2024-01-30 No edit summary
- 15:1815:18, 30 January 2024 diff hist +270 Blog: 2024-01-30 No edit summary
- 15:1815:18, 30 January 2024 diff hist +222 Blog: 2024-01-30 No edit summary
- 14:4714:47, 30 January 2024 diff hist +896 N Blog: 2024-01-30 Created page with "After much fussing with homebrew dependencies including a 6hr llvm 17 install, I got the source of virt-manager and it's installing alpine linux: <pre> virt-manager $ ./virt-install --name='alpine1' --memory 2048 --vcpus 2 --disk size=8 --cdrom $HOME/Downloads/alpine-virt-3.19.1-x86_64.iso --os-variant alpinelinux3.19 WARNING KVM acceleration not available, using 'qemu' WARNING Unable to connect to graphical console: virt-viewer not installed. Please install the 'virt..."
27 January 2024
- 00:5700:57, 27 January 2024 diff hist +94 N Blog: 2024-01-26 Created page with "Cool looking thing https://github.com/atomiks/rehype-pretty-code for code blocks with metadata" current
25 January 2024
- 15:0215:02, 25 January 2024 diff hist +667 Blog: 2024-01-25 No edit summary current
- 14:4814:48, 25 January 2024 diff hist +1,093 N Blog: 2024-01-25 Created page with "Ok a new day, a new machine to configure for oftc certificate. Based on https://wiki.abuissa.net/wiki/Blog:_2024-01-08 Basing this on https://www.oftc.net/NickServ/CertFP/#weechat $ mkdir-cd ~/.config/weechat/certs certs $ openssl req -batch -noenc -newkey ed25519 -keyout nick.key -x509 -days 3650 -out nick.cer ----- certs $ ls nick.cer nick.key certs $ chmod 400 nick.key certs $ cat nick.cer nick.key > nick.pem certs $ chmod 400 nick.pem Back in weechat:..."
- 00:4400:44, 25 January 2024 diff hist +712 Blog: 2024-01-24 No edit summary current
24 January 2024
- 23:3123:31, 24 January 2024 diff hist +256 Blog: 2024-01-24 No edit summary
- 23:2123:21, 24 January 2024 diff hist +595 Blog: 2024-01-24 No edit summary
- 22:4422:44, 24 January 2024 diff hist +133 Blog: 2024-01-24 No edit summary
- 22:3622:36, 24 January 2024 diff hist +93 Blog: 2024-01-24 No edit summary
- 22:3522:35, 24 January 2024 diff hist +251 Blog: 2024-01-24 No edit summary
- 22:0822:08, 24 January 2024 diff hist +112 N Blog: 2024-01-24 Created page with "Got this clip of a huge combat on twitch stream https://clips.twitch.tv/ObedientBlushingCrabYee-LXkN_6PeFZAFcKb6"
23 January 2024
- 20:4120:41, 23 January 2024 diff hist +319 N Blog: 2024-01-23 Created page with "Was able to connect to twitch over irc: https://gist.github.com/noromanba/df3d975613713f60e6ae The key: https://twitchapps.com/tmi/ then /server add twitch irc.twitch.tv/6667 -password=oauth:*** -nicks=TWITCH_NAME -username=TWITCH_NAME Thinking of trying nix on usb again: https://nixos.org/download.html#nixos-iso" current
- 00:5300:53, 23 January 2024 diff hist +551 Blog: 2024-01-22 No edit summary current
22 January 2024
- 17:2217:22, 22 January 2024 diff hist +222 Blog: 2024-01-22 No edit summary
- 17:1017:10, 22 January 2024 diff hist +573 Blog: 2024-01-22 No edit summary