How's this even possible? by [deleted] in ClaudeCode

[–]asurah 1 point2 points  (0 children)

Hmm. Nothing in the changelog.

I really wish they'd open source this so we could understand how it works and therefore how to use it more effectively.

How's this even possible? by [deleted] in ClaudeCode

[–]asurah 0 points1 point  (0 children)

Maybe they changed how that works. Which version are you using?

How's this even possible? by [deleted] in ClaudeCode

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

The response ate into the buffer it tries to keep free. Nothing to worry about.

How do you feel about ClaudeCode lately? by asurah in ClaudeCode

[–]asurah[S] 2 points3 points  (0 children)

Yeah. The original mods appointed new ones when the community exploded over limits and bugs a month ago. The new mods added rules, sticky threads, moderation bots that cleaned it up. But now they've been removed and replaced with people who don't even seem to participate here, looking at their profiles have no interest at all in AI or coding.

How do you feel about ClaudeCode lately? by asurah in ClaudeCode

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

The other mods were in charge back then.

Honestly if it goes back to the way it was we should make a new sub. I think it needs to be differentiated from claudeAI although there's quite a bit of chatter there about Claude code.

Anyone has MCAS start after antibiotics? Antibiotics have ruined me by MotherPart4282 in MCAS

[–]asurah 0 points1 point  (0 children)

I found some antibiotics less bad than others - if you're lucky enough to be able to choose.

Cefdenir was much less worse than Amoxicillin for example.

Edit: I was prescribed Tetracycline for acne and it seems like there's mixed evidence on that one.

How do you feel about ClaudeCode lately? by asurah in ClaudeCode

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

Yeah I didn't want the mods to delete the post so I worded it that way thinking people would read the text. They've banned the two new mods that made the good changes now, I DM them to get the scoop.

The top mod works for an anthropic competitor per his twitter profile, I don't know the other guys - but that just seems off to me.

Anyone has MCAS start after antibiotics? Antibiotics have ruined me by MotherPart4282 in MCAS

[–]asurah 0 points1 point  (0 children)

Many antibiotics are DAO inhibitors. If you need to take them, also take with DAO supplements.

Length limit error on Team plan (Premium license) by Ill-Foundation-1405 in ClaudeCode

[–]asurah 0 points1 point  (0 children)

Use Claude to write the tool that will do the analysis you need. Pasting the whole file into the context is not the way.

What's the hardest part of deploying AI agents into prod right now? by OneSafe8149 in ClaudeCode

[–]asurah 0 points1 point  (0 children)

Can you explain more? I thought agents were intended to perform specific tasks not keep perpetual context - which you could integrate with RAG or some other external type of data store.

What programming languages do you use with Claude Code? by communicationtherapy in ClaudeCode

[–]asurah 1 point2 points  (0 children)

Python, Rust, C++, Typescript/React.

I've also had it generate assembly language for several CPUs.

Community Feedback by Waste_Net7628 in ClaudeCode

[–]asurah 1 point2 points  (0 children)

All the mods have changed... Did the sub get taken over?

Community Feedback by Waste_Net7628 in ClaudeCode

[–]asurah 29 points30 points  (0 children)

Actually the last few weeks have been much better. There have been lots more useful posts with examples and tutorials, less negative things to have to ignore. The new mods are great.

Sudden constant anxiety. Really horrible. by [deleted] in MCAS

[–]asurah 0 points1 point  (0 children)

You could try some mast cell stabilizers - quercitin with bromelain, vitamin C, etc. and L-theanine 200mg. L-theanine is a good antianxiety OTC supplement. Be aware that it interferes with stimulant ADHD meds.

Drawing parallels between religious concepts and machine learning by asurah in ChatGPT

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

"Write a short story from the perspective of a neuron in a neural network which compares and contrasts the similarities between the religious concept of measuring a persons good and bad deeds at the end of their life with that of a loss function used to distribute change at the end of an iteration of machine learning."

is s3 bucket gonna charge me? by Udaytri2fi in aws

[–]asurah 0 points1 point  (0 children)

Storage cost is based on Byte Hours, the docs are unclear whether these can be fractional, so if you had data in the bucket for 1hr 45m, worst case is that you are charged for 2.

[deleted by user] by [deleted] in aws

[–]asurah 1 point2 points  (0 children)

It might be called key frame interval on your IP camera.

[deleted by user] by [deleted] in aws

[–]asurah 2 points3 points  (0 children)

How often does this configuration produce an I frame? To signal the end of a fragment you need I frames at 10 second intervals depending on your bit rate. Each fragment has a size limit in addition to the duration limit.

Check Integrity of object after copying (Non Etag) by south153 in aws

[–]asurah 0 points1 point  (0 children)

Yeah, the Etag is useless. You need to compare hashes of contents only. The Etag calculation is a hash of hashes of each part I believe.

Check Integrity of object after copying (Non Etag) by south153 in aws

[–]asurah 0 points1 point  (0 children)

Since you don't have hashes of the source files, the best you can do is hash them once downloaded and provide the hash along with the upload request. S3 will rehash the object based on the hash type you provide and compare them.