• 1 Post
  • 79 Comments
Joined 1 year ago
cake
Cake day: June 15th, 2023

help-circle
  • RAID is more likely to fail than a single disk. You have the chance of single-disk failure, multiplied by the number of disks, plus the chance of controller failure.

    RAID 1 and RAID 5 protect against that by sharing data across multiple disks, so you can re-create a failed drive, but failure of the controller may be unrecoverable, depending on availability of new, exact-same controller. With failure of 1 disk in RAID 1, you should be able to use the array ‘degraded,’ as long as your controller still works. Depending on how the controller works, that disk may or may not be recognizable to another system without the controller.

    RAID 1 disks are not just 2 copies of normal disks. Example: I use software RAID 1, and if I take one of the drives to another system, that system recognizes it as a RAID disk and creates a single-disk, degraded RAID array with it. I can mount the array, but if I try to mount the single disk directly, I get filesystem errors.


  • Treasuries are nice because they’re convenient and low buy-in, but their yields are crap, sometimes a little above inflation, sometimes below. TIPS are a decent way to hedge the inflation risk, but (IMO) it’s still really for people who are more worried about losing their savings than living off it. (i.e.: if you have, say, $1e8, you can live pretty comfortably off $1e6, even $1e5 in a lean year, so your rate of return doesn’t really matter)

    For me, personally, the limited bond exposure I have is all corporate and mostly junk, bought through my broker in the secondary market, with maturity 10-20 years out. Until fairly recently, junk bonds were the only way to get yields above 4%, and that’s kind of my mental benchmark for gaining relative to inflation. One downside of corporate bonds is they generally have a $10k minimum.


  • That drop was when the Fed was raising interest rates to stall inflation. Interest rates up, bond values down. But the drop in VTINX was only 20% over all of 2022, where OP is showing 50% in maybe the first quarter.

    Incidentally, the sensitivity to interest rates is why I don’t like bond funds. If you buy actual bonds, you get the face value back at maturity, where bond fund are forced to mark them all to current market prices to calculate NAV. IMO, this negates the main “safe” factor in holding bonds.



  • No. If you’ve been saving for 30 years, then you’ll have 30 years of accumulated 10±20% annual gains, which should be something like 16x your start, but could be 100x if you’re lucky or 1x if you’re not. Regardless, an historic crash on retirement day may take that down to 12x your start, which is still pretty good, and will be fixed by the following couple years.





  • University is ok if you’re starting at zero and don’t even know what’s out there. It’s for exposing students to a a breadth of topics and some rationale of why things are as they are, but not necessarily for plugging them into a production environment.

    Nothing beats having your own real world project, either for motivation or exposure to cutting edge methods. Universities have tried to replicate that with things like ‘problem based learning,’ and they probably hope that students will be inspired by one or two of the classes to start their own out-of-class project, but school and work are fundamentally different ways of learning with fundamentally different goals.



  • The politicians made sure to exempt themselves from all the consumer protection, anti-fraud laws. They live in bubbles where their own political agendas are too important for limitations.

    But I suspect, because my brand new phone number gets a lot of political spam, that 1) a lot of people can’t live with it and change their numbers to escape or 2) a lot of it is recycled burner-phones, previously used to launder donations to fit legal donation limits. But it’s given me a personal rule to never make a donation from my real phone or allow my real phone to become associated with any political process.


  • I came to MySQL and Apache because they were the backend for other services I wanted to start,. Later, when I wanted to build my own, I already had Apache running, so why would I add nginx? I did let other services add sqlite, but have (in most cases) figured out how to switch those to MySQL.

    All of that has been running for 20 years. I’m sure it would be good for my dementia-risk to learn how to start ngnix and migrate all those services, but it’s far more attractive not to mess with what works.



  • pihole, in front of my own DNS, because it’s easier to have them to domain filtering.

    mythtv/kodi, because I’d rather buy DVDs than stream; rather stream than pirate; but still like to watch the local news.

    LAMP stack, because I like watching some local sensor data, including fitness equipment, and it’s a convenient place to keep recipes and links to things I buy regularly but rarely (like furnace filters).

    Homeassistant, because they already have interfaces to some sensors that I didn’t want to sort out, and it’s useful to have some lights on timers.

    I also host, internally, a fake version of quicken.com, because it lets me update stock quotes in Quicken2012 and has saved me having to upgrade or learn a new platform.




  • It’s even easier with digital broadcast. I finally had to give up my PCI tuner, because who puts PCI slots on a modern mobo? $25 will get you a USB TV tuner capable of getting all the OTA and cable channels. I used to get, like, 7 analog OTA channels - ABC, CBS, NBC, PBS, and a regional independent - but I get 30 digital. All the majors have added 3-5 channels of SD reruns or other filler. I mean, it’s mostly shit, and the only thing I actually watch is local news, but for a one-time $25 cost, it’s a great supplement to streaming.

    My biggest problem with MythTV is it doesn’t interface with streaming, so I use Kodi on the frontend to source from mythtv, netflix, hbo, or whatever.



  • This is an old post about ipv6, but it inspired me to go looking, and I wanted to share my findings.

    1. for globally routeable IPv6 addresses, probably do let it happen automatically, either direct from the ISP, through the router by prefix delegation, or your own implementation of prefix delegation.

    2. for devices you want to access, internally, create a ULA within the fd00::/8 space, and assign numbers (and names) however you like. Translate all your 192.168.x.y IPv4 addresses to fd00::x:y and go. Only limitation is you won’t be able to access those devices, using the ULA, from outside your network.

    3. you can do both of these on the same subnet, and devices pick up both addresses then use the global address for internet and the ULA for intranet.

    That means you can do dhcp, dynamic DNS, private domains, and all the stuff you know about IPv4 for IPv6, and still do all the stateless autoconfig that “they” want. Some devices, like my android phone, never played well with dhcpd6, but immediately preferred IPv6 as soon as I let them SLAAC.

    If the prefix assigned by the ISP doesn’t change, then device SLAAC address shouldn’t change, either, because they’re calculated from MAC, so if you need to access some internal devices from the internet, you have to mark that address, but (IMO) marking the full address is not that much worse than marking the prefix and remembering the device number.