• 0 Posts
  • 60 Comments
Joined 1 year ago
cake
Cake day: June 21st, 2023

help-circle







  • When it comes to writing code, there is a huge difference between code that works and code that works *well." Lets say you’re tasked with writing a function that takes an array of RGB values and converts them to grayscale. ChatGPT is probably going to give you two nested loops that iterate over the X and Y values, applying a grayscale transformation to each pixel. This will get the job done, but it’s slow, inefficient, and generally not well-suited for production code. An experienced programmer is going to take into account possible edge cases (what if a color is out of the 0-255 bounds), apply SIMD functions and parallel algorithms, factor in memory management (do we need a new array or can we write back to the input array), etc.

    ChatGPT is great for experienced programmers to get new ideas; I use it as a modern version of “rubber ducky” debugging. The problem is that corporations think that LLMs can replace experienced programmers, and that’s just not true. Sure, ChatGPT can produce code that “works,” but it will fail at edge cases and will generally be inefficient and slow.


  • I can’t find a decent screen protector for my Galaxy S23, no matter how I try, and it’s all due to the damned in-display fingerprint reader. Any adhesive-style screen protector has an open area for the fingerprint reader, and it’s either a different material or a different thickness; they all look like shit. I’ve tried the screen protectors that use a UV-cured adhesive, and they’re messy, difficult to apply properly, and generally a pain in the ass.

    I’ve relegated myself to not using a screen protector at all, but considering my pocket lint scratches my screen, it sucks.


  • Social media companies, adult websites, whatever, can try to find ways to block children from accessing their content, but kids will always find a way around it.

    It’s the parents’ responsibility to control their children. I’ve said 1000 times, children don’t need access to smartphones and tablets. A desktop PC or laptop with strict parental controls is adequate enough for school work, learning about technology, and some basic entertainment.

    When a child is old enough to work and pay for a smartphone themselves, then they’re old enough to have a smartphone. A prepaid flip phone with basic voice and SMS is more than enough for a 15-year-old.






  • The problem isn’t that Harris is being held to a higher standard. The problem is that Americans think of elections the same way they think of a sporting match. It’s “my team is going to win!” not “I’m going to vote for the candidate that is best aligned with my beliefs.” A huge number of the people who are voting Republican are doing so because the Republican party is their “team,” and damn it, their team is going to win even if it kills them.

    Many years ago, I was discussing politics with a coworker (always a bad idea, but whatever). It went something like this:

    “So, you don’t think the less-fortunate should be able to afford medical care?” “No, of course not, everyone should be able to see a doctor.”

    “You don’t think gay people should be allowed to marry?” “I’m not gay, but they can do whatever makes them happy.”

    “You support the war in Iraq, then?” “I support our troops, but the war is kind of a waste.”

    “We definitely should legalize weed, right?” “Um, I’d smoke it if I didn’t get drug tested.”

    “So why are you voting Republican, then?” “My family is Republican; we always do.”



  • I can’t speak to the AI voice generation part of this, but you might be interested in the Domesday Duplicator for digitizing your audio, especially if some or it is slightly degraded.

    https://github.com/harrypm/DomesdayDuplicator

    The project was originally designed for laserdisc, but it’s been expanded to support VHS and cassette tape. Traditionally, you would play your tape on a cassette player, then the built in analog circuitry would convert the magnetic signals into audio, amplify them, and feed them to a sound card on your PC, which then converts the analog signal to a digital audio stream.

    With the Domesdsy Duplicator, you record the raw magnetic signal from the read head and directly digitize it into a bitstream that you can then process as needed. For DIY archiving from an analog source, it’s one of the best options for signal fidelity, and it will give you the truest representation of what’s actually on the tape.