• 3 Posts
  • 512 Comments
Joined 1 year ago
cake
Cake day: August 9th, 2023

help-circle

  • That can be an advantage. Some of the enterprise-level tech has trickled down to consumer WiFi in recent years, which includes browsing between multiple access points. With several access points with relatively weak signal, you get signal right where you need it without broadcasting up and down the street.









  • My house is relatively new (built 2005), and they pulled cat5 for all the telephone lines and just didn’t hook up the extra pairs of wires. Since nobody uses landlines anymore, I rewired most of the outlets for RJ45.

    Have pulled a few more wires, including fiber to my main office PC (so I can have a very fast connection to my NAS). Once you learn a few techniques and the way your building is laid out, it’s not that hard.






  • A common method of storing dates is the number of seconds since midnight on Jan 1, 1970 (which was somewhat arbitrarily chosen).

    A 32-bit signed integer means it can store numbers between 231 through 231 - 1 (subtracting one comes from zero being effectively a positive number for these purposes). 231 - 1 seconds added to Jan 1, 1970 gets you to Jan 19, 2038.

    The solution is to jump to 64-bit integers, but as with Y2K, there’s a lot of old systems that need to be updated to 64-bit integers (and no, they don’t necessarily have to have 64-bit CPUs to make that work). For the most part, this has been done already. That would put the date out to 292,277,026,596 CE. Which is orders of magnitude past the time for the sun to turn into a red giant.