All public logs

Jump to navigation Jump to search

Combined display of all available logs of razwiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 20:43, 7 March 2024 Razzi talk contribs created page Blog: 2024-03-07 (Created page with "Looked into ronin again, and after some curiosity about debian version 12 being hardcoded, I took a deep dive on architectures and os stuff. Here are some of the highlights: * https://gitlab.com/giomasce/dqib / https://people.debian.org/~gio/dqib/ - doing stuff with qemu and debian. Hardcodes ssh keys. * https://lists.debian.org/debian-riscv/2023/07/msg00053.html * https://postmarketos.org/blog/2024/03/05/adding-systemd/ * https://mirror.postmarketos.org/temp.fdcc091b5...")
  • 13:02, 4 March 2024 Razzi talk contribs created page MTG resources (Created page with "https://mtg.dawnglare.com/?p=pioneer https://scryfall.com/")
  • 03:06, 27 February 2024 Razzi talk contribs created page Blog: 2024-02-27 (Created page with "Moment of realization just now: why can't you shutdown debian from the login screen? bc it would need a root user to submit the "shutdown" command. Even when you switch with alt-f2 or whatever to the text login screen, it prompts for username; you can't enter commands from there. Maybe the solution is to boot to a root repl (like safe mode) and from there you can launch login gui. Other realization I'll note down here: lots of software isn't available in apt because its...")
  • 14:49, 23 February 2024 Razzi talk contribs created page 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...")
  • 14:43, 23 February 2024 Razzi talk contribs created page 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")
  • 21:49, 21 February 2024 Razzi talk contribs created page 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")
  • 13:08, 20 February 2024 172.69.65.37 talk created page Blog: 2024-02-20 (Created page with "Alright I created this little code pen https://codepen.io/Razzi-Abuissa/pen/oNVOqyL And I wanted to log it because to get the element to align to the bottom, I had to set the page height to 100%, otherwise it was aligned to the bottom but the whole page was a small height... have run into this before.<pre> html, body { height: 100%; } .main { height: 100%; display: flex; flex-direction: column; justify-content: space-between; } </pre>Also you need a spacer el...") Tag: Visual edit
  • 03:31, 19 February 2024 Razzi talk contribs created page 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.")
  • 00:06, 19 February 2024 Razzi talk contribs created page 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>")
  • 00:59, 16 February 2024 Razzi talk contribs created page Blog: 2024-02-15 (Created page with "The pretty silly CVE disclosure Bad Apple!! https://m1racles.com/")
  • 01:59, 13 February 2024 Razzi talk contribs created page 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>")
  • 13:07, 12 February 2024 Razzi talk contribs created page 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...")
  • 00:13, 10 February 2024 Razzi talk contribs created page File:Debtree for fish.jpg
  • 00:13, 10 February 2024 Razzi talk contribs uploaded File:Debtree for fish.jpg
  • 12:32, 9 February 2024 Razzi talk contribs created page 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]....")
  • 13:00, 7 February 2024 Razzi talk contribs created page Blog: 2024-02-07 (Created page with "Quick repo sync! cat ~/.repos.txt | xargs -I{} -P (nproc) fish -c 'sync-repo {}'")
  • 12:44, 3 February 2024 Razzi talk contribs created page 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...")
  • 17:01, 2 February 2024 172.69.64.245 talk created page Super google fr 2024 (Created page with "== super google fr 2024 == super google fr 2024 http://google.fr/ http://google.fr/ u")
  • 01:49, 1 February 2024 Razzi talk contribs created page 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!")
  • 14:47, 30 January 2024 Razzi talk contribs created page 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...")
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)