New pages
Jump to navigation
Jump to search
- 02:27, 31 March 2025 Blog: 2025-03-31 (hist | edit) [420 bytes] Razzi (talk | contribs) (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 Blog: 2025-03-23 (hist | edit) [893 bytes] Razzi (talk | contribs) (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 Blog: 2025-03-21 (hist | edit) [190 bytes] Razzi (talk | contribs) (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:28, 18 March 2025 Blog: 2025-03-18 (hist | edit) [13,552 bytes] Razzi (talk | contribs) (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 Blog: 2025-03-11 (hist | edit) [400 bytes] Razzi (talk | contribs) (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 Blog: 2025-03-10 evening (hist | edit) [1,856 bytes] Razzi (talk | contribs) (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 Blog: 2025-03-10 PM (hist | edit) [972 bytes] Razzi (talk | contribs) (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 Blog: 2025-03-10 (hist | edit) [1,122 bytes] Razzi (talk | contribs) (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 Blog: 2025-03-09 (hist | edit) [136 bytes] Razzi (talk | contribs) (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 Blog: 2025-03-08 (hist | edit) [269 bytes] Razzi (talk | contribs) (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 Blog: 2025-03-07 (hist | edit) [286 bytes] Razzi (talk | contribs) (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 Blog: 2025-03-02 (hist | edit) [873 bytes] Razzi (talk | contribs) (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 Blog: 2025-02-23 (hist | edit) [1,980 bytes] Razzi (talk | contribs) (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 Blog: 2025-02-22 (hist | edit) [1,192 bytes] Razzi (talk | contribs) (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 Scratch resources (hist | edit) [43 bytes] Razzi (talk | contribs) (Created page with "https://scratch.mit.edu/projects/105500895/")
- 10:48, 20 February 2025 Blog: 2025-02-20 (hist | edit) [224 bytes] Razzi (talk | contribs) (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 Blog: 2025-02-19 (hist | edit) [333 bytes] Razzi (talk | contribs) (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 Blog: 2025-02-17 (hist | edit) [517 bytes] Razzi (talk | contribs) (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")
- 01:22, 16 February 2025 Blog: 2025-02-16 (hist | edit) [1,288 bytes] Razzi (talk | contribs) (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 Blog: 2025-02-15 (hist | edit) [3,853 bytes] Razzi (talk | contribs) (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...")
- 17:03, 14 February 2025 Blog: 2025-02-14 (hist | edit) [1,214 bytes] Razzi (talk | contribs) (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 Blog: 2025-02-12 (hist | edit) [36 bytes] Razzi (talk | contribs) (Created page with "idea: jupyter kernel for fennel lang")
- 12:30, 10 February 2025 Blog: 2025-02-10 (hist | edit) [722 bytes] Razzi (talk | contribs) (Created page with "Very cool pic https://en.wikipedia.org/wiki/Williams_tube#/media/File:SWAC_003.jpg")
- 11:59, 4 February 2025 Blog: 2025-02-04 (hist | edit) [775 bytes] Razzi (talk | contribs) (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 Blog: 2025-02-01 (hist | edit) [272 bytes] Razzi (talk | contribs) (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 Blog: 2025-01-28 (hist | edit) [5,513 bytes] Razzi (talk | contribs) (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 Blog: 2025-01-17 (hist | edit) [267 bytes] Razzi (talk | contribs) (Created page with "There's a broken change password link on https://wiki.debian.org/InstallingDebianOn/PINE64/PinePhone")
- 00:48, 17 January 2025 Blog: 2025-01-16 (hist | edit) [554 bytes] Razzi (talk | contribs) (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 Blog: 2025-01-13 (hist | edit) [556 bytes] Razzi (talk | contribs) (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 Blog: 2025-01-07 (hist | edit) [72 bytes] Razzi (talk | contribs) (Created page with "https://www.youtube.com/watch?v=SuHygt-lcmU got up to 5 minute mark hehe")
- 00:33, 4 January 2025 Blog: 2025-01-03 (hist | edit) [112 bytes] Razzi (talk | contribs) (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 Blog: 2024-12-30 (hist | edit) [495 bytes] Razzi (talk | contribs) (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)...")
- 23:50, 28 December 2024 Blog: 2024-12-28 (hist | edit) [322 bytes] Razzi (talk | contribs) (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 Blog: 2024-12-26 (hist | edit) [876 bytes] Razzi (talk | contribs) (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")
- 23:25, 24 December 2024 Blog: 2024-12-24 (hist | edit) [1,185 bytes] Razzi (talk | contribs) (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:...")