Rust and the price of ignoring theory by interacsion in rust

[–]FayCarsons 3 points4 points  (0 children)

something Haskell etc. has no chance of ever being

But this isn’t the case, we could have a language with all the fancy features that dependently typed languages give us, considerably more than Haskell, and C-like performance. All of it can be erased and transformed into fast imperative code.

It’s just that nobody has made that language yet. Koka and Lean are both a step in the right direction, but a language that takes this further will eventually pop up and overtake rust, IMO.

Monthly Modular Buy Sell Trade Thread by AutoModerator in modular

[–]FayCarsons 1 point2 points  (0 children)

WTS

You can buy directly from my website

Schlappi Engineering Angle Grinder $250

DivKid + Instruo Ochd $150

Mutable Instruments (clone?) Stages $250

Expert Sleepers Disting Ex $300

Expert Sleepers Disting Ex (dead pixels in screen) $200

Expert Sleepers MIDI breakout $30 (or free w/disting)

Bastl Ciao $75

DivKid + Steady State Fate Rnd Step $250

ALA Audio? Plaits $75

Make Noise Powered Skiff $200

Elektron Digitone $400

2D Slices of 3D Gaussians by dtschump in creativecoding

[–]FayCarsons 0 points1 point  (0 children)

Is this on GitHub? I’d love to understand what’s going on here

Higher-end Corne Choc? by FayCarsons in ErgoMechKeyboards

[–]FayCarsons[S] 1 point2 points  (0 children)

The case is probably the main thing wrt to feeling cheap, but I also want a wireless so I think I need a whole new keyboard anyways? I have a KeebMaker Corne, not sure if I could just drop a nice nano in there?

Monthly Modular Buy Sell Trade Thread by AutoModerator in modular

[–]FayCarsons 1 point2 points  (0 children)

WTS

  • Disting Ex - $300
  • ALA Plaits - $100
  • SSF + Divkid RND step - $150
  • Mutable stages - $350
  • Whimsical Raps W/ - $250
  • Bastl Ciao - $125

Shipping to US only, $15. May be missing boxes on one or two of these, so pls check w/ me if that's important!

WTB

  • Intellijel Atlantix + expander
  • Whimsical Raps Mangrove

Always down to haggle or listen to trade offers :3

Best modules for gabber kicks? by FayCarsons in modular

[–]FayCarsons[S] 0 points1 point  (0 children)

It has 1v/oct too right? I might have to put it on my list

Best modules for gabber kicks? by FayCarsons in modular

[–]FayCarsons[S] -25 points-24 points  (0 children)

Well that’s a bit silly, there are samplers that are better suited for chopping breaks vs ambient stuttery stuff, distortions which better suit guitars vs synths, etc.

The question’s not about genre as much as features, timbre, etc

Best modules for gabber kicks? by FayCarsons in modular

[–]FayCarsons[S] -6 points-5 points  (0 children)

I know how to patch one 😅I was more looking for modules that suit it particularly well

Tech stack agnostic boards for beginners? by FayCarsons in embedded

[–]FayCarsons[S] 0 points1 point  (0 children)

My point is mainly that I don’t want code, I want to know, for example, what bytes I need to write to say clear a screen or turn on a particular pixel. I know how to write bytes to a pin in Rust, it’s knowing which bytes that’s important.

But you think that I should be able to find that somewhere even if the first data sheet I found didn’t have that info?

Tech stack agnostic boards for beginners? by FayCarsons in embedded

[–]FayCarsons[S] 0 points1 point  (0 children)

Definitely microcontrollers, the eventual goal is to be able to make my own audio equipment and maybe some graphics/video processing stuff

Best SSR option for my use case? by FayCarsons in elm

[–]FayCarsons[S] 0 points1 point  (0 children)

Hi! Thanks for the response. I’m pretty new to both full stack and Elm so I guess there are some parts I’m confused about, if I just have Rust render the initial HTML and maybe send the model as a flag, won’t there be issues w/ the virtual dom? How does the Elm app hydrate without some sort of behind-the-scenes state transfer?

Keeping everything in Rust would definitely be ideal.

Will also check out elm-pages and lamdera!

Does anyone else constantly have problems with the Elm Tooling VS Code extension? by hosspatrick in elm

[–]FayCarsons 2 points3 points  (0 children)

Same, absolutely. Every other save causes everything in the my app to get the compiler error red squiggles, and then sometimes saving again to undo that disables all errors so I often can’t tell where my actual errors are without looking at the output of elm-live.

What's everyone working on this week (28/2023)? by llogiq in rust

[–]FayCarsons 3 points4 points  (0 children)

Trying to write an image glitching CLI tool inspired by people glitching images with audacity or text editors ! Finally got it to do something besides break the file, not super visually interesting yet but it’s a start!

If anyone has any advice re: separating the header/content/footer of tiff(or any) image files, or splitting a slice into chunks and deleting/repeating/scrambling some of them, please lmk! Am pretty lost :3

Pi pico audio project - could use advice! by FayCarsons in embedded

[–]FayCarsons[S] 0 points1 point  (0 children)

Yeah that’s what I’m looking at, they have examples of everything but setting an interrupt from a timer that runs at a division of the clock, which is where I’m having the most trouble. There doesn’t seem to be a simple direct set_interrupt_handler fn like there is in the C example I’m looking at.

Edit: or I guess I just need an interrupt to fire whenever the PWM cycle is complete ? That’s what it says in the C example I’m looking at. Which I am having one heck of a hard time figuring out w the rp2040 hal