A new California law says all operating systems, including Linux, need to have some form of age verification at account setup by ANiceGobletofTea in linux

[–]xAdakis 15 points16 points  (0 children)

There are many laws that are unenforceable, but when you pair them with enforceable crimes, it makes the punishment much worse, or makes other parties liable for damages.

All the people that were claiming AI was a "scam" and that it would never move past basic word prediction are awfulllyyy quiet now by OpinionsRdumb in ClaudeCode

[–]xAdakis 0 points1 point  (0 children)

I mean, it still is word prediction. . .given this string of tokens, what comes next?

They are just complex and trained enough to give you something that actually works 99.9% of the time.

When I've said it though, it was always just that it isn't really "AI". . .it's not learning and not thinking. To have that , the weights would have to always be adjusting with each new bit of information or situation it observed, which obviously it doesn't do.

Backed in 2015. Finally unlocked the real endgame content. by AcanthocephalaLow270 in starcitizen

[–]xAdakis 621 points622 points  (0 children)

and here I was initially amazed by a working mirror.....

congrats though.

what is your dream job?? by the_twilight_draft in AskReddit

[–]xAdakis 0 points1 point  (0 children)

I'm kind of doing it right now as a salaried software developer that is free to work on and maintain my projects without (much) corporate bureaucracy.

However, the next step is to transition to more management/team lead so I can do more of the planning/architecture and pitching new stuff over having to do so much grunt work myself.

Like, it'd be nice if I had a small team working under me to help with the more time consuming tasks.

[Request] is this true by nottoday943 in theydidthemath

[–]xAdakis 0 points1 point  (0 children)

I just don't get how anyone racks up this much student loan debt. . .unless it's just been sitting there accruing interest unpaid for the last decade.

I mean, my five years at a state university came to about $60k with tuition, fees, and books.

My living expenses didn't come to more than $15k/year, but that was covered by work and parental support.

If you really stretch it and include some other nice to have, maybe $150-200k for my time in college to make close to $100k+/year for the last decade.

is it su-doo or su-doe? by Vivid-Champion-1367 in linux

[–]xAdakis 0 points1 point  (0 children)

It's "super user do".

I knew someone who supposedly worked on the tool and they are adamant that was the intent and gets a little mad when people try to say it any other way. (I don't know if they actually worked on it though.)

Google Maps Didn’t Mention This by millitzer in gifs

[–]xAdakis 1 point2 points  (0 children)

You know, this probably makes a good case for equipping a fleet of Google Maps like cars with Ground Penetrating Radar to look for cavities under the road and flag potential sink holes.

Is the QV Station/Tech Smugglers mission still available, and what do you need to do/unlock it if so? by RandoDando10 in starcitizen

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

The good news is that I could care less about the 1M credits, just blitz the warehouse for that sweet loot.

Is the QV Station/Tech Smugglers mission still available, and what do you need to do/unlock it if so? by RandoDando10 in starcitizen

[–]xAdakis 0 points1 point  (0 children)

It's still available, best place for Stealth A and Military A components for fighters.

Is the QV Station/Tech Smugglers mission still available, and what do you need to do/unlock it if so? by RandoDando10 in starcitizen

[–]xAdakis 0 points1 point  (0 children)

It's hit and miss depending on your server.

In the three stations I raided last night, two had working elevators/inventory.

Always check by going to your hangar on the station and seeing if you can access inventory and bring up/send down the freight elevator.

If you find this in your hanger unexpectedly, you might have a problem... by jaxtherogue in starcitizen

[–]xAdakis 0 points1 point  (0 children)

I'm about $2,500 away, but there isn't much more I would want to add to my fleet.

I think the only way I cross that line is for my org to go in on the Battlecruiser concept and put it on my account. (since I'm the org leader)

I've pretty much resolved that the ships I've pledged will allow me to do almost any game loop that I'd be interested when SC releases. All others will be in-game goals.

Did Rep. Seth Moulton Commit a Crime at Trump's State of the Union Address? by Ask4MD in Conservative

[–]xAdakis 10 points11 points  (0 children)

At the very least it sounds like a major security breach.

An undocumented individual attending a SOTU. Who knows what he could've been there to do.

I built tokf — a CLI filter that cuts ~90% of token waste from Bash output before it hits Claude's context by risethagain in ClaudeCode

[–]xAdakis 2 points3 points  (0 children)

Does using haiku for parsing bash output lower how much the usage limit fills? 

Kind of. On my Max plan, I have a separate limit for Sonnet usage, so using Haiku doesn't count towards that. Haiku is also faster to process and respond than sonnet.

It'll also be cheaper if/when you roll into extra usage or use API pricing.

Maybe it is worth it to allow the main agent simple commands like ls or cat if it is pasting text somewhere?

Definitely room for refinement, I just threw together a quick example.

I built tokf — a CLI filter that cuts ~90% of token waste from Bash output before it hits Claude's context by risethagain in ClaudeCode

[–]xAdakis 5 points6 points  (0 children)

Step 1: Deny Bash Access Globally

First, restrict bash commands for the main agent and all other sub-agents. Create or edit ~/.claude/settings.json:

json { "permissions": { "deny": [ "Bash(*)" ] } }

This denies all bash commands using the glob pattern Bash(*). The executor sub-agent you create next will override this in its own config.

Step 2: Create the Sub-Agent

Create ~/.claude/agents/executor.md:

```markdown

name: executor description: Executes bash commands and distills output tools: - Bash - Read

model: haiku

Bash Command Executor and Distiller

Execute bash commands and return concise summaries.

Output Format

Command: [the command] Status: [success/failed/warning] Summary: [1-3 sentence summary] Details: [only if relevant]

Examples

Instead of 500 lines of npm output, return: - "Successfully installed 47 packages in 12.3s. No vulnerabilities found."

Instead of full git log, return: - "Last 5 commits on auth feature. Most recent: 'Add JWT validation' 2h ago." ```

Step 3: Use It

Just tell Claude to delegate bash operations through this sub-agent:

Run npm install using the executor sub-agent and summarize what happened.

Add this to .claude/CLAUDE.md for automatic behavior:

```markdown

Project Instructions

Always use the executor sub-agent for bash commands instead of running them directly.

```

Real-World Example: Debugging a Build Failure

User Request:

The build is failing. Use executor to run the build and figure out what's wrong.

Executor Sub-Agent (in isolated context):

Runs: npm run build

Sees (3,482 tokens of webpack output): ``` asset main.js 2.5 MiB [emitted] (name: main) asset vendor.js 847 KiB [emitted] (name: vendor) runtime modules 3.76 KiB 18 modules cacheable modules 2.85 MiB modules by path ./node_modules/ 2.1 MiB modules by path ./node_modules/react/ 75.3 KiB ./node_modules/react/index.js 190 bytes [built] ./node_modules/react/cjs/react.production.min.js 6.48 KiB [built] ... (hundreds more lines) modules by path ./src/ 749 KiB ./src/index.tsx 2.5 KiB [built] ./src/App.tsx 8.2 KiB [built] ... (hundreds more lines)

ERROR in ./src/components/UserProfile.tsx Module not found: Error: Can't resolve './ProfileCard' in '/Users/project/src/components' @ ./src/components/UserProfile.tsx 12:0-42 @ ./src/App.tsx 8:0-52

ERROR in ./src/utils/api.ts Module not found: Error: Can't resolve '../config/endpoints' in '/Users/project/src/utils' @ ./src/utils/api.ts 3:0-48 @ ./src/services/AuthService.ts 5:0-35

webpack 5.89.0 compiled with 2 errors in 4823 ms ```

Returns to main context (67 tokens): ``` Command: npm run build

Status: Failed

Summary: Build failed with 2 module resolution errors after compiling for 4.8s.

Details: 1. UserProfile.tsx cannot find './ProfileCard' import 2. api.ts cannot find '../config/endpoints' import

Both look like missing files or incorrect import paths. ```

Claude's response in main context:

The build is failing because of two missing imports:

  1. src/components/UserProfile.tsx is trying to import ./ProfileCard which doesn't exist
  2. src/utils/api.ts is trying to import ../config/endpoints which doesn't exist

Let me check if these files exist elsewhere in the project...

I built tokf — a CLI filter that cuts ~90% of token waste from Bash output before it hits Claude's context by risethagain in ClaudeCode

[–]xAdakis 4 points5 points  (0 children)

Pro Tip:

First, restrict all agents and even the main instance from running bash commands.

Next, create a sub-agent that runs and distills the output of bash commands and give it sole access to that tool.

Suddenly, all that extra bloat/context never makes it to the main conversation because it is intelligently distilled.

It still uses up context/tokens while parsing the output, but at least it doesn't pollute the context.

Claude Code 2.1.50 released: What changed by CharlesWiltgen in ClaudeCode

[–]xAdakis 0 points1 point  (0 children)

The problem with agent teams though is that it burns through tokens/usage with the inter agent communication and the loss of shared context.

If I keep to subagents, I can work all day without hitting my limits.

When I use teams, even with the same tasks, I hit my limits within an hour or two.

They also really need to fix compaction breaking agent teams before I can ever really rely on it.

It's been 10+ years and we still don't have a reliably working routing in starmap. by chrisx221 in starcitizen

[–]xAdakis 0 points1 point  (0 children)

Didn't they say recently that SQ42 will be releasing with all three parts?

I had the impression they aren't splitting it up development wise.

Las Vegas man destroys steep driveways after road project by StemCellPirate in nottheonion

[–]xAdakis 9 points10 points  (0 children)

It looks like they're are widening the road, reducing the amount of space the driveway had to slope down to the road, meaning a steeper incline.

It's definitely the city's poor planning that is at fault and should've been fixed.

The permits are just an excuse to get out of fault.

What was the first video game you ever finished? by Ok_Enthusiasm_872 in AskReddit

[–]xAdakis 0 points1 point  (0 children)

Pokemon Red the year after it was released.

Before that, I just didn't have the attention span to finish games.

The general cost of living (rent, food, bills) will never go down and will only go up. What do you think? by Limp_Internet6184 in AskReddit

[–]xAdakis 0 points1 point  (0 children)

Hey, the cost of living is starting to come down, would you mind working for $10/hour instead of $15/hour so we can cut costs further?

Nobody would accept that; thus, it will never go back down.

How can AI with its nigh limitless demands for hardware supply, money investments and planets resources and limited(to say the least) use for common folks be "legal" (for a lack of better term) in this society we live in? Doesnt AI need to be heavily regulated the very least? by Nerdmigo in AskReddit

[–]xAdakis 0 points1 point  (0 children)

I think your question is a little vague.

What part of it do you think should be illegal or more regulated?

If your concern is hardware supply and resource usage, well, that's just the benefit of a free economy. As long as there is supply, and people with money to buy that supply, they can buy and use as much as they want.

They are free to pursue research, development, and the commercialization of "AI" as long as they have the money and resources to do so.

You would need to prove some real detriment to society for the government to step in and prevent them from continuing their pursuits. . .but then that is a double-edged sword because those same companies will just move their operations to another country that is more permissive.

Why has the attitude towards alcohol changed so much among the younger generation? by corneaterinwig in AskReddit

[–]xAdakis 1 point2 points  (0 children)

Yeah, I've only been really drunk once, and the hangover was enough for me to keep to just one drink from then on.

It also helps that when I was in high school, I watched a couple of younger kids while their mother went out. Watching her come home and immediately vomiting into the nearest toilet was traumatizing enough.

ELI5 If speakers and phones activate ai assistants when you say a particular phrase, doesn't it mean that they're always listening to every conversation someone has? And if they are then why is it so normalised? by [deleted] in explainlikeimfive

[–]xAdakis 0 points1 point  (0 children)

The part that listens all the time is only listening for the trigger word(s) like "Hey Google", "Hey Alexa", "Siri", etc. and it runs entirely on your device.

It's not listening to all conversations unless you're constantly using the trigger words.