HackerTrans
TopNewTrendsCommentsPastAskShowJobs

jsd1982

no profile record

Submissions

Show HN: Circuit Simulating Amp Plugin

youtube.com
2 points·by jsd1982·7개월 전·0 comments

comments

jsd1982
·18일 전·discuss
The Bart, The.
jsd1982
·2개월 전·discuss
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개월 전·discuss
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개월 전·discuss
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개월 전·discuss
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개월 전·discuss
Reminds me of John Petrucci's Rock Discipline instructional video where he outlines exactly this technique on how to build up speed.
jsd1982
·9개월 전·discuss
I love this idea! Just wanted to send a note of encouragement. Keep at it!
jsd1982
·9개월 전·discuss
A real-time circuit-level simulation of the MESA Boogie Mark IIC+ guitar preamplifier.

https://www.youtube.com/watch?v=xEy34cuOPaY
jsd1982
·10개월 전·discuss
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개월 전·discuss
Yes, parameterization was implied.
jsd1982
·10개월 전·discuss
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개월 전·discuss
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개월 전·discuss
What's the most cost-effective NAS hardware/software combo lately?
jsd1982
·6년 전·discuss
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.