@anotherandrew, testing my own mbin instance for a while before committing to moving over permanently.

Embedded systems engineer for hire. Hardware, software, HDL. When not working I’m devoting the rest of my time to my kids and their curiosities. GPG EAF7ACB0

  • 0 Posts
  • 14 Comments
Joined 1 month ago
cake
Cake day: April 29th, 2025

help-circle
  • I think mass media reporting makes it feel that way but it’s been my experience that it’s not true. I think the average American is doing their best to be a good person with what they’ve got. Their electoral system is broken in a similar way to the Canadian one: boiling down to a binary, two party decision that has no basis in reality, and a media that encourages extreme, polarizing positions.

    Even this last election doesn’t (in my mind) reflect the average American. Less than half the eligible population cast their ballots. That’s a separate issue (voter disillusionment) but to me it means that those who did vote aren’t actually representative of what the average American wants or feels.

    This all could be me being completely out of touch with the average American, but I don’t think it is based on my daily in-person interactions with them.


  • This is exactly how I feel. it’s like somewhere after 2000 people just gave up being civil, not just in politics although it feels like that’s where it’s become not just acceptable but almost required to demonize your opponent.

    I’m not quite old enough to really have first hand experience or interest in politics before 1995 or so, but a lot of people seem to mark the time around Reagan as an inflection point.


  • Calling anyone who doesn’t immediately agree with you a nazi doesn’t make it so. That’s just a weak excuse for not having to think critically, which is the very definition of an echo chamber. A left-leaning Canadian is a “left leaning nazi”? Are you calling all Canadians nazis? Did it make you feel brave to do that? Did your internet friends congratulate you on standing up to someone who doesn’t think just like you do? Give your fucking head a shake and go touch grass. What a joke.

    The internet is what you make it to be. I use it for information exchange; it appears you use it to feel safe, safe enough to make ridiculous accusations and pithy remarks to people you not only know nothing about, but don’t care to.

    Like I said: enjoy your echo chamber.




  • I agree: it’s extremely difficult to find what I would call the “middle 80%” since the only people who tend to get all the media attention are the extremes at both ends who are hell bent on maintaining their airtime with ever more insane stunts.

    I don’t understand how people can vote for someone who did such a piss poor job his first time around, but then again my province elected a drug dealer who ran with literally no election platform whatsoever and won, twice. It boggles the mind. Populism is a cancer.


  • Your original comment still shows up for me, but I struggle to understand how weak your positions must be if you simply cannot stand the thought anyone not being in total agreement with you to the point of dismissing complete strangers as being weirdos and telling them to fuck off.

    I mean seriously, how do you function in society with this kind of mentality?

    I’m definitely not conservative in the sense you must think I am, and even at its noisiest there is still only one voice in my head. Do you jump to conspiracy being the only possible explanation for everything you don’t agree with or is it just me which makes you feel this way?




  • Not OP, but interested in right-leaning communities that aren’t pants-on-head insane, just like I am interested in left-leaning communities with a similar constraint. /r/conservative generally isn’t bad (I find they tend to be a LOT more level headed than /r/politics, for example) but things like /r/the_donald or whatever it was called is way too out there for my tastes.



  • It’s funny; I recommend Apple stuff for practically all the same reasons you don’t. The walled garden pisses me off sometimes but when I talk to friends using Android stuff and their gripes it really reinforces that I made the right decision for my family, just as you have for yours. What I find even more amusing is that I design embedded linux devices, all my servers/vms are Linux based and I really enjoy using Linux… just not supporting/using it as a primary UI.

    Not shitting on your choices at all, I know that many people really like/enjoy the Android side as much as I do the Apple side. Chacun à son goût and all that.


  • A couple things I’ve been working on

    First, I spun up a larger VPS to consolidate two smaller ones. This time I dockerized almost everything. Still a docker newb, but karakeep, redmine, mbin, lemmy (still deciding which I want), davical. Asterisk and postfix/dovecot are probably gonna stay on the vps root. I’m using zfs and compression. Interestingly, the postgres database that everything is using seems to get better compression than the mail spool.

    A couple weeks ago I picked up a NetApp 7 bay disk shelf for $30. It uses fibre channel (AT-FCX) controllers and I’ve never used that before. I grabbed a $7 FC HBA (QLE2560), a 2m cable and an m2-to-PCIe adapter meant for an eGPU. The idea is to see if I can’t get the RK3588 board I’m playing with to see it. I did something similar with a $50 Dell 12 drive bay and my old C6100.


  • I’m on the fence.

    I’ve used Perplexity to take a javascript fragment, identify the language it was written in and describe what it’s doing. I then asked it to refactor it into something a human could understand. It nailed both of these, even the variable names were meaningful (the original ones were just single letters). I then asked it to port it to C and use SDL, which it did a pretty good job of.

    I also used it to “untangle” some really gnarly mathy Javascript and port it to C so I could better understand it. That is still a work in progress and I don’t know enough math to know if it’s doing a good job or not, but it’ll give me some ability to work with the codebase.

    I’ve also used it to create some nice helper python scripts like pulling all repositories from a github user account or using YouTube’s API to pull the video title and author data if given a URL. It also wrote the skeleton of some Python scripts which interact with a RESTful API. These kinds of things it excelled at.

    My most recent success was using it to decode DTMF in a .WAV file, then create a new .WAV file using the DTMF start/end times to create cue points to visually show me what it saw and where. This was a mixed bag: I started out with Python, it used FFT (which was the obvious but wrong choice), then I had it implement a Goertzel filter which it did flawlessly. It even ported over to C without any real trouble. Where it utterly failed was with the WAV file creation/cue points. Part of this is because cue points are rather poorly described in any RIFF documentation, the python wrapper for the C wave processing library was incomplete and even then, various audio editors wanting the cue data in different ways, but this didn’t stop the LLM from lying through its damn teeth about not only knowing how to implement it, but assure me that the slop it created functioned as expected.

    I’ve found that it tends to come apart at the seams with longer sessions. When its answers start being nonsensical I sometimes get a bit of benefit from starting over without all the work leading up to that point. LLMs are really good at churning out basic frameworks which aren’t exactly difficult but can be tedious. I then take this skeleton and start hanging the meat on it, occasionally getting help from the LLM but usually that’s the stuff I need to think about and implement. I find that this is where LLMs really struggle, and I waste more time trying to explain what I want to the LLM than if I just wrote it myself.