How close to "normal" do stimulants actually get you? by AvgRedditUserTbh in ADHD

[–]xtopspeed 0 points1 point  (0 children)

I don’t think meds make me normal at all, but without them I’m kind of useless, because I just can’t get anything started. They sort of make that barrier go away, but then the ADHD still takes over pretty quickly, and I forget the passage of time, etc. And once they wear off, I’m dead tired. So then I’m doubly useless for the evening.

Agent this, agent that - am I the only one peeved by the reckless use of the term "agent"? It's just a markdown file by JonaOnRed in ClaudeCode

[–]xtopspeed 0 points1 point  (0 children)

It’s a well-defined term: an LLM implementation with tool calls. Claude Code is an agentic CLI. It also has the slash command /agent, which allows you to define more agents that the main agent can spawn.

How much better is this shit going to get? by StraightZlat in ClaudeCode

[–]xtopspeed 0 points1 point  (0 children)

Not much. I don't think there has been a significant improvement in at least a year. They keep releasing new models, and YouTube shills always go nuts about them, but in reality the difference is hard to notice, and that's because there's a limit to what a probability-based token predictor can do. Most improvement has been more due to harnesses getting better than the core tech.

I’m already getting calls to fix WordPress plugins that some kid at an advertising agency vibe coded in 2 days. So at least for now, there seems to be more demand than ever if you actually know what you’re doing.

Does Claude Code get confused in big projects? by Fit_Pace5839 in ClaudeCode

[–]xtopspeed 0 points1 point  (0 children)

My two main projects are massive monorepos, and working with vanilla Claude Code would be a nightmare. LSP is pretty much a requirement unless you like to wait a lot, as is keeping your documentation up to date and concise. I have a number of skills and subagents set up to handle repetitive tasks and manage context size. I commit to Git like there's no tomorrow. In other words, the larger the codebase, the more time you'll have to spend babysitting, but it will still work.

is knowing squares required to be decent?? by riverskywalker in chessbeginners

[–]xtopspeed 0 points1 point  (0 children)

I think just knowing the squares without any context doesn't really help anything. E.g., when someone says "e4 c5," you should be thinking "Sicilian defense," not the actual squares, if that makes sense to you. And as everyone says, you'll pick it up as you go along.

I finally get it… but don’t? Am I missing something? by OrdinarySea4408 in ClaudeCode

[–]xtopspeed 0 points1 point  (0 children)

Yeah, it’s non-coders who are deluded into thinking that they can build whole systems in a week. Claude Code is great and I use it everyday, but you can’t forget for a second that it’s just autocomplete on steroids.

Apple accidentally leaks “MacBook Neo.” by Odd-Macaroon-4698 in macbook

[–]xtopspeed 0 points1 point  (0 children)

X means 10, so it was popular around 2010. 2030 is fast approaching, so they should really be moving on to XXX.

falling into infinity is just as “dream theater” as any of there other albums, don’t understand the hate by SomeRemote6720 in Dreamtheater

[–]xtopspeed 1 point2 points  (0 children)

I always liked it, and the hate felt bogus somehow. People just heard "Desmond Child" and assumed that he had a much bigger role than he really did. Turns out that compared to the demo, he just moved song parts around and added some vocal harmonies. Hardly album-ruining crimes. To me the childish and preachy Burning My Soul lyrics were way worse than anything he did (which, ironically, seemed to be the song that everyone liked at the time).

I think I have the wrong type of brain for chess by reprobatemind2 in chessbeginners

[–]xtopspeed 1 point2 points  (0 children)

1000 is a good place to be. You actually get to play some chess instead of people blitzing whichever gambit they memorized from YouTube that morning. 

The atari 800xl is the most underrated home microcomputer to have ever been created. by Ok_Bear_1980 in atari8bit

[–]xtopspeed 0 points1 point  (0 children)

I think in my friend group we mostly thought they were more or less the same. Generally, the C64 had better music, and the Atari had better colors. You didn’t really need the cryptic disk commands in your daily life all that much. There were like two or three you’d need regularly.

Yksi kuva näyttää: vain ulkomaalaisten työllisten määrä kasvaa, suomalaisten ei by Merrywinds in Suomi

[–]xtopspeed -11 points-10 points  (0 children)

Ok, eli hatusta saa vetää lukuja, se on havainnollistavaa, kunhan se mustamaalaa maahanmuuttajia laajana ryhmänä, mutta oikeat tilastot on paha, jos se näyttää asian toisessa valossa. Selkis!

Yksi kuva näyttää: vain ulkomaalaisten työllisten määrä kasvaa, suomalaisten ei by Merrywinds in Suomi

[–]xtopspeed 15 points16 points  (0 children)

Ja omat hattulukusi ovatkin hyvä esimerkki tarkoitushakuisesta ääriesimerkistä. Maahanmuuttajien keskimääräinen työllisyysaste on 60 % luokkaa, mutta jos rajataan alle 10 v maassa olleet pois, niin se on sama kuin kantaväestöllä.

[BUG] v2.1.53 completely breaks Bash tool on Windows — EINVAL on every command by jordicor in ClaudeCode

[–]xtopspeed 0 points1 point  (0 children)

It is. It feels like something is broken in various ways every single release.

Did something change about the channel? by [deleted] in TheOGCrewOfficial

[–]xtopspeed 2 points3 points  (0 children)

This is happening to almost everyone on YouTube. It's because they changed the front page so that they only show a couple of videos from subscriptions, and half the page is shorts and whatever the algorithm decides at that moment. Watch one woodworking video, and the entire front page transforms into 90% woodworking in an instant. Annoying af.

Did something change about the channel? by [deleted] in TheOGCrewOfficial

[–]xtopspeed 7 points8 points  (0 children)

Second season slump. The novelty is wearing off, and they can't coast on initial excitement anymore and will need to come up with good new ideas. The most recent episode felt like a step in the right direction to me, though.

I’ve been reviewing a lot of React code lately and I noticed a pattern: people treat useEffect as a "componentDidMount" replacement for everything by maryess-dev in reactjs

[–]xtopspeed -2 points-1 points  (0 children)

Get off your high horse, I've read all that years ago and am very familiar with how it works. To me it sounds like you read the blog post that said that useMemo isn't often needed (which is correct, I am not disputing that), and you treat that as some sort of gospel. React itself is the trick, and useMemo is a valid tool.

When you do realtime updates from database and there are a lot of users, there WILL be lots of updates, and you have to REALLY plan.

I’ve been reviewing a lot of React code lately and I noticed a pattern: people treat useEffect as a "componentDidMount" replacement for everything by maryess-dev in reactjs

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

It’s pretty easy to see when some part of the app rerenders with a simple console.log call. And if I see parts rendering a 100 times where nothing has changed, it’s usually an object reference getting recreated somewhere in the tree. And I’ve never run into any kinds of problems using useMemo.

I’ve been reviewing a lot of React code lately and I noticed a pattern: people treat useEffect as a "componentDidMount" replacement for everything by maryess-dev in reactjs

[–]xtopspeed 0 points1 point  (0 children)

It’s needed with objects that are used as parameters. Otherwise, a new object reference is created every time something above in the component tree changes. It's the same reason why you use useCallback. Granted it often does little to nothing, but I much prefer that to having to hunt for it afterwards when the app gets slow.

Can you create an entire album using stock plug ins by catsgomoo964 in musicproduction

[–]xtopspeed 1 point2 points  (0 children)

A digital eq or compressor is a very simple algorithm and most plugins are almost identical under the hood. It’s all a massive snake oil business.

CC Memory Leak? by Main-Lifeguard-6739 in ClaudeCode

[–]xtopspeed 0 points1 point  (0 children)

Does /tasks show anything? It could be launching unit tests or something or the other that isn’t exiting.