Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)S
Posts
0
Comments
108
Joined
3 yr. ago

  • I bought a Honeywell Z-Wave thermostat because I have a more complicated HVAC setup than the typical American home. It was one of the few I could find that was compliant with a home automation protocol that didn't require something that announced its existence to the Internet. It's been solidly reliable, replacing my dead Nest thermostat.

    The thermostat:

    https://www.amazon.com/dp/B07HFL7R44

  • If Google assistant ends up dying this is the way I'll be going with. I've already got HA up, I'm just using stuff that predates my HA setup.

  • No need for this. A Z-Wave or Zigbee thermostat does the same thing.

  • I have three lights that were wired to one switch. With smart bulbs, I can individually turn them on and off or dim them. No "dumb" solution exists for homes that were wired in a stupid way. This isn't a niche application, it's a common reality.

  • The question becomes, then, if I spend 5 years learning and mastering C++ versus rust, which one is going to help me produce a better product in the end?

  • An acquaintance of mine once wrote a finite element method solver entirely in C++ templates.

  • I have a somewhat common word as my last name.

    My first two initials are 'al', which means "to the" in Italian.

    My email is al.lastname@gmail.com

    I get Italian train ticket reservation info about twice a year.

  • I see this repeated all the time and I'm sure there's some truth to it, but A&W burgers are also disgusting and more expensive than their competitors. So there's that.

  • I can program and I have a mechanical engineering degree but I have super niche skills so I can't get hired abroad. I always read that there's a skills shortage in tons of countries but there aren't any actual jobs to take.

  • I made a point to play every game in my library a few years ago. Every game got 2 hours at a minimum (unless they didn't work). Played some real gems like Torment: Tides of Numenera, Tyranny, and World of Goo.

  • A traveling repairman or some other on-the-road professional. Let it go in the hotel overnight and have your print by morning. Or that evening if you set it up in the morning.

  • Mark Rober is what you get when you cross veritasium with Mr beast. Someone who's genuinely smart but they're going to leave all that stuff out because they want the bigger audience

  • You burning out is a process failure. Work normal hours and let shit fail 🤷‍♂️. Say the reduction in hours is "health related" so they can't pry.

  • Go back 1000 years before Europe makes contact with the Americas. Infect everyone and let their populations get wiped out, but give time to recover so first contact with Europe doesn't go as poorly. Also give them horses much earlier.

  • If I read this post without any context I would think "this guy is too poor to hire a black prostitute" and not " this guy doesn't have a particle accelerator capable of making a miniature black hole"

  • Forgot about this one. I loved this phone back in the day. Remember when it would say DROID when you booted it up?

  • The LG Env2 would have been the perfect smartphone form factor, change my view.

  • Depends on how you learn, and what the material is. Stuff that worked for me, in no particular order:

    • Write a cheat sheet for exams, even if you can't actually use it in the exam
    • Start homework the day the lecture that covers the material is given in class.
    • Try to explain the subject out loud to someone else (real or imaginary). Anywhere you draw a blank when talking is something you need to refresh on. Repeat this until you get it right.
    • For memorization - heavy topics, build an Anki flashcard deck

    All of these techniques are variations on the fact that people learn by repeated exposure. the closer together the initial repetitions are, the higher the retention.

  • Storage data structures. Database tables are designed for fast read/write. Excel is designed for fast simultaneous parallel computation.

    To get a sense of what this looks like, you can read more about their data structures; Databases typically store data in what's called a "B Tree" and spreadsheets typically store as a format that can be easily converted into a "Directed Acyclic Graph" (although Excel lets you turn off the "acyclic" part if you allow circular references).

    Although, with Excel specifically, there's probably not much difference since it has some database functionality now.