That reads like some bullshit you’d find on r/iamverysmart on Reddit.
Maybe side effects of all the substances he uses to become the Übermensch.
I wrangle code, draw pictures, and write things. You might find some of it here.
That reads like some bullshit you’d find on r/iamverysmart on Reddit.
Maybe side effects of all the substances he uses to become the Übermensch.
I’ve been around the internet a long time, and even back then when throwing slurs at each other and “making fun” of marginalized groups was, if not accepted, at least tolerated because it was considered some poor attempt at humor, I don’t remember ever seeing a rule or passage in any netiquette stating it that explicitly.
It was always “we don’t censor speech but don’t be an asshole” with a giant asterisk about what both censoring and being an asshole meant, but I don’t think I’ve ever seen even the worst places say, “we explicitly allow hate speech, go ahead”.
Holy fucking shitballs.
The worst bit is, the devs who aren’t like this are basically forced to comply anyway. Whenever I justify a delay in some release with that testing/bugfixing takes time, I get slapped with release it anyway, you can patch it later, and although I am lucky to be in a privileged position where I can fight this for some amount of time, every young programmer who comes into a job with a good mindset is not and has to bend over or face shit like negative performance reviews because they’re too slow.
This is so fucking infuriating. I don’t want to release shit software, I want to make sure the stuff I ship works. Back when patching meant you had to ship a physical medium to a non-trivial amount of users, that was how things worked, but apparently only because IT HAD TO and not because it’s good fucking work ethics to have. Now that you can just zero-day patch everything it’s apparently okay to ship unfinished shit and use your customers as beta testers.
I hate this so much and I try to avoid doing this as much as I can professionally. And whenever I can’t I actually feel bad and want to apologize to everyone who has to use that shit release.
Their accountant is probably three GPTs in a trench coat that’s being fed prompts by an unpaid intern or some poor dude in India.
Hey, at least there’s no way the Elon simps can spin that, right?
Never mind.
Yes, I can confirm this is true. Homeopathy is really accepted here and is even covered by most health insurances.
There is even a passage in the pharmaceutical law that specifically excludes homeopathic shit from having to prove its effectiveness (they only have to prove it’s not hurting anyone, and the rules for that are much laxer than for other medicine). It’s absolutely baffling.
Wow, I’ve been saying for years that this extension is shady as fuck. Nice to see that it’s getting some attention.
I didn’t expect it to steal affiliate cookies, but that they let you control which codes it “finds” isn’t even a secret, and I thought people know this. But every time I mentioned this on Reddit I was downvoted and called a liar.
Oh look, YouTube managed to circumvent uBlock for like two hours again before someone figured out a fix, lol.
Seriously, I wanna know how much funds Google allocates to fight ad blockers just to come up with a working solution every odd month that then gets fixed by the uBlock community in hours. There’s no way this is profitable for them or gets a sizable number of uBlock users to buy their subscription.
They have a CLI app though which you can hook up to dmenu or rofi or whatever to get global shortcuts.
https://github.com/firecat53/bitwarden-menu
Their desktop app is a bit shit anyway. I just use the CLI and the Firefox extension and it’s working solid.
I use Posteo for mail and calendar now (they’re not encrypted between users like Proton but you can just hook it up to any mail client and PGP your shit) .Mail is IMAPS, calendar is CalDAV, contacts are CardDAV, etc. Depending on where you fall on the security-convenience sliding scale, that might be an option. I’ve decided that I care more about portability and standards than super-thick encryption which made me choose them over Tuta, because Tuta offers no way to access the mail over IMAP whatsoever, not even an optional bridge like Proton, and that was a total dealbreaker for me. Posteo also claim they’re 100% green energy which is a nice bonus.
For drive I use Filen.io now. They’re relatively new so I can’t make any assumptions about how long they’ll be around but the price is fair and they offer lifetime payments too. Also their Linux client is pretty solid and doesn’t fucking eat my RAM for breakfast. They’re also in the process of adding support for rclone as per a GitHub issue I’m following.
VPN I pretty much don’t use because I’ve never felt I needed it, so no recommendations there from me.
I’m a senior software engineer
Nice, me too, and whenever some tech-brained C-suite bozo tries to mansplain to me why LLMs will make me more efficient, I smile, nod politely, and move on, because at this point I don’t think I can make the case that pasting AI slop into prod is objectively a worse idea than pasting Stack Overflow answers into prod.
At the end of the day, if I want to insert a snippet (which I don’t have to double-check, mind you), auto-format my code, or organize my imports, which are all things I might use ChatGPT for if I didn’t mind all the other baggage that comes along with it, Emacs (or Vim, if you swing that way) does this just fine and has done so for over 20 years.
I empirically work quicker with it than without and the engineers I know who are still avoiding it work noticeably slower.
If LOC/min or a similar metric is used to measure efficiency at your company, I am genuinely sorry.
Let’s be real here: when people hear the word AI or LLM they don’t think of any of the applications of ML that you might slap the label “potentially useful” on (notwithstanding the fact that many of them also are in a all-that-glitters-is-not-gold–kinda situation). The first thing that comes to mind for almost everyone is shitty autoplag like ChatGPT which is also what the author explicitly mentions.
You lost, buddy? Points at the sidebar.
That’s gotta be one of my favorite Zitron piece to date. Ed managed to articulate some points which have been floating around in my mind for a while which I did not have the words to explain. Especially how using any form of out-of-the-box computer these days is just a completely user-hostile pile of steaming horseshit, and why I am anal-retentive about what software gets installed on my devices and how exactly my window manager has to work, &c.
I mean, it’s probably because I’m an obsessive nerd, but the fact that it makes me feel in control when I can rip shit of the source code that bugs me (or put shit in that I miss) is a major factor, too.
Jfc, when I saw the headline I thought this would be a case of the city being too cheap to hire an actual artist and instead use autoplag, but no. And the guy they commissioned isn’t even some tech-brain LARP’ing as an artist, he has 20+ years of experience and a pretty huge portfolio, which somehow makes this worse on so many levels.
[…] placed in environments that incentivize scheming.
If this turns out to be another case of “research” where they told the model exactly what to do beforehand and then go all surprised Pikachu when it does, I’m gonna be shocked …
… because it’s been a while since they’ve tried that.
Yay, day 3 with Regexp magic.
open(FH, '<', $ARGV[0]) or die $!;
my $sum = 0;
my $sum2 = 0;
my $enabled = 1;
while (<FH>) {
while ($_ =~ /(?:mul\((\d{1,3}),(\d{1,3})\)|(do)\(\)|(don\'t)\(\))/g) {
$enabled = 1 if $3;
$enabled = 0 if $4;
$sum += $1 * $2 if $1 && $2;
$sum2 += $1 * $2 if $enabled && $1 && $2;
}
}
close(FH);
print "Part 1: $sum\n";
print "Part 2: $sum2\n";
That conversation reads like from a variation of Mafia/Werewolf where you have to figure out who in your circle of rationalists is secretly e/acc and wants to build the torment nexus.
1 day old and over 1000 kudos. Holy shit.
No beta we die like Brian Thompson.
At some point in the last years, playing games on Linux turned from fiddling three hours with a Wine config to maybe get an hour of 30fps before the next crash into a legit better experience than Windows that works out of the box in most cases. That did sell a lot of people on giving it a try.
I guess it happened when Valve went all-in on Proton. And Microsoft first adding ads into Windows and now forcing their autoplag on everyone helped a bit, too.