HackerLangs
トップ新着トレンドコメント過去質問紹介求人

jsd1982

no profile record

投稿

Show HN: Circuit Simulating Amp Plugin

youtube.com
2 ポイント·投稿者 jsd1982·7 か月前·0 コメント

コメント

jsd1982
·18 日前·議論
The Bart, The.
jsd1982
·2 か月前·議論
I think the conclusion section should indicate that they are based entirely on GCC 16's behavior and current implementation. We should avoid generalizing one compiler's behavior and performance. Curious how this same test would behave once clang ships C++26 reflection.
jsd1982
·2 か月前·議論
It should be possible to have the PPU emulation capture all of the final register state per pixel (or scanline if accuracy isn't paramount) and have the GPU render each pixel using only that state, doing the layer blending, color math, and mode 7 calculations as necessary. Based on MVG's video breaking down the draw commands performed it doesn't look like that's how Super ZSNES have implemented their PPU - it seems to render tile by tile for BGs (and OBJ?) and line by line for mode 7. That'll be a bit inaccurate but it's likely necessary to implement some of their visual enhancement tricks.
jsd1982
·4 か月前·議論
Very cool! Checking out the Van Gogh painting in the viewer I can just barely see the depth of the brush strokes. Shame you can't look 90 degrees off axis to see the protrusion effect with the bulky outer frame in the way.
jsd1982
·4 か月前·議論
Very cool idea, but unfortunately the browser doesn't allow users to select which channel of their audio interface to use as input. So unless you're plugging your guitar into input 1 this doesn't work out. I have my microphone in input 1 and my guitar in input 2.
jsd1982
·9 か月前·議論
Reminds me of John Petrucci's Rock Discipline instructional video where he outlines exactly this technique on how to build up speed.
jsd1982
·9 か月前·議論
I love this idea! Just wanted to send a note of encouragement. Keep at it!
jsd1982
·9 か月前·議論
A real-time circuit-level simulation of the MESA Boogie Mark IIC+ guitar preamplifier.

https://www.youtube.com/watch?v=xEy34cuOPaY
jsd1982
·10 か月前·議論
Are we assuming that "testing" is limited to only exercising the single-threaded behavior of a function? I'm curious how others approach effective testing of multi-threaded behavior.
jsd1982
·10 か月前·議論
Yes, parameterization was implied.
jsd1982
·10 か月前·議論
Sanitization of data is such a strange security practice to me. It feels like any sort of vulnerability sensitive to data sanitization just boils down to a failure to properly encode or escape data into a target language that is susceptible to injection attacks e.g. SQL, HTML, javascript. Is there a real-world scenario where data sanitization is required where proper data encoding/escaping is not the better solution?
jsd1982
·10 か月前·議論
I think cognitive load has a lot more to do with the paradigm that the code is written in than any particular type of author's contribution to the code. For instance, the object-oriented paradigm by design increases cognitive load by encouraging breaking up otherwise straightforward logic into multiple interfaces, classes, and methods.
jsd1982
·11 か月前·議論
What's the most cost-effective NAS hardware/software combo lately?
jsd1982
·6 年前·議論
To solve the FF page wrapping problem, I wonder if it would work to double-map each 6502 page to x64 host pages side by side. I assume the word read at FF would straddle the two mapped pages effectively reading the second byte at 00. You'd have to map to host page boundaries of course and probably offset all reads/writes to the end of the host page at $3F00.