HackerTrans
TopNewTrendsCommentsPastAskShowJobs

m4ck_

205 karmajoined vor 7 Monaten

comments

m4ck_
·vor 7 Tagen·discuss
Well despite all that regulation, they're an economic powerhouse, they must be doing something right. CA is far from perfect but at least they occasionally aspire to do something for the benefit of their citizens - not something I can say for my 'least regulated' state that mostly just saps money from the federal government.
m4ck_
·vor 7 Tagen·discuss
I'm pretty sure food producers are the ones putting the "sell by" labels on stuff, with the hope that people will needlessly throw away food and buy more because of that label.
m4ck_
·vor 23 Tagen·discuss
To the business? logistics, facilities (think power, HVAC, refrigeration systems), security, HR, finance, accounting, legal, purchasing, sales, marketing, etc. Probably with multiple environments (dev/qa/prod/DR) for anything important.
m4ck_
·vor 23 Tagen·discuss
If companies would allow people to spread out more we could probably improve that situation some, but they want us all concentrated in 10-20 major metro areas. There's cheap housing in this country, its just in places where the job market is extremely limited.
m4ck_
·letzten Monat·discuss
You can definitely get a decent jet in that budget, there's a popular tech youtuber who recently bought one for considerably less. I'm pretty sure you could get like 6 houses in mountain view and still have money left over for a jet.
m4ck_
·vor 2 Monaten·discuss
If i run that (or similar sites) multiple times, shouldn't I like.. not be unique each time?
m4ck_
·vor 2 Monaten·discuss
In my experience, get there as early as possible and it's not bad. But that's the standard for these membership stores, although Sam's Club has the edge being able to use their app to scan your items and pay without having to stop anywhere (other than the line to get out.)

Publix' pricing is obscene though.
m4ck_
·vor 2 Monaten·discuss
Ram 1500 eTorque is one.
m4ck_
·vor 2 Monaten·discuss
But the claude/cursor/kiro/codex said my code was production ready, enterprise grade, and PCI/alphabet soup compliant.
m4ck_
·vor 2 Monaten·discuss
What Edison motors is trying to do with their conversion kits is the solution for us privacy-aware folks, I think. If they, or someone, manage to bring hybrid/electric conversion kits to the market, we'll have an option that's slightly better than hoping parts stay available for older cars.
m4ck_
·vor 3 Monaten·discuss
I felt the same way, they used to taste awful to me, now I only notice a slight difference between Dr Pepper zero and regular. Maybe I just got older and my taste buds degraded?
m4ck_
·vor 3 Monaten·discuss
It's probably not great if you're drinking dozens of cans of sugar free soda every day.

All I really know is don't take health advice from influencers, especially if they're selling something, and don't take health advice from people who support deregulation (less industry transparency, oversight, and consequences won't make food or anything safer.)
m4ck_
·vor 3 Monaten·discuss
And if you need a cluster, Hashicorp Nomad seems like a more reasonable option than full blown kubernetes. I've never actually used it in prod, only a lab, but I enjoyed it.
m4ck_
·vor 3 Monaten·discuss
I agree, but the law is pretty vague. Root is a user on an operating system on a general purpose computer after all.
m4ck_
·vor 3 Monaten·discuss
I look forward to having to age verify the dbus and chrony and root accounts on every linux-based "smart" device in the future. That should be fun.

Will my children be able to use my smart oven/thermostat after I verify I'm 18+ on those devices?

I also wonder what verification will look like for containers and and VMs that might have a short life. Maybe that's how we keep IT jobs for a little while longer? Human age verification on every local account every time a container or VM is spun up.
m4ck_
·vor 3 Monaten·discuss
And it's seemingly the only large platform where you have some control over the 'algorithm' - meaning if I tell it I'm not interested in something, or not to show me content from a creator, it actually works. On Facebook or Instagram the "not interested" button doesn't seem to do anything and it takes several clicks and a wait to block an account.
m4ck_
·vor 3 Monaten·discuss
It's 2026, you should not be using command prompt (or batch.) In powershell ls is a built in alias to get-childitem and has been for years, and in recent versions of windows you'd have to go out of your way to get a command prompt (you would have to open a powershell terminal and then run cmd.)
m4ck_
·vor 3 Monaten·discuss
You could just one line it too:

  Get-Item "C:\some path\having spaces.txt" | select DirectoryName, Name, Basename
m4ck_
·vor 3 Monaten·discuss
rm only removes files and directories right? Remove-Item can be used for any powershell provider, such as environment variables, active directory, certificates, and registry. And of course you can implement your own providers that utilize *-item cmdlets. I don't know that i'd call either superior, or that i'd even say that they're equivalent. rm is a utility for removing files, remove-item is a little more than that.
m4ck_
·vor 3 Monaten·discuss
The verbosity especially in cmdlet names kind of sucks but having everything be an object with properties and methods, vs having to chop up and parse and pipe text is quite nice. I haven't had the pleasure of being a linux admin professionally so I don't have much experience on the linux side.. but just like a really simple example of getting in interface's IP address.. Grabbing a property from get-netipaddress is easier/faster/simpler to me than chopping up text output from ifconfig.

This applies to errors of course, there are a number of properties for an error that you can look at (and use in scripts to handle errors) if the full output is too much or unclear.