deleted by creator
deleted by creator
It would probably be blank. The literacy rate wasn’t particularly great back then.
Buy a minivan, remove back seats. Add a bed and a battery bank, a small travel fridge and a hob for cooking then start camping at the nearest national parks. Refine my load out and start venturing farther and farther out.
Not even power and water supplies?
Kyle Clark is a Colorado treasure. I watched his show almost every night since 2018 until I moved out of Colorado. He is witty, insightful and just the right amount of sarcastic. I hope he is still on air when I finally go back home
He’s being prosecuted for doing something illegal (allegedly) that wasn’t part of his official duties as President.
It’s all skippable if you want… Just put a large / filesystem on a partition and be on your way. There are good reasons for using it in some cases (see my response now).
I should also point out that some modern filesystems like btrfs and zfs have these capabilities built into the filesystems natively so adding LVM into the mix there wouldn’t add anything and could, in fact, cause headaches.
In practice, you would split a disk up to keep /home separate from/ and probably other parts of the filesystem too like /var/log… this has long been an accepted practice to keep a full disk from bringing something production offline completely and/or complicating the recovery process. Now, you could use partitions but once those are set, it’s hard to rearrange them without dumping all the data and restoring it under the new tables. LVM stands for Logical Volume Manager and puts an abstraction layer between the filesystems and the partitions (or whole disk if you are into that). This means you can add Disks arbitrarily in the future and add parts of those disks to the filesystems as required. This can really minimize or even eliminate downtime when you have a filesystem getting filled up and there’s nothing you can easily remove (like a database).
It’s good to know but with the proliferation of cloud and virtual disks it’s just easier on those systems to leave off LVM and just keep the filesystems on their own virtual disks and grow the disk as required. It is invaluable when running important production systems on bare metal servers even today.
Hope this helps.
Ext4 is the safe bet for a beginner. The real question is with or without LVM. Generally I would say with but that abstraction layer between the filesystem and disk can really be confusing if you’ve never dealt with it before. A total beginner should probably go ext4 without LVM and then play around in a VM with the various options to become informed enough to do something less vanilla.
Why insult Conan like this? ;)
Terminal plus Gnu Screen plus vim makes the BEST IDE /for me/.
As with all tech; it depends. It’s another tool in my toolbox and a useful one at that. Will it replace me in my job? Not anytime soon. However, it will make me more proficient at my job and my 30+ years of experience will keep its bad ideas out of production. If my bosses decide tomorrow that I can be replaced with AI in the current state, they deserve what they have coming. That said, they are willing to pay for additional tooling provided me with multiple AI engines and I can’t be more thrilled. I’d rather give AI a simple task to do the busy work than work with overseas developers that get it wrong time and time again and take a week to iterate while asking how for loops work in Python.
“Has the White House considered the possibility that a terrorist could be in the country right now after crossing the southern border?”
What a bullshit question. The core question is valid, “Has the White House considered the possibility that a terrorist could be in the country right now."
But the rest is a bullshit political talking point, “…after crossing the southern border?”
As if we only have one method for a terrorist to get in. Nevermind the northern border, the shores, air flights, and then the truly scary threat that the terrorists were born here and are citizens. But, screw all that, WhAt AbOUt tHe MeXiCaNs!?
This framing shows that the asker has more interest in building support for a Republican talking point into the coming elections than giving a shit about terrorist threats within our borders (all of them).
Generally, GitHub Copilot helps me type faster. Though sometimes it predicts something I’m don’t expect and I have to slow down and analyze it to see if it seems to know something I don’t. A small percentage of these cases are actually useful but the rest is usually noise. It’s generally useful as long as you don’t blindly trust it.