Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
createuniverses
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
createuniverses
11y ago
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://github.com/createuniverses/praxis I wrote
2.
▲
by
createuniverses
11y ago
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 on Lua, as well as an assortment of other embeddable language
3.
▲
by
createuniverses
11y ago
Why "reproduce"? Don't produce the next generation of slaves. On balance, life is misery. Leave the unborn in peace.
4.
▲
by
createuniverses
12y ago
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 running, to be able to fix faults and continue.
5.
▲
by
createuniverses
12y ago
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 fiddle with the "s
6.
▲
by
createuniverses
12y ago
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 the point, use a decent microphone, keep it short, actually
7.
▲
by
createuniverses
12y ago
Thank you for that succinct and immediately useful example of let-over-lambda!
8.
▲
by
createuniverses
12y ago
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 are free to fluidly create whatever visualizations y
9.
▲
by
createuniverses
12y ago
> 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://github.com/createuniverses/praxis
10.
▲
by
createuniverses
12y ago
> 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?
11.
▲
Praxis – A live coding environment based on Lua, Lisp and Forth
(github.com)
63 points
by
createuniverses
12y ago
|
21 comments
12.
▲
by
createuniverses
12y ago
Has anyone tried "praxis"? https://www.youtube.com/watch?v=6rB39AXPmQQ https://www.youtube.com/watch?v=1VRtRazMYSA
13.
▲
by
createuniverses
14y ago
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 this story: http://news.ycombinator.com/item?id=4785246 I
14.
▲
by
createuniverses
14y ago
Are you joking? Or perhaps you didn't read the comment. Those programmers CAME FROM communist countries.
15.
▲
by
createuniverses
17y ago
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 might get you started: http://createuniverses.blogspot.com/200