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 (newer 50 | ) (20 | 50 | 100 | 250 | 500)
  • 02:27, 31 March 2025 Razzi talk contribs created page Blog: 2025-03-31 (Created page with "Idea: a data-structure aware version control system, so I can add to a set from multiple commits and have them merge following set logic, rather than line-based diffing etc. Might not work all that well in practice. Also databases do this. But they don't offer commits .. well actually they do, just not in the "write a commit message" way ... interesting how even staging is a database technique, applied to git ... huh")
  • 00:29, 24 March 2025 Razzi talk contribs created page Blog: 2025-03-23 (Created page with "After removing a couple abbrs from my fish-functions README that I don't actually use (restore and backup) I looked around my abbrs and recommendations. Turns out I wasn't using cp -> copy, but all the others I actually use in my config. I do have an abbr for lis -> lima-ssh, but it's not in my fish-functions readme. I used this oneliner to get all the functions from my readme: grep '### ' README.md | coln 2 | string replace -a '`' '' and this to get the abbrs I rec...")
  • 14:24, 21 March 2025 Razzi talk contribs created page Blog: 2025-03-21 (Created page with "New gsettings which does alt -> super and capslock -> control for my mac keyboard! gsettings set org.gnome.desktop.input-sources xkb-options "['altwin:swap_alt_win', 'caps:ctrl_modifier']"")
  • 15:51, 18 March 2025 Razzi talk contribs uploaded File:Screen Shot 2025-03-18 at 3.47.36 PM.png
  • 15:51, 18 March 2025 Razzi talk contribs created page File:Screen Shot 2025-03-18 at 3.47.36 PM.png
  • 15:28, 18 March 2025 Razzi talk contribs created page Blog: 2025-03-18 (Created page with "Found this python repl bug. I remember hitting the up arrow, thinking I'd assign to <code>_</code> since I wanted to keep using that value, then when I hit <kbd>control+k</kbd> to clear a typo or something I got this error: <pre> new1 $ python Python 3.13.1 (main, Jan 29 2025, 03:21:14) [Clang 13.0.0 (clang-1300.0.29.30)] on darwin...")
  • 00:09, 11 March 2025 Razzi talk contribs created page Blog: 2025-03-11 (Created page with "Trying this config option: https://dev.to/tallesl/change-caps-lock-to-ctrl-3c4 XKBOPTIONS="ctrl:nocaps" Unfortunately it didn't work right away, going to see if rebooting applies it (running <code>sudo dpkg-reconfigure keyboard-configuration</code> gave me a weird keyboard setup wizard I mighta screwed up, then regenerated a ram disk image ... heh)")
  • 20:38, 10 March 2025 Razzi talk contribs created page Blog: 2025-03-10 evening (Created page with "Ok keyd is hot ... but there's a built in way to swap alt and super (option and command) for gnome!? https://askubuntu.com/a/1508996 I'd upvote it but the site is in readonly mode")
  • 12:55, 10 March 2025 Razzi talk contribs created page Blog: 2025-03-10 PM (Created page with "I'm coming up with many guides these days, it's fun! Here's my current list: * fish shell * git * apt * make * dig * cd * expect * dealing with wrist pain * ssh * tmux * weechat * firefox * vim * debian * pass * keyd * java * ruby * sinatra * macOS * telnet * nginx * ipython * lua * hut * jekyll * LÖVE * ImageMagick * HTML * Lima * GPG Some new guides I could write: * rust * go * sqlite * postgresql * python * django * flask * sqlalchemy * records python sql library *...")
  • 00:49, 10 March 2025 Razzi talk contribs created page Blog: 2025-03-10 (Created page with "Would like to figure out how to make a minecraft map like a treasure hunt or something. Could be a hardcoded map or autogenerated. Also I'm reminded of warcraft 3 world editor - would be interesting to see if I can figure it out now. Needs windows. So I could be reaching out to framework support for my poor broken windows laptop ... Also exploring alice3. It seems to be less approachable (definitely than scratch) but maybe still has some good ideas. Also apparently it'...")
  • 04:06, 9 March 2025 Razzi talk contribs created page Blog: 2025-03-09 (Created page with "To work on: apache guide on website After all this wiki is using apache so it'd be nice to document how apache is configured generally!")
  • 16:00, 8 March 2025 Razzi talk contribs created page Blog: 2025-03-08 (Created page with "html5 boilerplate doesn't look as cool as I remember!! I should make a template based on it: * centered main container * nav example * logo that goes to home page That's about it for a starter https://www.passwordstore.org/ is kinda the classic dev-oriented webpage")
  • 23:28, 7 March 2025 Razzi talk contribs created page Blog: 2025-03-07 (Created page with "Couple new guides on razzi.abuissa.net * https://github.com/luvit/luvit - is this the lua async environment I've been looking for? Right now I'm just looking for a way to install my lua dependencies on a per-project basis... Maybe https://github.com/jcrd/luarocket accomplishes this?")
  • 22:56, 2 March 2025 Razzi talk contribs created page Blog: 2025-03-02 (Created page with "Here's a link https://readonly.link/books/https://books.readonly.link/scalable-c/book.json/-/ch01.md scalable c, by the author of zeromq. Makes me think about Antirez a bit, esp the part about using c over c++.")
  • 00:03, 24 February 2025 Razzi talk contribs created page Blog: 2025-02-23 (Created page with "Fun with the gcc compiler and linker <pre> hack $ gcc-14 -L /usr/local/lib/ -I /usr/local/include/ -Wall -Werror -l zmq hwserver.c -o hwserver hack $ ./hwserver </pre>")
  • 18:52, 22 February 2025 Razzi talk contribs created page Blog: 2025-02-22 (Created page with "Lua is quirkier than I realized * 1-based indexing * iterate over string is kinda tricky .... * luarocks doesn't add itself to path * no builtin formatter for table * no built-in debugger ?? * repl doesn't have history * no socket support in stdlib (no stdlib?) * blocking io by default (for a project like socket)")
  • 20:37, 21 February 2025 Razzi talk contribs created page Scratch resources (Created page with "https://scratch.mit.edu/projects/105500895/")
  • 10:48, 20 February 2025 Razzi talk contribs created page Blog: 2025-02-20 (Created page with "compiling qemu on macos 11.7 big sur <pre> git clone https://github.com/qemu/qemu cd qemu git switch --detach v8.2.9 ./configure --target-list=x86_64-softmmu make make install </pre>")
  • 01:17, 19 February 2025 Razzi talk contribs created page Blog: 2025-02-19 (Created page with "Links!! About coding education ! https://studio.code.org/s/coursea-2024/lessons/1/levels/1 https://www.k12gamer.com/how-to-code.html https://forum.gamemaker.io/index.php?threads/what-are-your-views-on-children-learning-gms.76514/ Interesting web-based competitor https://github.com/4ian/GDevelop to gamemaker https://gdevelop.io/")
  • 14:37, 17 February 2025 Razzi talk contribs created page Blog: 2025-02-17 (Created page with "Here's that gamemaker snippet <pre> if keyboard_check(vk_up) { motion_add(image_angle, 0.05) } if keyboard_check(vk_left) { image_angle += 5 } if keyboard_check(vk_right) { image_angle -= 5 } </pre> Which I got in a very quine way... thumb|alt=gamemaker window where I show_debug_message(@"...") the source code of my step function")
  • 14:36, 17 February 2025 Razzi talk contribs uploaded File:Screen Shot 2025-02-17 at 1.34.41 PM.png
  • 14:36, 17 February 2025 Razzi talk contribs created page File:Screen Shot 2025-02-17 at 1.34.41 PM.png
  • 01:22, 16 February 2025 Razzi talk contribs created page Blog: 2025-02-16 (Created page with "ok so there is a luarocks install --local Then you get the path modification with luarocks path Still to read: https://leafo.net/posts/itchio-and-coroutines.html and also can look in to https://moonscript.org/ but I think fennel will work better Actually lots of guides here https://leafo.net/guides.html kinda like my website :)")
  • 01:15, 15 February 2025 Razzi talk contribs created page Blog: 2025-02-15 (Created page with "I figure before I get to writing fennel and stuff I should understand the host platform: namely lua! I have lua 5.4 installed First thing: I wanted to install the lua socket library to make a lua irc server. However the default install tried to write to /usr/ which failed with a permission error. Better to write to ~/.local <pre> $ cat ~/.config/lua/luarocks-5.4.lua rocks_trees = { home .. "/.local/lib/lua"; } lua_interpreter = "lua5.4" </pre> Also need to set it...")
  • 18:23, 14 February 2025 Razzi talk contribs uploaded File:Screen Shot 2025-02-14 at 5.19.53 PM.png
  • 18:23, 14 February 2025 Razzi talk contribs created page File:Screen Shot 2025-02-14 at 5.19.53 PM.png
  • 17:03, 14 February 2025 Razzi talk contribs created page Blog: 2025-02-14 (Created page with "BBN had a big contract to implement TCP/IP, but their stuff didn't work, and grad student Joy's stuff worked. So they had this big meeting and this grad student in a T-shirt shows up, and they said, "How did you do this?" And Bill said, "It's very simple — you read the protocol and write the code. https://en.wikipedia.org/wiki/Bill_Joy")
  • 02:54, 12 February 2025 Razzi talk contribs created page Blog: 2025-02-12 (Created page with "idea: jupyter kernel for fennel lang")
  • 12:30, 10 February 2025 Razzi talk contribs created page Blog: 2025-02-10 (Created page with "Very cool pic https://en.wikipedia.org/wiki/Williams_tube#/media/File:SWAC_003.jpg")
  • 11:59, 4 February 2025 Razzi talk contribs created page Blog: 2025-02-04 (Created page with "Mmk made some progress on gamemaker on raspberry pi, namely installing ubuntu using the raspberry pi imager got it to open. But downloading the template didn't work, and running a blank project failed with libcrypto.so.1.1 not found - maybe it needs an older version than what I have? Just as I left last night I thought to build for the web. Still have to figure out the template thing but I think I can copy that directory around manually .. jumping thru some hoops but may...")
  • 22:26, 1 February 2025 Razzi talk contribs created page Blog: 2025-02-01 (Created page with "Ok it was Vampire Survivors that had a slots game developer create it > Prior to developing Vampire Survivors, Galante worked in the gambling industry, using his knowledge of flashy graphics for slot machines as part of the appeal for the game's chest-opening animations.")
  • 23:30, 28 January 2025 Razzi talk contribs created page Blog: 2025-01-28 (Created page with "I was gonna type up my thoughts on kids stem activities that teach coding and technology BUT my wiki was down!! And this was after a 2 week period where I effed up my framework pc, rendering it unbootable, and my hard disk on my macbook air died. Um, can somebody say, "UH OH"? Fortunately I had a gpg key in my signal history on my phone ... or all would be lost .. except not really cause my 1tb storage drive on my framework pc is working still to my knowledge so I'd ju...")
  • 01:06, 17 January 2025 Razzi talk contribs created page Blog: 2025-01-17 (Created page with "There's a broken change password link on https://wiki.debian.org/InstallingDebianOn/PINE64/PinePhone")
  • 00:48, 17 January 2025 Razzi talk contribs created page Blog: 2025-01-16 (Created page with "yeahhh so https://forum.pine64.org/showthread.php?tid=17783 > I learned from the tow-boot documentation that the Pinephone will not automatically load from an SD card unless you hold the volume button down while holding the power button. ok so it boots and I can ssh after `sudo apt install ssh` win!?")
  • 14:45, 13 January 2025 Razzi talk contribs created page Blog: 2025-01-13 (Created page with "One of my fav wikipedia stories > Kirby's Dream Land was developed by Masahiro Sakurai of HAL Laboratory. Much of the programming was done on a Twin Famicom, a Nintendo-licensed console produced by Sharp Corporation that combined a Famicom and a Famicom Disk System in one unit. As the Twin Famicom did not have keyboard support, a trackball was used in tandem with an on-screen keyboard to input values; Sakurai described the process, which he assumed was "the way [game pr...")
  • 21:37, 7 January 2025 Razzi talk contribs created page Blog: 2025-01-07 (Created page with "https://www.youtube.com/watch?v=SuHygt-lcmU got up to 5 minute mark hehe")
  • 00:33, 4 January 2025 Razzi talk contribs created page Blog: 2025-01-03 (Created page with "apache guide notes https://askubuntu.com/questions/19898/whats-the-simplest-way-to-edit-and-add-files-to-var-www")
  • 03:27, 30 December 2024 Razzi talk contribs created page Blog: 2024-12-30 (Created page with "Added a couple guides: ruby and sinatra, which I started building a wiki with. Kinda works! File:Screen Shot 2024-12-30 at 2.19.10 AM.png Some more ideas of guides to make (and my estimated skill level, out of a possible 40): <pre> python (25) django (28) flask (17) bash (13) emacs (20) git (21) shapely (15) arduino (10) sql (15) clojure (8) rails (5) rust (4) php (7) c (5) javascript (22) html (20) css (14) c# (10) go (6) scratch (8) assembly (3) swift (5) lua (9)...")
  • 03:19, 30 December 2024 Razzi talk contribs uploaded File:Screen Shot 2024-12-30 at 2.19.10 AM.png
  • 03:19, 30 December 2024 Razzi talk contribs created page File:Screen Shot 2024-12-30 at 2.19.10 AM.png
  • 23:50, 28 December 2024 Razzi talk contribs created page Blog: 2024-12-28 (Created page with "Heta-uma (ヘタウマ or ヘタうま) is a Japanese underground manga movement started in the 1970s with the magazine Garo. Heta-uma can be translated as "bad but good", designating a work which looks poorly drawn, but with an aesthetically conscious quality, opposed to the polished look of mainstream manga.")
  • 03:23, 26 December 2024 Razzi talk contribs created page Blog: 2024-12-26 (Created page with "Had some fun with gamemaker studio. Had to open the "app" using <pre> $ /Applications/GameMaker\ LTS.app/Contents/MacOS/x86_64/GameMaker Starting...... Doing Validate Folder check... macOS=True </pre> But it worked mostly, it just couldn't load asteroids template ... well it could but readonly. so I only saw the blank starting room :( But I made a new project and edited the background sprite, and tada! thumb")
  • 03:23, 26 December 2024 Razzi talk contribs uploaded File:Screen Shot 2024-12-26 at 2.17.51 AM.png
  • 03:23, 26 December 2024 Razzi talk contribs created page File:Screen Shot 2024-12-26 at 2.17.51 AM.png
  • 23:25, 24 December 2024 Razzi talk contribs created page Blog: 2024-12-24 (Created page with "Llllink roll up time * https://en.wikipedia.org/wiki/Mendix * https://en.wikipedia.org/wiki/Telegraphy#Telegram_services * https://en.wikipedia.org/wiki/Flag_semaphore Really getting to the nuts and bolts of signaling * https://en.wikipedia.org/wiki/Optical_telegraph * https://en.wikipedia.org/wiki/Article_Five_of_the_United_States_Constitution ** it's Gödel's loophole yo * https://en.wikipedia.org/wiki/Antenna_(radio) * https://en.wikipedia.org/wiki/2N2222 * https:...")
  • 02:11, 17 December 2024 Razzi talk contribs created page Blog: 2024-12-17 (Created page with "Looks good https://arduinogetstarted.com/tutorials/arduino-piezo-buzzer")
  • 22:11, 15 December 2024 Razzi talk contribs created page Blog: 2024-12-15 (Created page with "These the good Arduino docs https://docs.arduino.cc/built-in-examples/")
  • 00:47, 13 December 2024 Razzi talk contribs created page Blog: 2024-12-12 (Created page with "arduino led and buzzer <pre> void setup() { // put your setup code here, to run once: //pinMode(LED_BUILTIN, OUTPUT); pinMode(13, OUTPUT); pinMode(12, OUTPUT); pinMode(9, OUTPUT); } void loop() { // put your main code here, to run repeatedly: digitalWrite(13, HIGH); digitalWrite(12, LOW); //tone(9, 16000); tone(9, 440); delay(1000); //tone(9, 10); noTone(9); digitalWrite(13, LOW); digitalWrite(12, HIGH); delay(1000); } </pre>")
  • 00:51, 6 December 2024 Razzi talk contribs created page Blog: 2024-12-05 (Created page with "lllllink roll up * https://en.wikipedia.org/wiki/Secret_of_Mana * https://en.wikipedia.org/wiki/Final_Fantasy_VI * https://nesbox.itch.io/tic80 * https://github.com/nesbox/TIC-80 * https://en.wikipedia.org/wiki/Bulletin_board_system * https://en.wikipedia.org/wiki/Astro%27s_Playroom Thinking about that plan9 style shell again, maybe putting it in my own retro console? Strange how sometimes building my own of something (fish shell with tab completion of mixed case file...")
  • 00:03, 21 November 2024 Razzi talk contribs created page Blog: 2024-11-20 (Created page with "Weel I lost my water bottle again ... anyways Scored 2 nice monitors, maybe I can score a couple more? A class of 6 coders: 1 raspberry pi 400, 2 raspberry pi 5, 1 rpi zero w, 1 student rpi, 1 old laptop ... and 1 something else?")
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)