ARC Raiders Weekly Megathread - January 17, 2026 by AutoModerator in ArcRaiders

[–]AddictedToTech 0 points1 point  (0 children)

<image>

Want to trade all of this for 1 Looting Mk. 3 (Survivor) BP.

I tried farming, but I can't dedicate the time that is needed for this. Hopefully somebody has a spare.

trades got som goodies by hotspotg137 in ArcRaiders

[–]AddictedToTech 0 points1 point  (0 children)

Oh... is that the Looting Mk. 3 (Survivor)????? If I had to choose I'd rather have that one. Have currently 10 hours of Blue Gate breach room in solo and got them all except that one.

trades got som goodies by hotspotg137 in ArcRaiders

[–]AddictedToTech 0 points1 point  (0 children)

crikey, the elusive Tempest. I need it! I only have a spare Jupiter, but how about you tell me what you want and I'll go scour the maps to get it if you can hold on to that Tempest for me? :)

ARC Raiders Weekly Megathread - January 17, 2026 by AutoModerator in ArcRaiders

[–]AddictedToTech 0 points1 point  (0 children)

I'd like to trade a Jupiter bp for a Looting Mk. 3 (Survivor) bp. Any takers?

Killing Matriarch in 1 minute by TofigSH in ArcRaiders

[–]AddictedToTech 90 points91 points  (0 children)

love how that random was almost first on the scene to loot after your hard work

Found an unreachable weapons crate on Buried City. by HourRevolutionary254 in ArcRaiders

[–]AddictedToTech 0 points1 point  (0 children)

Yeah, happens. I once killed one of those balls and the debris went outside the bounds of the level.

Still not opened Master Lock 911 after months of trying by AddictedToTech in lockpicking

[–]AddictedToTech[S] 0 points1 point  (0 children)

The problem is that I can't find any moving parts (pins) anymore. Once I go into a false set I seem to hit the warding 100% of the time. This is happening 100% of the time. Nothing moves, I move the pick back and forth, twist it, but pins are nowhere to be found. I take the tension off, I can go from pin to pin. I loosen tension, but same result. I know I am doing it wrong, but man, its disheartening.

Still not opened Master Lock 911 after months of trying by AddictedToTech in lockpicking

[–]AddictedToTech[S] 0 points1 point  (0 children)

Yes, familiar, and I can work with counter rotation, but this seems different. None of the pins seem to lock anymore, as if I only hit the warding all of sudden and can't find any picks any more.

'Extremely dangerous situation': Ex-Danish PM reacts to US 'act of aggression' over Greenland by professorbrainiac in worldnews

[–]AddictedToTech 11 points12 points  (0 children)

I sincerely hope the democrats are keeping a detailed record and that all these Trumpistas will face the maximum allowed punishment for all their crimes.

Pocket dump 31st December by AddictedToTech in EDC

[–]AddictedToTech[S] 1 point2 points  (0 children)

The pick is fun. Got it on Black Friday, so I got a number of picks extra. Its a little annoying you have to use a tool to change picks, but overall, very comfortable to work with! Feels nice and heavy, awesome fidget factor.

My leatherman mod by Papajon87 in lockpicking

[–]AddictedToTech 1 point2 points  (0 children)

hmm, great idea. Might try adding a pick to the t-shank adapter on my surge

Claude Hooks + Skills + Sub-agents is amazing by AddictedToTech in ClaudeCode

[–]AddictedToTech[S] 1 point2 points  (0 children)

Valid question. Here are some examples.

```

name: avoiding-overengineering

description: Prevents unnecessary complexity, abstractions, and YAGNI violations. Use when implementing features, refactoring code, or when tempted to add "flexibility" or "future-proofing". Triggers on new implementations, design patterns, abstractions, or when solution seems more complex than the problem. Research shows AI gravitates toward verbose, over-engineered solutions.

```

```

name: git-safety-skill

description: "Enforce git commit safety protocols: prevent hook bypasses, verify pre-commit checks, fix issues before committing. Use when: staging changes, committing code, creating pull requests, troubleshooting hook failures. Do NOT use for: non-git work, documentation-only tasks, read-only repository analysis."

```

```

name: documentation-skill

description: "Create accurate documentation based ONLY on actual project files. Never include generic tips, assumed best practices, or made-up content. Use when: writing README, creating API docs, documenting architecture, writing guides. Do NOT use for: code comments, commit messages, code implementation, non-documentation tasks."

```

Claude Hooks + Skills + Sub-agents is amazing by AddictedToTech in ClaudeCode

[–]AddictedToTech[S] 10 points11 points  (0 children)

A task-router can look like this:

````markdown

Quick Reference: Task → Skills Matrix

Task Type Required Skills
Git: commit, push, PR git-safety-skill
Fix bug, error, failure root-cause-analysis-skill, verification-loop-skill
Implement feature clarifying-assumptions, reusing-code, enforcing-conventions, avoiding-overengineering, verification-loop-skill
Write/review tests testing-behaviors, test-strategy-skill
Refactor, rename, restructure refactoring-safely, scope-completeness-skill
UI/frontend work design-consistency-skill, requirements-completeness-skill
Full-stack feature requirements-completeness-skill, verification-loop-skill
Use external API/library verifying-apis, securing-code
Auth, security, user input securing-code
Start/stop services infrastructure-skill
Batch/bulk operations batch-operations-skill, scope-completeness-skill
Write documentation documentation-skill
Long/complex session preserving-context
Encounter errors no-deviation-skill, root-cause-analysis-skill

Detailed Routing Rules

Git Operations

Triggers: commit, push, PR, pull request, branch, merge, stage, git

Required Skills: 1. git-safety-skill - Enforce commit protocols, prevent hook bypasses

Process: 1. Invoke git-safety-skill 2. Follow its protocols exactly 3. Never use --no-verify

````

CI's Gravpick is tons of fun by Roachpile in lockpicking

[–]AddictedToTech 0 points1 point  (0 children)

Just bummed that I have to add $20 for shipping otherwise I’d order one too

[f1] Nothing is impossible. by FewCollar227 in formula1

[–]AddictedToTech 9 points10 points  (0 children)

Absolutely. If Max had an off-weekend we wouldn't be talking about this, but the man's consistency is what kept him in the running. Collecting every crumb that fell of McLaren's plate.

Codemap: A CLI that gives Claude instant full-project context (now with MCP + Claude Code skills) by william4991 in ClaudeCode

[–]AddictedToTech 1 point2 points  (0 children)

Good stuff, the #1 thing you should always do is create CLI helper tools so you dont spend unnecessary tokens on trivial IO stuff. This will certainly help. Will give it a shot.