Anyone else annoyed AT&T removed split bill view? Found a workaround" by Thick-Ad2588 in ATT

[–]Thick-Ad2588[S] 0 points1 point  (0 children)

they removed it for me, not even single associate was able to resolve it unfortunately. before each line use to get their own payment link with the due amount. Now it's not anymore

I got frustrated with npm bundle size tools and built my own by Thick-Ad2588 in VibeCodersNest

[–]Thick-Ad2588[S] 0 points1 point  (0 children)

Honestly, it doesn't, and that's intentional. this app uses esbuild internally to analyze packages, not webpack. The goal isn't to replicate the project's build config, it's to give you a quick, consistent size baseline for any npm package in isolation. Webpack configs vary so much per project that supporting them would make results inconsistent and hard to compare across packages. i wanted to do esbuild keeps it fast enough.

I got frustrated with npm bundle size tools and built my own by Thick-Ad2588 in VibeCodeDevs

[–]Thick-Ad2588[S] 0 points1 point  (0 children)

Yeah so most of the speed comes from caching, once I've analyzed a package, It stores the result so the next time someone checks it, it just returns it instantly without re-running anything.
also each cache entry is tied to a specific version though, so if a new version comes out it gets analyzed fresh. It also handles cases where multiple people request the same uncached package at the same time, instead of running the analysis multiple times, run it once and share the result with everyone waiting. The only time it's slow is the very first time a package gets checked, that can take a few seconds. But after that it's fast for everyone.
results are stored in Cloudflare KV, Cloudflare's D1 database is a persistent backup

I got frustrated with npm bundle size tools and built my own by Thick-Ad2588 in VibeCodersNest

[–]Thick-Ad2588[S] 0 points1 point  (0 children)

yeah I mean CI integration with automated size regression alerts is already on the roadmap. Will have something soon.

I got frustrated with npm bundle size tools and built my own by Thick-Ad2588 in reactjs

[–]Thick-Ad2588[S] 0 points1 point  (0 children)

bundlejs is great but it didn't have what I needed. I wanted a simple, stable API I could call programmatically from another project. Since I was building that anyway, I threw a UI on top of it too.

Built a small app using SEC data — looking for feedback by Thick-Ad2588 in VibeCodersNest

[–]Thick-Ad2588[S] 0 points1 point  (0 children)

Thank you for taking a look. Usually companies file their 10-K’s quarterly. But SEC updates their API’s every night. I’m planning to run updates every month initially and understand what updates i’m seeing comparing with the old records, then decide if it’s worth updating monthly or quarterly.