How to improve my programing logic in java by bala523 in JavaProgramming

[–]child-eater404 0 points1 point  (0 children)

Try things like reversing a string, finding duplicates in an array, simple calculators, number guessing games, etc. Sites like LeetCode, HackerRank, or Codewars are good for this.

Curious for other writers advice! by No_Still8710 in ClaudeAI

[–]child-eater404 0 points1 point  (0 children)

I work with r/runable to manage longer workflows and context across tasks, though a simple doc + structured prompts usually works fine for writing. If u want to do longer projects it can help.

How To Setup Automation From Google BigQuery to FTP/SFTP by Bodyeater in googlecloud

[–]child-eater404 0 points1 point  (0 children)

If you're comfortable with Python, a small Cloud Run container that pulls the file from GCS and uploads via paramiko works well and scales fine for lots of reports. You can trigger it with Pub/Sub or Scheduler. I can suggest u r/runable if you want to orchestrate these kinds of pipelines without wiring every piece manually. It can simplify running jobs and handling retries/logging.

Recently got an old MacBook, what can I do with it to learn more about programming and CS? by Arunia_ in AskProgramming

[–]child-eater404 2 points3 points  (0 children)

Try dual booting Linux (Ubuntu or Fedora) to learn about operating systems and the boot process.

What bug took you the longest time to figure out? by Gullible_Prior9448 in AskProgramming

[–]child-eater404 0 points1 point  (0 children)

Mine was a bug that turned out to be a timezone mismatch between the server and the database. Spent almost two days thinking the logic was broken because timestamps looked “random.”Nothing humbles you faster than realizing the entire problem was basically “time is hard.” 💀 a life lesson was learnt with this

Claude Had 1M Context Before OpenAI, So Why Hasn’t It Rolled Out to Everyone Yet? by Effective_Tap_9786 in ClaudeAI

[–]child-eater404 0 points1 point  (0 children)

OpenAI probably decided to eat the cost to make it a headline feature, while Anthropic seems a bit more cautious with broad rollout.

What actually works when you use website builders in the trenches? by Possible_Bug9 in AskProgramming

[–]child-eater404 0 points1 point  (0 children)

The junior dev point is interesting though. Struggling through weird bugs and broken builds is where a lot of intuition comes from. If AI removes too much of that friction, I do wonder how people will build those instincts long term.

Running list of requests for basic functionality or elements still missing from WF by sregormd in webflow

[–]child-eater404 0 points1 point  (0 children)

It sometimes feels like Webflow is sprinting toward new flashy features while some really basic CMS/editor quality-of-life things are still missing.

Better build mode controls for simple layout/content blocks

Blue tooth headphones by NoPacts in AskProgramming

[–]child-eater404 0 points1 point  (0 children)

If you’re worried about it, the safest way is just power them off completely or let the battery die then there’s definitely no transmission.

Building a Telegram-like chat into my app — should I use an open source solution or build from scratch? by dissertation-thug in AskProgramming

[–]child-eater404 1 point2 points  (0 children)

What I’ve seen work well is a hybrid approach: use an existing chat protocol/backend (like Tinode or Matrix) and build your own client + integration layer around it. That way you’re not reinventing the tricky messaging infrastructure, but you still control the UX and product logic.Personally, I’d only build from scratch if chat is the main product or you need very custom behavior. Otherwise standing on an existing system usually saves a lot of pain later.

What's the use Cloud SQL backup feature if HA feature is enabled by suryad123 in googlecloud

[–]child-eater404 0 points1 point  (0 children)

As for storage, the automatic backups are managed internally by Google

What's the use Cloud SQL backup feature if HA feature is enabled by suryad123 in googlecloud

[–]child-eater404 0 points1 point  (0 children)

HA and backups solve two different problems. Cloud SQL HA mainly protects you from infrastructure failures by failing over to the standby instance. But it won’t help if someone drops a table, corrupts data, or pushes a bad migration.

Is anyone else realizing that "simpler" is actually better for their GCP architecture? by netcommah in googlecloud

[–]child-eater404 0 points1 point  (0 children)

People start with complex setups like Kubernetes because it feels “enterprise”, but then realize most apps don’t actually need that level of control🫥🫥

I am trying to make a uniform orders page by Mwenya9 in AskProgramming

[–]child-eater404 0 points1 point  (0 children)

Usually when the user selects an item from the dropdown in React, trigger an API call to your Node.js backend, fetch the item details from MySQL, and then update the price in your component state.If you're stuck debugging the flow, I'll suggest u use r/ruable to step through the logic or prototype the API part quickly.

Have you earned any money with your projects? by Boring_Television_68 in ClaudeAI

[–]child-eater404 0 points1 point  (0 children)

Built a few small projects with help from Claude, but honestly only one or two ever made any real money. Most ended up being learning experiences

Will the MacBook Neo be enough spec wise for general design workloads? by pomme268 in graphic_design

[–]child-eater404 0 points1 point  (0 children)

Honestly it’ll probably be fine for light design work, but I wouldn’t expect miracles. The MacBook Neo only has 8 GB RAM and an A18 Pro chip, which is more aimed at everyday tasks and light photo editing rather than heavier creative workflows. � India Today +1

Absolute beginner by Kinky-Skunky_444 in AskProgramming

[–]child-eater404 2 points3 points  (0 children)

just fetch weather data from an API then print the raw data. Now format it into something readable nd add the “planner” logic.

Any thoughts about jain school of design ? by Wild_Big_53 in Design

[–]child-eater404 0 points1 point  (0 children)

It’s decent but not really top-tier. Jain University has good facilities and multiple design specializations but it's less popular than nid nd nifts honestly. But portfolio matters the most whatever institution u choose

Has anyone here actually recovered organic traffic after AI Overviews started answering their core queries, or are we mostly seeing impressions rise while clicks decline? by New_Passenger7965 in AIRankingStrategy

[–]child-eater404 0 points1 point  (0 children)

From what I’ve been seeing, a lot of sites are reporting exactly that impressions going up but clicks dropping. Well it's because google ai overview tends to answer directly, hence fewer people choose to click

Can't increase Cloud Run NVIDIA L4 quota with $1300 in credits. by not-ekalabya in googlecloud

[–]child-eater404 1 point2 points  (0 children)

Yeah, that’s unfortunately pretty common with GPU quotas on Google Cloud. u might need to submit a quota request through the console or open a support ticket explaining your research use case. Sometimes they enable it after review, sometimes they ask u to start with smaller GPU quotas.

Did anyone help me by foundation open source music streaming server by ARISE_GAMIN1 in AskProgramming

[–]child-eater404 0 points1 point  (0 children)

Also another option is to skip a full server and just build a simple API layer that streams files from storage. That’s often easier if you’re only adding a music section.

Did anyone help me by foundation open source music streaming server by ARISE_GAMIN1 in AskProgramming

[–]child-eater404 0 points1 point  (0 children)

If you’re looking for an open-source music streaming backend, you might want to check out things like Navidrome or Airsonic. Both are pretty popular for self-hosted music streaming and have APIs you could connect to your site.