User contributions for Razzi
Jump to navigation
Jump to search
10 March 2025
- 20:5320:53, 10 March 2025 diff hist +1,013 Blog: 2025-03-10 evening No edit summary
- 20:3820:38, 10 March 2025 diff hist +181 N 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:5512:55, 10 March 2025 diff hist +972 N 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 *..." current
- 00:4900:49, 10 March 2025 diff hist +1,122 N 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'..." current
9 March 2025
- 04:0604:06, 9 March 2025 diff hist +136 N 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!" current
8 March 2025
- 16:0016:00, 8 March 2025 diff hist +269 N 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" current
7 March 2025
- 23:2823:28, 7 March 2025 diff hist +286 N 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?" current
2 March 2025
- 23:3823:38, 2 March 2025 diff hist +455 Blog: 2025-03-02 No edit summary current
- 23:2023:20, 2 March 2025 diff hist +207 Blog: 2025-03-02 No edit summary
- 22:5622:56, 2 March 2025 diff hist +211 N 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++."
24 February 2025
- 00:3900:39, 24 February 2025 diff hist +110 Blog: 2025-02-23 No edit summary current
- 00:3400:34, 24 February 2025 diff hist +1,702 Blog: 2025-02-23 No edit summary
- 00:0300:03, 24 February 2025 diff hist +168 N 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>"
22 February 2025
- 20:5720:57, 22 February 2025 diff hist +207 Blog: 2025-02-22 No edit summary current
- 20:5720:57, 22 February 2025 diff hist +309 Blog: 2025-02-22 No edit summary
- 19:1619:16, 22 February 2025 diff hist +116 Blog: 2025-02-22 No edit summary
- 19:1519:15, 22 February 2025 diff hist +97 Blog: 2025-02-22 No edit summary
- 18:5518:55, 22 February 2025 diff hist +148 Blog: 2025-02-22 No edit summary
- 18:5218:52, 22 February 2025 diff hist +315 N 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)"
21 February 2025
- 20:3720:37, 21 February 2025 diff hist +43 N Scratch resources Created page with "https://scratch.mit.edu/projects/105500895/" current
20 February 2025
- 11:1011:10, 20 February 2025 diff hist +42 Blog: 2025-02-20 No edit summary current
- 10:4810:48, 20 February 2025 diff hist +182 N 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>"
- 09:4409:44, 20 February 2025 diff hist +133 People Razzi follows No edit summary Tag: Visual edit
19 February 2025
- 01:1701:17, 19 February 2025 diff hist +333 N 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/" current
17 February 2025
- 15:0715:07, 17 February 2025 diff hist +111 Blog: 2025-02-17 No edit summary current
- 14:3814:38, 17 February 2025 diff hist +18 Blog: 2025-02-17 No edit summary
- 14:3714:37, 17 February 2025 diff hist +388 N 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:3614:36, 17 February 2025 diff hist +36 N File:Screen Shot 2025-02-17 at 1.34.41 PM.png No edit summary current
16 February 2025
- 23:4223:42, 16 February 2025 diff hist +112 Blog: 2025-02-16 No edit summary current
- 20:1620:16, 16 February 2025 diff hist +289 Blog: 2025-02-16 No edit summary
- 14:4514:45, 16 February 2025 diff hist +549 Blog: 2025-02-16 No edit summary
- 01:2201:22, 16 February 2025 diff hist +338 N 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:2101:21, 16 February 2025 diff hist +99 People Razzi follows No edit summary
15 February 2025
- 02:2802:28, 15 February 2025 diff hist +209 Blog: 2025-02-15 No edit summary current
- 02:2702:27, 15 February 2025 diff hist +851 Blog: 2025-02-15 No edit summary
- 02:0502:05, 15 February 2025 diff hist +798 Blog: 2025-02-15 No edit summary
- 01:1501:15, 15 February 2025 diff hist +1,995 N 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..."
14 February 2025
- 18:2518:25, 14 February 2025 diff hist +7 Blog: 2025-02-14 No edit summary current
- 18:2418:24, 14 February 2025 diff hist +844 Blog: 2025-02-14 No edit summary
- 18:2318:23, 14 February 2025 diff hist +73 N File:Screen Shot 2025-02-14 at 5.19.53 PM.png No edit summary current
- 17:0317:03, 14 February 2025 diff hist +23 Blog: 2025-02-14 No edit summary Tag: Visual edit
- 17:0317:03, 14 February 2025 diff hist +340 N 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"
12 February 2025
- 02:5402:54, 12 February 2025 diff hist +36 N Blog: 2025-02-12 Created page with "idea: jupyter kernel for fennel lang" current
10 February 2025
- 14:3514:35, 10 February 2025 diff hist +271 Blog: 2025-02-10 No edit summary current
- 14:2714:27, 10 February 2025 diff hist +59 Blog: 2025-02-10 No edit summary
- 14:2314:23, 10 February 2025 diff hist +310 Blog: 2025-02-10 No edit summary
- 12:3012:30, 10 February 2025 diff hist +82 N Blog: 2025-02-10 Created page with "Very cool pic https://en.wikipedia.org/wiki/Williams_tube#/media/File:SWAC_003.jpg"
6 February 2025
- 10:0810:08, 6 February 2025 diff hist +131 Main Page →TODO current Tag: Visual edit
4 February 2025
- 12:0112:01, 4 February 2025 diff hist +256 Blog: 2025-02-04 No edit summary current
- 11:5911:59, 4 February 2025 diff hist +519 N 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..."