doersino | 1 year ago | on: Ask HN: What are you working on (September 2024)?
doersino's comments
doersino | 2 years ago | on: You Are Atlas, You Hold Up the Sky
doersino | 2 years ago | on: Gping – ping, but with a graph
doersino | 2 years ago | on: Dropbox telemetry can't be disabled
doersino | 3 years ago | on: Ask HN: What have you created that deserves a second chance on HN?
doersino | 3 years ago | on: Marp: Markdown Presentation Ecosystem
It's perhaps unique in that it doesn't require any sort of build process – inheriting its approach from Markdeep (https://casual-effects.com/markdeep/), it's just an HTML file (containing your Markdown content and a few <script> tags at the bottom) and a bit of JS/CSS.
doersino | 3 years ago | on: Ffmpeg Buddy
doersino | 4 years ago | on: Incident with GitHub Actions, API requests, Codespaces, Git operations, Issues
doersino | 4 years ago | on: Algorithmic Botany
doersino | 4 years ago | on: Show HN: UJI – an experimental and minimalist generative art creation tool
That's precisely what I was going for (plus, it's impossible to find descriptive icons for most of these options, and a wall of text below each option might lead to excessive scroll wheel wear).
> I’m very surprised to not see it on the front page! Have you posted this to /r/internetisbeautiful?
Getting to the front page is a coin flip – you win some, you lose some. But perhaps I'll submit it to the second chance pool [1]. And no, I've mostly weaned myself off Reddit, but you're right, that sounds like a good place to gather some additional feedback. I've just posted UJI there [2].
> Honestly this is wonderful and I hope to use it to introduce some creative coding concepts when teaching
I'm so glad to hear this! :)
[1]: https://news.ycombinator.com/item?id=26998309
[2]: https://www.reddit.com/r/InternetIsBeautiful/comments/nk7gf7...
doersino | 4 years ago | on: Show HN: UJI – an experimental and minimalist generative art creation tool
The tiled buttons at the top are presets – use them as jumping-off points, or click your way through them to see what's possible before starting afresh by yourself. The sliders control all aspects of the generated images. Hover over the icons next to them (which feature glyphs from Imperial Aramaic and Phoenician) for descriptions of what each slider does.
Feel free to leave links to pieces you've made in this thread – I'd love to see what you come up with.
doersino | 4 years ago | on: Ask HN: What are some tools / libraries you built yourself?
Also: UnicodeMathML, a more-or-less-standard-compliant UnicodeMath (a linear encoding of mathematics that leverages Unicode for brevity and plain-text readability that's built into MS Office) to MathML translator – it's the only reasonably feature-complete, web-based UnicodeMath-to-anything compiler I'm aware of: https://github.com/doersino/UnicodeMathML
And various tools around Morgan McGuire's web-based Markdown renderer Markdeep – for creating presentations (see https://github.com/doersino/markdeep-slides), undergraduate theses (see https://github.com/doersino/markdeep-thesis), and drawing diagrams (see https://github.com/doersino/markdeep-diagram-drafting-board).
doersino | 4 years ago | on: $1 Unistroke Recognizer (2007)
...which I’ve reimplemented in SQL (yes, SQL) a while ago: https://github.com/doersino/handwriting/blob/master/code/han...
doersino | 4 years ago | on: Show HN: Minimal 3D creative coding tool – control 8×8×8 dots with JavaScript
https://twitter.com/atesgoral/status/1325947885817565185
https://twitter.com/aemkei/status/1325888127102226432
3D LED cubes are also a thing, as another commenter in this thread noted:
doersino | 4 years ago | on: Show HN: Minimal 3D creative coding tool – control 8×8×8 dots with JavaScript
(x==3)?sin(i+t):0
Result: https://doersino.github.io/tixyz/?code=%28x%3D%3D3%29%3Fsin%...Another is multiplying with a boolean expression that's automatically cast to 0 or 1 depending on its value:
sin(i+t)*(x==3)
Result: https://doersino.github.io/tixyz/?code=sin%28i%2Bt%29*%28x%3...doersino | 4 years ago | on: Show HN: Minimal 3D creative coding tool – control 8×8×8 dots with JavaScript
doersino | 4 years ago | on: Show HN: Minimal 3D creative coding tool – control 8×8×8 dots with JavaScript
I don't think "deceptively" is the best word here – there's no money or private data involved, at most a small bit of street cred. The near-identical look was intended to preserve the simplicity of the original. Note that there's a reference to tixy.land in my comment here, in the README.md on GitHub, and in the tweet that's behind the "more info here" link. Anyone looking to do more than just idly play around with this tool will come across one of them.
But I get your point – I'll be adding an unobtrusive link back directly to tixy.land soon!
EDIT: Done.
doersino | 4 years ago | on: Show HN: Minimal 3D creative coding tool – control 8×8×8 dots with JavaScript
doersino | 4 years ago | on: Show HN: Minimal 3D creative coding tool – control 8×8×8 dots with JavaScript
The source code can be found here: https://github.com/doersino/tixyz
Let me be clear: This thing is wholly derivative, merely adding a third dimension to Martin Kleppe's excellent creative code golfing tool tixy [0] (which you should definitely check out if you find yourself liking this 3D variant of it) by mashing it up with David DeSandro's equally-excellent 3D library Zdog [1]. Those two deserve any and all credit.
[0]: https://tixy.land and previously discussed at https://news.ycombinator.com/item?id=24974534
[1]: https://zzz.dog and https://news.ycombinator.com/item?id=20036169
doersino | 4 years ago | on: Show HN: MarkShow – Create Slideshows with Markdown
A while ago, I’ve built something similar on top of the in-browser Markdown-plus-diagrams renderer Markdeep: https://github.com/doersino/markdeep-slides
Aside from things like custom themes and pop-out-able presenter notes, it supports printing to PDF via the browser’s built-in print functionality – perhaps that’s something you could look into. (Maybe you have, but my phone’s browser just doesn’t like it.)
Recently, a fairly detailed one on doing something semi-obscure with directory services on AWS. https://excessivelyadequate.com/posts/sadwsp.html