New pages

Jump to navigation Jump to search
New pages
Hide registered users | Show bots | Hide redirects
  • 01:11, 17 December 2024Blog: 2024-12-17 (hist | edit) ‎[71 bytes]Razzi (talk | contribs) (Created page with "Looks good https://arduinogetstarted.com/tutorials/arduino-piezo-buzzer")
  • 21:11, 15 December 2024Blog: 2024-12-15 (hist | edit) ‎[71 bytes]Razzi (talk | contribs) (Created page with "These the good Arduino docs https://docs.arduino.cc/built-in-examples/")
  • 23:47, 12 December 2024Blog: 2024-12-12 (hist | edit) ‎[464 bytes]Razzi (talk | contribs) (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>")
  • 23:51, 5 December 2024Blog: 2024-12-05 (hist | edit) ‎[662 bytes]Razzi (talk | contribs) (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...")
  • 23:03, 20 November 2024Blog: 2024-11-20 (hist | edit) ‎[231 bytes]Razzi (talk | contribs) (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?")
  • 11:44, 14 November 2024Blog: 2024-11-14 (hist | edit) ‎[126 bytes]Razzi (talk | contribs) (Created page with "This is the photocopy cover operating systems textbook https://en.wikipedia.org/wiki/A_Commentary_on_the_UNIX_Operating_System")
  • 11:20, 7 November 2024Blog: 2024-11-07 (hist | edit) ‎[1,760 bytes]Razzi (talk | contribs) (Created page with "Getting in to game boy development a bit. Finna purchase https://maxoakland.itch.io/oh-im-a-cat-now - might be a fun one to demo 8-bit gaming. Hoping it'll be much simpler than a AAA game. It's cute, I like how the sprites tend to alternate between 2 frames so the things that are "alive" stand out from the rest. Nice background music too. This one scene where you walk across a bridge reminds me of the scene in Legend of Zelda Ocarina of Time where you cross the bridge t...")
  • 23:10, 3 November 2024Blog: 2024-11-03 (hist | edit) ‎[5,408 bytes]Razzi (talk | contribs) (Created page with "Alright time to wrap👏🏼it👏🏼up and get to bed so I can be ... awake for tomorrow ... I think it's worth giving the kids a big scratch project like the flappy bird one, printed out, and ask them to make it. Maybe to make a little simpler one first ... nim ? Turn based games are good to explain logic ... most games have too many rules tho. I have my amoung us text adventure game but it's not done ... it's not that fun but could have some humor and interest <pr...")
  • 23:09, 29 October 2024Blog: 2024-10-30 (hist | edit) ‎[550 bytes]Razzi (talk | contribs) (Created page with "Getting some error with nvme not booting, or not booting in time <pre> [ 9.973200] starfive-eth-plat 16030000.ethernet end0: renamed from eth0 [ 40.261818] nvme nvme0: I/O 466 QID 4 timeout, completion polled [ 70.329634] nvme nvme0: I/O 505 QID 4 timeout, aborting [ 70.338117] nvme nvme0: Abort status: 0x0 [ 70.563105] EXT4-fs (mmcblk1p4): mounted filesystem with ordered data mode. Opts: (null). Quota mode: disabled. [ 70.754738] random: crng init done </pre>")
  • 22:39, 29 October 2024Wishlist (hist | edit) ‎[229 bytes]Razzi (talk | contribs) (Created page with "New thing for wishlist: https://www.adafruit.com/product/954 so I can debug my starfive2 not booting from nvme as is referenced here https://forum.rvspace.org/t/nvme-boot-not-working-on-visionfive-2-qspi-with-new-firmware/3293/5")
  • 20:53, 29 October 2024Blog: 2024-10-29 (hist | edit) ‎[1,605 bytes]Razzi (talk | contribs) (Created page with "Gist on how to mount ssd on linux. It worked https://gist.github.com/a-maumau/b826164698da318f992aad5498d0d934")
  • 01:12, 26 October 2024Blog: 2024-10-26 (hist | edit) ‎[810 bytes]Razzi (talk | contribs) (Created page with "Here's my silly little quicktime event with tkinter <pre> import tkinter as tk from tkinter import ttk, PhotoImage # Create the main window root = tk.Tk() root.title("Image in Tkinter") root.geometry('600x600') # Load the image image = PhotoImage(file="trogdor.png") # Create a label to display the image image_label = tk.Label(root, image=image) image_label.pack() win = False def button_pressed(): win = True print('You stab the dragon in the neck and it die...")
  • 00:15, 25 October 2024Blog: 2024-10-25 (hist | edit) ‎[141 bytes]Razzi (talk | contribs) (Created page with "Having this very silly idea to have a text adventure game, then it pops up with a quicktime event if you fight the dragon. Using tkinter hehe")
  • 01:58, 23 October 2024Blog: 2024-10-23 (hist | edit) ‎[2,138 bytes]Razzi (talk | contribs) (Created page with "Well well well... interesting computer news * Raspberry Pi offers a service called Connect which could make my pi 400 accessible even if its ssh server is not (since I don't have access to the router where it is) https://www.raspberrypi.com/documentation/services/connect.html ** would be interested in seeing if I can set this up with my own domain, connect.razzi.abuissa.net or sth ** https://www.notebookcheck.net/All-Raspberry-Pi-SBCs-eligible-for-improved-functionality...")
  • 17:22, 22 October 2024Blog: 2024-10-22 (hist | edit) ‎[1,550 bytes]Razzi (talk | contribs) (Created page with "http://jsfiddle.net/uzMPU minecraft javascript rendering demo")
  • 03:21, 16 October 2024Blog: 2024-10-16 (hist | edit) ‎[67 bytes]Razzi (talk | contribs) (Created page with "Found a bug thumb")
  • 15:58, 13 October 2024Blog: 2024-10-13 (hist | edit) ‎[123 bytes]Razzi (talk | contribs) (Created page with "Some Dark Cloud 2 related titles https://en.wikipedia.org/wiki/Rogue_Galaxy https://en.wikipedia.org/wiki/Visions_of_Mana")
  • 00:27, 9 October 2024Blog: 2024-10-09 (hist | edit) ‎[1,784 bytes]Razzi (talk | contribs) (Created page with "https://en.wikipedia.org/wiki/Asynchronous_circuit cool it's a thing https://www.youtube.com/watch?v=YW-_GkUguMM cool and well done https://www.youtube.com/watch?v=hb86p_4hN9Q solid set")
  • 13:06, 3 October 2024Blog: 2024-10-03 (hist | edit) ‎[7,403 bytes]Razzi (talk | contribs) (Created page with "Got podman working with lima <pre> podman $ ./bin/podman --url unix:///Users/razzi/.lima/podman/sock/podman.sock run -it debian root@e6f3c2aa79b5:/# exit ./⏎ podman $ ./bin/podman --version podman version 5.3.0-dev </pre> Needed this lima command to start the podman machine: limactl start template://podman I got the url from lima's source: <pre> lima $ cat cmd/podman.lima #!/bin/sh set...")
  • 12:53, 2 October 2024Blog: 2024-10-02 (hist | edit) ‎[2,533 bytes]Razzi (talk | contribs) (Created page with "Had good luck with unpinning libheif and ffmpeg. Maybe it had to do with my jank PKG_CONFIG_PATH. Also spent a while doing random upgrades, trying to get zenity installed so winetricks would have a gui, and eventually succeeding. Still can't run my 3d game in wine but crossover could actually run it fine immediately. Then I tried to upgrade podman, and got a simple "not supported on this version of macos" error. Checking the brew definition took me to https://github.c...")
  • 03:18, 27 September 2024Blog: 2024-09-27 (hist | edit) ‎[682 bytes]Razzi (talk | contribs) (Created page with "Maybe cool arduino compatible but cheap https://www.seeedstudio.com/Seeed-XIAO-Starter-Kit-p-5378.html Maybe this is similar https://store.arduino.cc/products/plug-and-make-kit https://www.adafruit.com/product/3400 might be a cool thing to give to all students of a intro to computer programming class https://www.adafruit.com/product/3410 cool but out of stock. Ironically comes out to the same price as an entry-level raspberry pi that ... has these connectors all solde...")
  • 13:14, 17 September 2024Blog: 2024-09-17 (hist | edit) ‎[3,759 bytes]Razzi (talk | contribs) (Created page with "More editor ideas: either don't clear scrollback, or if you do clear scrollback, output the changes as a diff </pre> $ edit ronin diff --git a/ronin b/ronin index 2805e3b..5cdfd6d 100755 --- a/ronin +++ b/ronin @@ -50,8 +50,8 @@ ronin_launch() { -hda "$RONIN_DISK" \ -m 4096 \ -nic hostfwd=tcp::2022-:22 \ - -daemonize \ </pre> or <pre> $ edit ronin #!/bin/sh # Create a virtual machine and log in set -e test ! -z "$RONIN_DEBUG" && set -x RONIN_HOME="...")
  • 09:51, 16 September 2024Blog: 2024-09-16 (hist | edit) ‎[14,630 bytes]Razzi (talk | contribs) (Created page with "Trying to install sci https://github.com/babashka/sci?tab=readme-ov-file to use for a clojure-esque based editor ... oh yeah to get https://github.com/babashka/babashka?tab=readme-ov-file Anyways https://clojars.org/org.babashka/sci Gives [org.babashka/sci "0.8.43"] It'd be nice to have a way to "pip install" this kind of dependency. Though I must remember that this is a clojure dependency, not a babashka one etc (so it wouldn't work quite like this in my editor) S...")
  • 00:13, 30 August 2024Blog: 2024-08-30 (hist | edit) ‎[4,460 bytes]Razzi (talk | contribs) (Created page with "Whoops cleaned some stuff by mistake! Gone are some junks that I forgot about <pre> editor-testing $ git clean -xdn Would remove .pytest_cache/ Would remove .yarn/ Would remove __pycache__/ Would remove constant.py Would remove headless_emacs.py Would remove poetry.lock Would remove pyproject.toml Would remove test_open_emacs_and_quit.py Would remove vim_experiment.py editor-testing $ git clean -fxd Removing .pytest_cache/ Removing .yarn/ Removing __pycache__/ Removing...")
  • 13:44, 29 August 2024Blog: 2024-08-29 (hist | edit) ‎[216 bytes]Razzi (talk | contribs) (Created page with "Starting to put together a specification for testing editors: https://git.sr.ht/~razzi/simple-editor This actually looks a really useful start of an editor: https://github.com/babashka/nbb?tab=readme-ov-file#reagent")
  • 16:04, 27 August 2024Blog: 2024-08-27 (hist | edit) ‎[3,779 bytes]Razzi (talk | contribs) (Created page with "Got some interest in downloading planck clojurescript repl, as a more approachable runtime for a command line lisp editor that's not emacs. Anyways... elisp isn't that bad as a language really. But I got stuck on installing planck from source, I guess cause I don't have a `jar` command. Here's what I tried to do to make it not have all these weird errors ``` planck $ git diff diff --git a/script/get-closure-library b/script/get-closure-library index aeedb61..b745168 10...")