Viewing profile — createuniverses
createuniverses
HN member- Joined
- Thu, Apr 17, 2008, 4:56 AM UTC
- HN karma
- 73
- Public activity
- 16 items
- HN profile
- View on Hacker News ↗
About createuniverses
No profile information was provided.
Recent public activity
-
comment
Comment #11101123
Live coding environments typically include a text editor. Sometimes as in the case of Praxis, its possible to change the behaviour of the text editor while you use it. https://gith…
-
comment
Comment #10289731
I love live coding environments, and yours looks really fun. Being so easy to embed, Lua is perfect for basing a live coding environment on. Here is one I made that is also based o…
-
comment
Comment #9768273
Why "reproduce"? Don't produce the next generation of slaves. On balance, life is misery. Leave the unborn in peace.
-
comment
Comment #8515211
I certainly had Smalltalk and Lisp Machine environments in mind when I made this, the central idea being to be able to query and manipulate every part of the system while its runni…
-
comment
Comment #8515159
I've wrangled a crazy way to have your cake and eat it too. do local state = 0 function render() drawLine(0,5,0, 0,5,50*math.sin(state)) state = state + math.pi * 0.03 end end To f…
-
comment
Comment #8514762
Thank you! I need to make a video demonstrating the midi recording functionality (its implemented entirely in Lua). I need to keep it short, write a script that is succinct and to …
-
comment
Comment #8514699
Thank you for that succinct and immediately useful example of let-over-lambda!
-
comment
Comment #8514696
The whole thing is a repl with a graphical and audio engine at your disposal to use as you see fit. As well as writing your program iteratively in the "socratic" repl style, you ar…
-
comment
Comment #8513912
> Anyone else know of similar live-coding environments for 3D? You might like praxis. Its being actively maintained and the author is happy to answer questions and requests. https:…
-
comment
Comment #8513506
> supporting interaction or encapsulated state I don't know what you mean. Could you give an example of this? What would you like to be able to do?
- story
-
comment
Comment #8414027
Has anyone tried "praxis"? https://www.youtube.com/watch?v=6rB39AXPmQQ https://www.youtube.com/watch?v=1VRtRazMYSA
- comment
-
comment
Comment #4786079
I can't help feeling that this attempt to render a previously excellent course more commercially viable by making it more superficially appealing for students is directly linked to…
-
comment
Comment #4786044
Are you joking? Or perhaps you didn't read the comment. Those programmers CAME FROM communist countries.
-
comment
Comment #842468
If you use an embedded lisp such as ECL or PLT Scheme, you can take advantage of whatever graphics facilities the host offers, and code in lisp with a "live" repl. This project mig…