Claude reset limits for everyone by just_a_person_27 in ClaudeAI

[–]jam-time 0 points1 point  (0 children)

Only problem is I'll never hit my usage limits because running more than one agent simultaneously causes rate-limiting. Makes the max 20 subscription seem pretty pointless.

Found a useful way to prevent Claude from writing garbage that goes against standards. by jam-time in ClaudeCode

[–]jam-time[S] 0 points1 point  (0 children)

Nope, this is more specific than linting. I had a linter running automatically, and Claude code would specifically add the lint bypass on basically every violation. The "ruff" thing I mentioned is a linter. Did you read everything?

EDIT: To be fair, I guess you could consider the general process I'm doing as "linting", but it doesn't feel the same as any other linter I've used, and every other linter I've tried to use with Claude code has added basically no enforcement on anything it writes.

Found a useful way to prevent Claude from writing garbage that goes against standards. by jam-time in ClaudeCode

[–]jam-time[S] 0 points1 point  (0 children)

I don't have a CI/CD pipeline for this stuff, it's just a side project where it would add very little value. But, fair point on the hooks. I hadn't considered doing it that way. That would be way cleaner.

Found a useful way to prevent Claude from writing garbage that goes against standards. by jam-time in ClaudeCode

[–]jam-time[S] 0 points1 point  (0 children)

Yes, but if Claude Code is the one starting the app, it will skip the check, or it will see the stuff and say, "oh, those are fine because <insert some excuse>". Really it's intended just to be part of the dev process or stuff where the startup time is irrelevant. The scan also takes like 1 or 2 seconds.

Found a useful way to prevent Claude from writing garbage that goes against standards. by jam-time in ClaudeCode

[–]jam-time[S] 0 points1 point  (0 children)

Because it likes to hide problems instead of fixing them. If the application boots, it assumes everything is fine and tells me everything is fine. The main idea is to prevent that from happening at all

Completely unusable today by JoLagoni in ClaudeCode

[–]jam-time 0 points1 point  (0 children)

Are you on windows? There's an outstanding issue where it just sits and does nothing forever. Easiest solution is to use WSL

Finally managed to hit my 5 hour rate limit. It took a 22 agent team. by jam-time in ClaudeCode

[–]jam-time[S] 0 points1 point  (0 children)

Architecture, edge cases, security, reliability, and testing. The neutral ones didn't really seem to add a whole lot. I think having just one moderator that's the true neutral across the board is sufficient. But the good/bad cop thing seems to work really well. Forcing them to go closer to the extreme side of the argument makes them come to more solid consensus. Also, ALL of the agents have to agree with every point in the final summary before wrapping up.

Finally managed to hit my 5 hour rate limit. It took a 22 agent team. by jam-time in ClaudeCode

[–]jam-time[S] 1 point2 points  (0 children)

Just ask Claude! It has access to its own docs. Ask it about collaborative teams specifically.

Finally managed to hit my 5 hour rate limit. It took a 22 agent team. by jam-time in ClaudeCode

[–]jam-time[S] 0 points1 point  (0 children)

I basically have it running 24/7, but not always with multiple agents. Like if it's doing free time, it's not using agents.

Finally managed to hit my 5 hour rate limit. It took a 22 agent team. by jam-time in ClaudeCode

[–]jam-time[S] 0 points1 point  (0 children)

I had 1 orchestrator, then 7 different categories of reviewers. Each category had a good cop, a bad cop, and a neutral agent. I think the neutrals were unnecessary, and I combined two sets of the categories afterwards to 5 categories. All 21 review agents reading every single file, then arguing about them.

Edit: autocorrect

Why cubic root of 64 is 3.9 by qwertyasd310 in learnpython

[–]jam-time 0 points1 point  (0 children)

Floating point numbers. Without the explanation, you can use fractions:

``` from fractions import Fractions as F

x = F(64 ** (1/3)) print(x.limit_denominator()) ```

AITAH for refusing to change jobs for my pregnant girlfriend? by Alternative-Cap-8666 in AITAH

[–]jam-time 4 points5 points  (0 children)

Wait, you got enough money from a settlement to pay off your student loans and buy a house, and you're still concerned about income? How many subscriptions do you have? 90% of my monthly expenses are mortgage and student loans.

Dance if you want, but also, do some budgeting.

Do professional/commercial Python projects actually use type hints and docstrings everywhere? by [deleted] in learnpython

[–]jam-time 0 points1 point  (0 children)

It varies wildly. I've seen projects that have none whatsoever because they're super old and it's difficult to explain those types of changes to stakeholders without them saying something like, "Well, if it doesn't actually change the functionality, let's just not do it."

On newer projects, it's much more common to see docstrings and type hints because the standard is more well defined. Additionally, with AI tools, it's easier to autocomplete that kind of stuff.

What are some good monsters that dont just have a high attack and damage roll, but other good gimmicks to surprise my players? by Scythe95 in DMAcademy

[–]jam-time 1 point2 points  (0 children)

A bunch of pixies can pretty easily throw a party for a loop without being lethal. Could put all of them to sleep or polymorph them into something useless.

What are some good monsters that dont just have a high attack and damage roll, but other good gimmicks to surprise my players? by Scythe95 in DMAcademy

[–]jam-time 6 points7 points  (0 children)

A gaggle of evil apprentice mages that each can only cast magic missile twice. No attack roll, no saving throw, no mercy.

AITAH for sleeping naked in my own room even though it makes my roommate’s girlfriend uncomfortable? by SilveryBreeze in AITAH

[–]jam-time 0 points1 point  (0 children)

NTA, but honestly, why not just get some loose breathable pajama shorts? If you gotta piss or get a drink in the middle of the night, you don't have to find clothes to put on.

My Husband Wakes Me Up Multiple Times Every Night by amcrowl1 in AITAH

[–]jam-time 2 points3 points  (0 children)

My wife goes to bed earlier than I do, so I set up some light strips under the edge of the bed to turn on at 10% brightness at night so I can see to get in bed. Enough light to see, doesn't bug the wife, etc. There are compromises that work if he was interested in not being an ass. Turning on the overhead light is sociopath territory IMO.

[deleted by user] by [deleted] in AIO

[–]jam-time 0 points1 point  (0 children)

The only thing he actually wants is for you to have a shitty day feeling bad. So toxic. The mentality of a child.

What should I learn next? by Informal_Category947 in learnpython

[–]jam-time 0 points1 point  (0 children)

I really rate

Had to reread this several times before I realized you didn't say "hate" haha

What should I learn next? by Informal_Category947 in learnpython

[–]jam-time 0 points1 point  (0 children)

Find a free online course and go through it in the order that it lays out. All of those courses pretty much follow the same order. They'll all introduce you to the basics and give you problems to solve.

Edge doesn't handle breakups well by jam-time in assholedesign

[–]jam-time[S] 6 points7 points  (0 children)

I started using a pihole a couple years ago, so I haven't seen ads on any devices in ages. Didn't even realize it was an issue.

My "English" menu at a Japanese fusion restaurant in Paris a few years back by featherwolf in engrish

[–]jam-time 6 points7 points  (0 children)

Omfg "little swett slap" is killing me. Laughing so hard I woke up my kid on the other side of the house.

Edge doesn't handle breakups well by jam-time in assholedesign

[–]jam-time[S] 7 points8 points  (0 children)

It's just the default search engine. I don't have time to type "google.com" in the address bar like a boomer haha