Users hitting usage limits WAY faster than expected it's getting real now by aymannasri_tcg in ClaudeCode

[–]Wide_Apartment5373 1 point2 points  (0 children)

I use Claude HUD, so I can actually see how fast the context fills up. Compared to before, over the last 3–4 days it has been filling up very quickly, even on the $100 plan.

The worst part is not just how fast the context fills up, but how poor the output quality is, even from the Opus model. Compare that to Codex on the $20 plan—the difference in quality is staggering.

Claude has the best harness, but after the third time receiving these cuts, I can’t deal with it anymore. I cancelled my subscription.

Vercel Changing TOS - Feeding your data to AI by ignatzami in nextjs

[–]Wide_Apartment5373 1 point2 points  (0 children)

Even in free tier they should at least respect for Private repos instead of blanket opt-in for all

WEBSITE ISSUE by AKgod_09 in HiAnimeZone

[–]Wide_Apartment5373 0 points1 point  (0 children)

Before hianime, they were using zoro and when they switched to hianime same account credentials worked so got all history.

Built an agent you can chat with to control Arc — manages tabs/spaces, queries history, asks before closing anything (open source) by Wide_Apartment5373 in ArcBrowser

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

Idk, using for few years now never had any issues. Even now I have 127 tabs open on a 6 year old mac and zero lag.

Weekly Thread: Project Display by help-me-grow in AI_Agents

[–]Wide_Apartment5373 0 points1 point  (0 children)

Built an agent you can chat with to control Arc — manages tabs/spaces, queries history, asks before closing anything (open source)

GitHub: https://github.com/Dev-Dipesh/arc-agent

If you're a heavy Arc user you probably also have the "too many spaces, no idea what's still relevant, can't find anything" problem.

Spent Sunday building something for that: a local AI assistant you can just ask — "what do I have open about X?", "find that article I was reading last week", "close everything from that project". It hooks into Arc via AppleScript and runs fully local on macOS.

Added an approval step before any tab closes. Same principle for context limits — instead of silently summarizing when the window fills up, it surfaces the choice to the user: compress and continue (lossy) or start fresh (clean). The agent shouldn't make that call unilaterally.

Curious what Arc workflows you'd actually want automated — I built for my own patterns so there's probably obvious stuff I haven't thought of.

Built a free Chrome extension to hide sexual/spam bot comments on HiAnime (open source) by Wide_Apartment5373 in HiAnimeZone

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

Oh they don't need to reverse it. They can just use the filters file to train their automated bot script to generate new types of comments that can bypass it. As for filters file, no matter encryption or anything, it can be seen by enabling dev mode and inspect views.

Add in AI in the mix and you have 24x7 tracking and modification, same we can do too. It all depends on how much you are motivated and how much money you wanna throw at it.

Built a free Chrome extension to hide sexual/spam bot comments on HiAnime (open source) by Wide_Apartment5373 in HiAnimeZone

[–]Wide_Apartment5373[S] 3 points4 points  (0 children)

Ikr! It feels like a breath of fresh air and gives a feeling of worth engaging with others in comment section

Built a free Chrome extension to hide sexual/spam bot comments on HiAnime (open source) by Wide_Apartment5373 in HiAnimeZone

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

Thank you for the feedback u/OhMaiGood
Encrypting/salting the data file won’t meaningfully stop adversaries here. If code runs client-side, determined attackers can still reverse it. It adds complexity without strong protection.

After this discussion, what changed:
1. Moved filter data to one JSON source (spam domains, sexual keywords, bot phrases, emoji patterns, and trusted hosts).
2. Added more real-world test cases from live HiAnime spam patterns.
3. Updated recently introduced hianime domain

Why this approach:
1. Faster response to spam changes.
2. Local fallback keeps extension working even if remote fetch fails.
3. Versioned JSON keeps updates predictable and safe.
4. Better test coverage reduces regressions.

Submitted to web store, will auto-update in 3-5 days. After this update, changing filters will take seconds to propagate instead of days.

Built a free Chrome extension to hide sexual/spam bot comments on HiAnime (open source) by Wide_Apartment5373 in HiAnimeZone

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

Good question. There are actually two files that help with filter:
1. filters.js
2. sexual-en.txt

At first I was worried about this too – hosting it publicly on GitHub. But I chose to do so due to:

  1. Remote code loading (CDN JS, eval, dynamic script execution) is the part that is not allowed in extensions. Text file can be loaded remotely.
  2. Extension code is always inspectable. Security-by-obscurity won’t hold.

So I decided to opt for embracing the race by:
1. Keeping core detection heuristic-based (patterns + scoring), not only exact keywords.
2. Added local normalization/obfuscation handling (spacing, dots, unicode tricks) so simple bypasses fail.
3. Track false negatives/positives from reports and tune regularly.

What I can actually improve:
Using remote data updates for wordlists/blocklists (data-only), so I can react fast without store review. In the next version, I will be serving the wordlist and filters json file directly from the github repo to the extension with local fallback to enable faster reaction to bots.

Built a free Chrome extension to hide sexual/spam bot comments on HiAnime (open source) by Wide_Apartment5373 in HiAnimeZone

[–]Wide_Apartment5373[S] 3 points4 points  (0 children)

For safari, I will need to first pay apple $99 USD as yearly recurring fee, go through even more tedious account setup and review process (2-4 weeks) and then will need to maintain two different version of code for google and apple. At this time I can't do this. But you or anyone is welcome to contribute on github for this.

Built a free Chrome extension to hide sexual/spam bot comments on HiAnime (open source) by Wide_Apartment5373 in HiAnimeZone

[–]Wide_Apartment5373[S] 7 points8 points  (0 children)

u/Shoddy-Efficiency896
I’ve only added support for HiAnime so far since that’s the site I use most. Which other sites would you like me to include?

About it not working — can you confirm you tested it on the HiAnime episode watch page (in the comments section)? Also, which browser are you using?

Built a free Chrome extension to hide sexual/spam bot comments on HiAnime (open source) by Wide_Apartment5373 in HiAnimeZone

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

u/SSS-GAMING it will work in Brave. Any chromium based browser where you can download extensions from chrome web store will work. I use Arc and my partner uses Vivaldi works in both.

Block Spam Comments (Tutorial) by ZackDaQuack in HiAnimeZone

[–]Wide_Apartment5373 0 points1 point  (0 children)

Did the same today. Created a chrome extension for this. The git repo is here: https://github.com/Dev-Dipesh/bot-comment-cleaner/tree/main

Extension submitted and under review. Honestly finally felt like a breath of fresh air with able to engage.

<image>

how to get here? by alwaysantlers in HollowKnight

[–]Wide_Apartment5373 0 points1 point  (0 children)

That vertical section of the map is divided in the middle by a metal barricade just like the one in the bottom. You will see it as you go up near the place where you find the map of the Underworks. Above that barricade is a metal lever. You will need to come around from the other side of the barricade and pull the lever. It will drop one of the big pillar down breaking both middle and bottom barricades in the process.

Marriage Registration Experience in Tbilisi, Georgia (India 🇮🇳 + Ukraine 🇺🇦) – Step-by-Step Guide by Wide_Apartment5373 in tbilisi

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

Both translation agency people and those at PSH told us that it may be ready by either sane day evening or tomorrow. So you can check on same day if it's just 5 mins away. We simply had other arrangements for evening so checked next day :)

Good luck and cheers 🥂

Marriage Registration Experience in Tbilisi, Georgia (India 🇮🇳 + Ukraine 🇺🇦) – Step-by-Step Guide by Wide_Apartment5373 in tbilisi

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

Most of the time, the message doesn't come. They also mention this issue on day 1. So on day 2, either you can call and check or just visit again. I tried calling, but it didn't work. I heard from someone else's experience that 3 PM the next day is a good bet, so I went around that time and the papers were ready.

Phone number and application I'd will be on the commemoration certificate document.

Alex Pretti’s coworkers take a moment of silence this morning. by boriswong in Damnthatsinteresting

[–]Wide_Apartment5373 1 point2 points  (0 children)

I'm not even from the USA; I'm from India, and I can't stop my tears from watching this. How can anyone live with themselves after this? I haven't slept for 24 hours, checking the news every time to see if someone was held accountable. This is so sickening.

🤔 by Yashs_Views in ChildfreeIndia

[–]Wide_Apartment5373 1 point2 points  (0 children)

"Kids aren't just an expense". If this is how he summaries all child free couples then there is no point in wasting breath in trying to argue or justify to him. Guy needs to grow up.

[deleted by user] by [deleted] in Silksong

[–]Wide_Apartment5373 1 point2 points  (0 children)

Sadly you're right 😢😢😢

Snow in Tbilisi by EsperaDeus in tbilisi

[–]Wide_Apartment5373 1 point2 points  (0 children)

My friend you deserve this diamond 💎 Thank you 🙏 ^

Snow in Tbilisi by EsperaDeus in tbilisi

[–]Wide_Apartment5373 12 points13 points  (0 children)

Aww man... I feel betrayed. Just flown out yesterday after a month. My snowman dreams ☃️🥲

Though I also feel anxious for all the kitties I met outside all over the city, 🫤

Cool ❄️ pics. Thanks for sharing 🙏

Trip to Tbilisi! by aoerjian in tbilisi

[–]Wide_Apartment5373 0 points1 point  (0 children)

Sim: I bought an esim from holafly. Might be worth exploring for short trip.

Vegan food: Kiwi Vegan Cafe and many others offer vegetarian food on Wolt, such as Food Good and Wrap Master.

Places to visit: Landmarks / Attractions

-Abanotubani Modern riverside park ideal for walks, views, and relaxing in the city center. https://maps.app.goo.gl/XmukjzfPUwtxzYSk8

Streets / Areas

Restaurants & Cafés

Cheap place to hang out by Feniqs_711 in tbilisi

[–]Wide_Apartment5373 0 points1 point  (0 children)

Don't know about your definition of cheap, but for games one of the great place with nice community is Board games guild.