- rice ratios: 2 cups white to 3 and 1/8 cups water, for brown, 2 cups brown to 3 cups water
- congee
- tomato or lentil soup
- some day, take a bunch of time off and just crank out black thread tape loop music with synth + gtr, what's there to lose? use the gear before it dies and get some massive release together
- look into amp modeler software
- do greensleeves etc in pure data or supercollider, or modplug, or ultraabox
- try that krautrock 2 chord guitar idea, see mantra by stick men for interesting similar time signature thing
- make an atmospheric mc 202 album like sonno from cortini
- could use pure data or something to generate midi: https://www.discogs.com/release/31033435-Colin-Marston-Solo-Instruments
- title: "landscape of fadedness"
- https://en.wikipedia.org/wiki/Ostrich_guitar / monochord
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <div id="app"> | |
| <button @click="newConversation()"> | |
| New Conversation | |
| </button> | |
| <div v-for="(conversation, index) in conversations" :key="index"> | |
| <h3>Conversation {{ index + 1 }}</h3> | |
| <ul> | |
| <li v-for="message in conversation.messages" :key="message">{{ message }}</li> | |
| </ul> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>HAR Cleaner</title> | |
| <style> | |
| :root { color-scheme: light dark; } | |
| body { margin:0; font-family: system-ui, sans-serif; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en" class="light dark"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>HTML Script Stripper</title> | |
| <style> | |
| :root { color-scheme: light dark; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| x <- list(foo=42, bar=43) | |
| print(x) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| select 54321; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="description" content="Number Analyzer" /> | |
| <meta name="color-scheme" content="dark light" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Number Analyzer</title> | |
| <style> | |
| body { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # see https://stackoverflow.com/questions/72943585/how-to-draw-n-pointed-stars-using-turtle#comment140920249_72943585 | |
| import math | |
| from turtle import Screen, Turtle | |
| def first_coprime(n): | |
| for k in range(2, n): | |
| if math.gcd(n, k) == 1: | |
| return k |
NewerOlder