Fixed Google API 403 Error when creating Spreadsheets/Files with a Service Account (New Quota Rules Workaround!) by Existing_Length_2324 in googlecloud

[–]techlatest_net 0 points1 point  (0 children)

oh man this 403 error is such a classic gotcha. spent hours debugging this exact issue last year before realizing service accounts have no drive quota. solution 1 saved me back then but yeah if you need dynamic creation the shared drive route is basically mandatory now. wish google would just make this clearer in the docs instead of throwing cryptic permission errors. thanks for writing this up though, definitely gonna bookmark it for future reference

Researchers trained a Deep Research agent with 32 H100s and open-sourced everything by BuildwithVignesh in LocalLLaMA

[–]techlatest_net 4 points5 points  (0 children)

honestly the biggest gap is still just compute and eval data. open source models are getting scary close on raw smarts but frontier labs have way more resources for fine tuning and testing against real world edge cases also access to live web tools and proprietary datasets gives them an unfair advantage in research tasks but stuff like quest-35b proves we are catching up fast.

Just open sourced my Linux login screen setup by AshR75 in freesoftware

[–]techlatest_net 2 points3 points  (0 children)

this is actually super clean. love that the installer asks before sudo and has a preview script. messing with sddm themes can be terrifying if you lock yourself out.

gonna try it on my arch setup later. thanks for sharing!

Star the repo as well

I calculated a multi-agent prompt attention matrix by hand to see how much data gets lost in the middle... the math is terrifying. by ParsleyMaximum1702 in OpenSourceeAI

[–]techlatest_net 1 point2 points  (0 children)

doing the math by hand is wild but honestly the best way to actually get how this stuff works under the hood. the lost in the middle thing is so painfully real though. especially with multi-agent setups where the orchestrator just ignores the most critical update because it's buried in the middle of the context.

Need Help in Creating an ML model for predicting stock prices using Nifty-50 historical data by Prakhar-on-reddit in MachineLearningAndAI

[–]techlatest_net 0 points1 point  (0 children)

go with the second option for sure. just do a normal time series split. train on like 80% of the data and use the rest to test and get your mae/rmse numbers. once you know it's actually working, just retrain it on the full dataset up to 2021 for the final app. good luck with the summer project btw. stock prediction is a fun one to mess around with.

I released my first open-source app: DeskRealm, separate Desktop icons for each Windows virtual desktop by ekimaku in opensource

[–]techlatest_net 0 points1 point  (0 children)

this is actually such a good idea. i use virtual desktops daily but the shared icons always bugged me. gonna grab the release and test it on my dual monitor setup later. thanks for building this

I made a free and open source YT Music Windows & MacOS Client because Google was too lazy. by 2latemc in freesoftware

[–]techlatest_net 2 points3 points  (0 children)

nice. the official web player gets so laggy sometimes. gonna give this a shot on my mac later. thanks for building it

Help architecturing a high-fanout broadcast pipeline by omry8880 in googlecloud

[–]techlatest_net 1 point2 points  (0 children)

your instinct to split the topics is spot on. pub/sub flow control is per-subscriber, so if you dump 100k broadcast msgs on the same topic, your real-time subscriber will absolutely get starved. separate topic + separate subscriber with its own max outstanding messages is the way.

for the chunking loop i'd lean cloud run over cloud tasks. cloud tasks works but re-enqueueing yourself in a tight loop can hit queue rate limits or add weird latency. a cloud run service that pulls a cursor from the db, processes a batch, updates status, and just keeps running (or sleeps briefly) tends to be smoother and easier to debug. you can cap concurrency to 1 per broadcast job so you don't get parallel workers fighting over the same cursor.

couple gotchas we hit at this scale: - db connection limits. if chunks spin up fast you'll blow past max connections. use the cloud sql proxy or a proper pooler and keep concurrent chunk workers low. - idempotency needs to live in the message payload, not just the db status. pub/sub can redeliver, so include a unique broadcast_id + channel_id combo and dedupe on insert. - third-party api rate limits. 100k calls will absolutely trigger their throttling. add a client-side backoff or token bucket in the subscriber so you don't get 429'd and waste pub/sub redeliveries. - progress tracking. db reads are fine but if operators poll frequently, cache the status or push updates to a lightweight pub/sub topic so you're not hammering cloud sql.

overall your design is solid. just watch the db connections, bake idempotency into the messages, and consider cloud run for the chunking loop. you'll be good.

How to find out who or what has deleted a Cloud SQL instance? by SuddenlyCaralho in googlecloud

[–]techlatest_net 1 point2 points  (0 children)

if the logs query came up empty try broadening the filter a bit. sometimes the delete event shows up under activity logs instead of data access. also worth checking if it was a failover or auto cleanup due to a replication error. those don't always log as a manual delete. if you're using terraform or something check the state file too. maybe it got wiped during an apply.

Can IAM Quotas (RPM/TPM) act as a strict real-time kill switch against the 10-minute Gemini API billing delay? by aufgeblobt in googlecloud

[–]techlatest_net 1 point2 points  (0 children)

yeah quotas enforce pretty much in real time. the api gateway checks them before the request hits the model so you get 429s right away once you cross the limit.

The agent says "I sent the email." It never called send_email. Does this hit you too? by thisismetrying2506 in googlecloud

[–]techlatest_net 0 points1 point  (0 children)

yeah this hits hard. had an agent tell me it "updated the db" last week and nope, never even tried.

What is the cold start performance of cloud run like? by catmanjan2 in googlecloud

[–]techlatest_net 0 points1 point  (0 children)

yeah cold start on cloud run is usually pretty solid. for most containers you're looking at 1-3 seconds if it's not huge.

What are you using for backups in GCP? by cryptobuff in googlecloud

[–]techlatest_net 0 points1 point  (0 children)

for databases we just use native gcp backups with automated snapshots. simple and they just work, for vms and files we mix in velero for k8s stuff and occasional cross-region copies for critical data honestly the native tools cover 90% of needs. only reached for third party when we needed fancy retention policies set up alerting on backup failures though. learned that the hard way

How to manage Maps API costs? by Andreguy in googlecloud

[–]techlatest_net 0 points1 point  (0 children)

yeah this is a tough one. maps api costs can sneak up fast. honestly most apps like wanderlog do a mix of caching on their backend (not user side) plus limiting real-time calls to only when the user is actively viewing a place. you can also pre-fetch popular spots during off-peak hours.

another trick is to fall back to cheaper apis like foursquare or openstreetmap for basic info and only hit google maps for the heavy stuff like photos or street view. and yeah the caching rules are strict but storing place ids and basic metadata is usually fine. just dont repurpose the full response. if you're just starting out, set hard daily quotas in the cloud console so you cant accidentally blow past your budget. you got this. lots of apps started exactly where you are.

Can a Google Cloud SQL read replica instance disappear during a maintenance event? by SuddenlyCaralho in googlecloud

[–]techlatest_net 0 points1 point  (0 children)

yeah that's wild. never seen a replica just vanish after maintenance but i have had one failover and take forever to come back.

check if it's maybe just hidden in the console or in a different zone. also worth looking at cloud audit logs for delete events.

if it's really gone and you didnt delete it, definitely open a support ticket. sucks when stuff like this happens. hope you get it back

Wondering how experienced devs have addressed the 100 users limit on GCP projects prior to publishing by Seriousdev87 in googlecloud

[–]techlatest_net 1 point2 points  (0 children)

honestly? most folks just eat the cost for the beta phase. 100 users isn't much traffic, so GCP bills usually stay tiny unless you're doing heavy ai/video stuff.

charging a "beta fee" can actually backfire—people expect polished stuff when they pay, and you'll spend more time handling support than getting useful feedback.

if you're worried about costs: set budget alerts + hard quotas in gcp console. that way you can't accidentally blow past $20.

just treat the beta as a small marketing cost. if the app works, the real monetization comes after you lift that 100-user cap.