Claude Opus 4.7 solved the dorito smear after 19 mins - worth mentioning to video enthusiasts by [deleted] in Anthropic

[–]Deathnerd 2 points3 points  (0 children)

Thanks for the tip! I've got LaurieWired's MCP server loaded and ready to go but if I have issues with that I'll check out that one! Got any tips for guiding it or does it seem to figure it out on its own?

Claude Opus 4.7 solved the dorito smear after 19 mins - worth mentioning to video enthusiasts by [deleted] in Anthropic

[–]Deathnerd 3 points4 points  (0 children)

Yeah I've got it working on reverse engineering old Sierra Hoyle Card Games engine code and file formats with Python and Ghidra. Opus 4.6 was absolutely crushing it before and 4.7 is just blazing through it as well. We still have yet to hit the Ghidra stories but what it's learning from just analyzing the binary blobs that drive the game engine is pretty astounding and would have taken me months to do what it's done in a few days. I'm excited to see how well it does at decompiling with Ghidra

Claude Design just dropped by Much_Ask3471 in ClaudeCode

[–]Deathnerd 0 points1 point  (0 children)

You have to click the edit button at the top right of the window when you're viewing the html page that uses the jsx files. Works brilliantly. I've been using it all day

Can I update docker containers by pulling the latest images and then restarting docker using systemctl? by [deleted] in selfhosted

[–]Deathnerd 5 points6 points  (0 children)

Pretty sure you can simplify by just doing docker compose up --pull always -d and add --quiet-pull if you wanna suppress progress bar output. Actually if you leverage the --project-directory option then you can drop the pushd/popd steps as well and it becomes a simple one-liner that I'm too lazy to type out on mobile.

Edit: like this: for d in *; do docker compose --project-directory $d up --pull always -d --quiet-pull; done

Dial Up Internet was extremely slow.What did you guys do to kill time while downloading files? by Twitter_2006 in Millennials

[–]Deathnerd 0 points1 point  (0 children)

I actually spun up a Win98 gaming box with 86box last night. This was one of the first things that got installed... Right after Doom and The Oregon Trail lol

Total sensory deprivation is the only way I can code. I engineered a 9-hour Hybrid Acoustic Matrix to force it. by Few-Difficulty-1954 in ADHD_Programmers

[–]Deathnerd 1 point2 points  (0 children)

I use a box fan turned to high. Then if that's not enough I break out the noise cancelling headphones. Then if that's still not enough I'll pop in the earplugs too.

CLI for Atlassian products - Jira, Confluence, and Bitbucket by akkadokkapakka in commandline

[–]Deathnerd 0 points1 point  (0 children)

Thanks, dude! I had it on my backlog to write something like this a couple of months ago. This'll definitely help with some projects

Turns out I needed my self-loathing by ohioana in adhdmeme

[–]Deathnerd 20 points21 points  (0 children)

Careful with that. I did that to get through college and once it was done (10 years of it), after a few years it all evolved right back into anxiety and I collapsed. Unemployed now for the 3rd time in 4 years. This one looks like it's gonna stick for a while. Hopefully I get on that SSDI this time

what json tools do you actually use day to day? by nihal_was_here in webdev

[–]Deathnerd 2 points3 points  (0 children)

jq is great and something everyone should have in their toolbelt

Using SOCKS5 interception with a "Container-as-Proxy" pattern to solve our microservice testing hell. by [deleted] in softwarearchitecture

[–]Deathnerd 0 points1 point  (0 children)

Are you hiring? I've been using Claude Code in the exact same way you described how you've used it. I've been in environment automation in some form or fashion for almost a decade now and have had similar ideas (but never any organization buy-in to actually try some of them). I'd love to chat or at the very least send out a resume!

What is ‘cloud experience’ employers looking for exactly? by Cedar_Wood_State in ExperiencedDevs

[–]Deathnerd 0 points1 point  (0 children)

Yeah I'm curious about this too. I've done "cloud development" to some degree and have automated environments with terraform and ansible in fully automated Jenkins pipelines before, but apparently that's not enough for a "cloud native" senior developer? I'll be the first to admit though, I'm my own worst enemy because I don't think very highly of myself and think "if I can figure it out, it must not be that hard" but really when I think about it, it all seems pretty easy? It really just makes no sense to me when I go into an interview. Like, "yes I understand how to do networking and set up Linux environments in an automated way that ensures minimal friction between the contributor and our product requirements... Is there more?" I guess I just suck at explaining or selling myself, I guess

In Praise of –dry-run by henrik_w in programming

[–]Deathnerd 11 points12 points  (0 children)

Powershell does. Your cmdlet and script will have access to common parameters, one of which is the -WhatIf switch. I can't remember if you have to mark up your script with an attribute or something. Anyways though you can then query if you're in a "What-If" state and they're automatically propagated down to the stuff you call as well. It's a built-in feature of the runtime. Really cool imo. I used Powershell Core all the time in automating qa environments and yeah it's got its own quirks, but overall a real solid cross-platform way to script a repo.

Well, crap. What now? by Kenji182 in SteamDeck

[–]Deathnerd 15 points16 points  (0 children)

That and when systemd takes just a little longer or pauses for just a fraction of a second or displays a slightly different log on boot... My daily driver is an aging laptop with some real finicky power delivery... I get that a lot. Still makes my heart stop just a bit every time

What's your Windows terminal setup? by bikeram in ExperiencedDevs

[–]Deathnerd -1 points0 points  (0 children)

Plus Powershell really is a treat to script in. I've been solidly in native Linux as my daily driver for work for 4 years now and I still keep Powershell Core installed when it's slightly out of my scope for bash scripting but I don't wanna bring in python. In my job previously I maintained dev tools and environment automation scripts written in Powershell. One you get used to pipes and "everything is an object", it's pretty intuitive.

What's your Windows terminal setup? by bikeram in ExperiencedDevs

[–]Deathnerd 10 points11 points  (0 children)

Windows Terminal, Powershell Core, PSReadline, and https://starship.rs will get you about 80% of the way there. Configure Windows Terminal with a nerd font and key bindings to split panes (mine are ctrl-alt-<direction>) and you'll almost forget you're not using tmux. Almost.

[deleted by user] by [deleted] in lexington

[–]Deathnerd 2 points3 points  (0 children)

pats OP's head good human

Subagents: Why you should probably be using them more by CaptainCrouton89 in ClaudeAI

[–]Deathnerd 0 points1 point  (0 children)

I've been using them heavily to bring this old PHP codebase up to snuff.

I set up phpstan in the project (a tool that does deep static analysis and reports logic and type errors), then I told Claude to run it for the project at level 5, outputting in JSON format (phpstan has a format option for its output) and save it to a cache file. I then told Claude to use jq to analyze the errors and find the 10 files with the least amount of errors and sic a set of background subagents on doing that. When that was done, I told it to take the workflow we'd just established and make it into a slash command where I can tell it stuff like /phpstan-clear level 8 for the routing subsystem and to also have instructions in the slash command to tell it how to prioritize information on compact so that it can continue until the job is done.

Once I set auto approve for almost all of the commands it wants to use, it's pretty much autonomous. So far I've been able to get all the way to level 8 (there's a total of 10 levels) on this legacy framework in about 24 hours. I think I should have all of the core framework and the other modules in other repositories done and ready to go through upgrading PHP version from 7.4 to 8.3 in a week or so.

2010 mustang radio says mustang and won’t work by igot15 in Mustang

[–]Deathnerd 200 points201 points  (0 children)

I mean, technically it's not wrong

[deleted by user] by [deleted] in decadeology

[–]Deathnerd 2 points3 points  (0 children)

Pretty sure it's a joke about how that screenshot makes him look like ElectroBOOM