I don’t know, I’m just a sqwrl.

They/them 🏳️‍⚧️

  • 3 Posts
  • 429 Comments
Joined 2 years ago
cake
Cake day: June 25th, 2024

help-circle
  • You are exactly right. It’s going to require more work. You are going to have to run your own network cables through your house and use commercial hardwired IP cameras and learn to program them and also set up a local DVR to record the footage. You’ll basically have to build what a retail store uses. You’re not going to find what you’re looking for in residential garbage tech. Stick to commerical equipment, because commerical IT is usually not too fond of installing crap that arbitrarily phones home and tend to run way more locked down networks than what you find in a typical home.





  • C++ because I use it for embedded systems, interfaces with and can easily use C code (opening up the ability to use 40+ years of libraries and already written code), and I’m 43 years old and don’t feel like learning an entirely new programming paradigm (I like OOP it makes the most sense to me).

    I like being able to drill down and manage all my own resources like memory, etc. when I need to as well. I’ll use raw pointers with higher level abstractions all day depending on what’s convenient.









  • Imagine your oven or clothes iron turning itself on while you’re not home. Why TF people just accept their computers doing this is beyond me. Either it’s a boiling frog situation, or people simply don’t remember the times us users had complete control over our devices and think things were always this way.

    As an 80s/90s kid, I can tell you they most definitely were not.


  • Yes. That’s a given. As long as it’s in the back end, there isn’t a problem. My concern is if someone out there still isn’t checking it at all. There must be some inept devs out there if SQL injection attacks on the web are still a thing. That’s the kind of thing you’d hear about way back in 2004. Hell I know to defend against it and I don’t even do web development.








  • Lemme tell you something, DO NOT learn BASIC as your first language. As a hobbyist, I avoided C/C++ for 25 years because I just didn’t get pointers and memory manipulation, and messed around with other languages like JS and PHP instead (also BASIC’s GOTO and GOSUB kinda ruined me as a programmer for a few years). But once it finally clicked a couple years ago, I now want to write EVERYTHING in C/C++.

    I think plain C at least should be everybody’s first language. It literally reprograms your brain to think exactly like how a computer internally functions. I never got that with other languages, because they were so far removed from the actual machine.

    Edit: also, after learning some of it, it’s pretty neat when you do stuff like look at parts of the Linux kernel source code and think “wow, I know what’s actually happening here now!”.