Primes mapped to alpha values.
a 2
b 3
c 5
d 7
e 11
f 13
Primes mapped to alpha values.
a 2
b 3
c 5
d 7
e 11
f 13
| # Quick dungeon | |
| import random | |
| import itertools | |
| import math | |
| DIR_VEC = { | |
| "n": (0, 1, 0), | |
| "s": (0, -1, 0), | |
| "e": (1, 0, 0), |
https://github.com/CruiserOne/Daedalus
http://www.astrolog.org/labyrnth/daedalus.htm
Daedalus is super powerful. It has all sorts of neat features. If you do file open, you can open one of many ds files
$ ls -1 *.ds
Start with an image from here
https://www.linuxvmimages.com/images/rockylinux-8/ (MINIMAL INSTALLATION)
Or get VirtualBox started with an ISO from here:
https://rockylinux.org/download (minimal ISO)
Install it with something like:
Coding with agents and subagents has some new interesting articles on it...
A lot of them point at markdown-driven Claude Code setups. In this one the author referred to the Ralph Wiggum coding agent
You set up PROMPT.md with this
0a. read everything in specs/
0b. review the files in src/
1. pick the SINGLE highest priority item from @IMPLEMENTATION_PLAN.md and implement it using up to 50 subagents
https://www.youtube.com/watch?v=Ln1ZVCLmEng
For me the issue was an obstruction on the fan.
The back vent of the oven reveals what looks like a stationary grate a few inches below the outer grate over the fan.
A kernel of popped popcorn had fallen in.
Years ago I wrote up how to make 3 points into a circle, probably for a CAD program or similar.
https://stackoverflow.com/a/26903599/999943
https://github.com/peteristhegreat/ThreePointsCircle
Then I was working on a 4 bar mechanism, and I wanted a refresher on the kinematics on it.
Link archived for reference. Title reflects original grammar; no endorsement.
Source: https://www.reddit.com/r/ChatGPT/comments/1lkem6i/i_asked_chatgpt_this/
| #!/usr/bin/env bash | |
| set -x | |
| # Update system | |
| sudo apt update && sudo apt upgrade -y | |
| # Install dependencies | |
| sudo apt install -y git curl build-essential | |
| # Install Go (latest stable from golang.org) |