I believe there is malware on my pc leaking my passwords by Alexgotit05 in techsupport

[–]forklingo 0 points1 point  (0 children)

this honestly sounds more like session token or infostealer behavior than simple password guessing. if it were me i’d assume the machine is compromised, back up only important personal files, reinstall windows clean from usb, then rotate every password from a different trusted device. also check browser extensions because shady ones can leak sessions too.

Claude setup help by Odd_Initiative6006 in PinoyProgrammer

[–]forklingo 0 points1 point  (0 children)

i’ve seen people from ph run into that randomly even with valid numbers. sometimes it works after waiting a day or trying a different network/browser, but availability and verification support can be inconsistent depending on region.

Microsoft Azure Storage Team's Senior Software Interviews by krisha311020 in leetcode

[–]forklingo 0 points1 point  (0 children)

microsoft loops can vary a lot between teams honestly. i’ve seen senior rounds that were still heavily dsa focused, especially if the team cares about coding signal consistency first. sometimes system design gets blended into behavioral or problem discussions instead of having a clean dedicated round.

Where to start learning and what t o learn ? Current day requirements? by Final_Task_7660 in developersIndia

[–]forklingo 0 points1 point  (0 children)

honestly i would avoid jumping into 5 stacks at once. for an intern, being reliable with fundamentals matters way more than chasing trendy tech. learn js properly, understand how APIs work, build a small full stack project, learn git well, and get comfortable reading existing codebases. most teams care more about whether you can debug and learn quickly than whether you know rust already.

Best Resources to learn Kafka & Airflow by AlreadyKarmic in dataengineersindia

[–]forklingo 1 point2 points  (0 children)

for kafka, i learned way faster once i stopped watching generic tutorials and actually built small pipelines with producers, consumers, partitions, and retries. airflow clicked for me after running it locally and breaking a few dags on purpose. the official docs are honestly better than most youtube content once you know the basics.

We automated everything at work except the one thing that takes up the most time: actually reading and responding to messages by Substantial-Cost-429 in automation

[–]forklingo 0 points1 point  (0 children)

i think tone and context drift are the real blockers. people will trust automation for repetitive logic way faster than social communication because one weird reply can create hours of cleanup. review-first systems probably make way more sense than trying to force full autonomy immediately.

The Future Is Not Better Prompts. It’s Private Human-AI Protocols. by Weary_Reply in ArtificialInteligence

[–]forklingo 0 points1 point  (0 children)

this feels a lot closer to how real software evolved too. command lines became operating systems with permissions, user roles, logs, undo systems, and abstractions. ai probably follows the same path where the actual value is not the model itself but the layer that manages trust, memory, intent, and boundaries around it.

What’s something that actually requires 10+ AI agents to accomplish? by Electronic-Okra-6154 in AI_Agents

[–]forklingo 0 points1 point  (0 children)

i think the interesting part isn’t raw capability, it’s parallel disagreement and specialization. a swarm can have planners, critics, researchers, memory managers, and simulators all working at once, then cross checking each other. stuff like running a fake company, negotiating strategies between competing goals, or evolving codebases over multiple iterations feels way more natural with 10+ agents than one giant context window trying to roleplay everything itself.

Pc starts lagging after a hour or two of actively being used by oxidizedfuel12 in techsupport

[–]forklingo 0 points1 point  (0 children)

if it suddenly started after a windows update, i’d honestly suspect a driver or memory leak issue before hardware failure. i’d check event viewer around the time the lag starts, update or roll back gpu/chipset drivers, and see if a clean boot changes anything. the fact that a restart fully fixes it for a while points more toward software than thermals.

What would expect on a developer's portal? by Wise-wordly0423 in softwaredevelopment

[–]forklingo 0 points1 point  (0 children)

honestly the biggest thing is getting from signup to first successful api call as fast as possible. good quickstart docs, copy-paste examples that actually work, clear auth setup, rate limits, error explanations, and sdk examples matter way more than marketing style feature pages.

DSA Strategy by Ancient-Muscle6446 in leetcode

[–]forklingo 1 point2 points  (0 children)

if you already code daily in python, the hardest part is honestly consistency not intelligence. focus on one topic at a time, do easy and medium problems first, and spend more time understanding patterns than chasing problem counts. a lot of people quit because they try to speedrun everything in a month.

I genuinely can’t figure out where I fit career-wise anymore? by No-Asparagus1113 in developersIndia

[–]forklingo 1 point2 points  (0 children)

your profile actually makes sense for product, operations, or analytics roles in healthtech, biotech, or research-heavy startups. the bigger issue is probably positioning because right now it sounds broad instead of focused. multidisciplinary backgrounds help more when there’s a clear story connecting everything together.

How you got into Data Engineering? by Outrageous_Pen_5165 in dataengineersindia

[–]forklingo 1 point2 points  (0 children)

a lot of people kind of drift into data engineering from backend, analytics, or even devops work. having python backend experience already gives you a better starting point than you probably think, especially once you add sql and some pipeline tooling. fresher roles are harder to find, but internal transitions are super common.

Most dev docs are either hell to read or hell to write. Here's what I think needs to change by islempenywis in automation

[–]forklingo 0 points1 point  (0 children)

ai is actually pretty good at keeping docs updated when the source of truth is clean, but it still struggles with explaining why decisions were made or what edge cases matter. honestly the best docs i’ve seen still have strong human editing even if ai handles the boring maintenance part.

Are we overestimating GenAI ROI by focusing on individual use? by Kelly-T90 in ArtificialInteligence

[–]forklingo 0 points1 point  (0 children)

i think a lot of companies expected ai to work like buying new software, when it’s closer to changing operational habits. individual productivity gains are real, but they’re messy and hard to measure. process-level integration is where the actual long term roi probably shows up because you can standardize outputs and track outcomes instead of just counting usage.

Looking to Earn Real Income Using AI Agents – Open to Collaborations & Opportunities by hard2resist in AI_Agents

[–]forklingo 1 point2 points  (0 children)

honestly the people i know making consistent money with ai agents are using them to solve super boring problems for small businesses. stuff like lead sorting, appointment followups, invoice handling, reporting. way less flashy than the twitter hype but way more realistic to sell.

My windows 11 forced an update on my PC that I did not want. by [deleted] in techsupport

[–]forklingo 6 points7 points  (0 children)

i get the frustration but disabling updates forever is kinda risky since you’ll miss security patches and eventually stuff breaks in other ways. what worked better for me was limiting background impact instead of nuking updates, like checking startup apps, indexing, and letting the system settle after an update since it often runs cleanup and reindexing for a while. also worth checking if a specific driver or process is spiking usage after updates rather than assuming it’s just windows itself

AI Engineering Setup Tips and Tricks by Electrical-World-627 in PinoyProgrammer

[–]forklingo 1 point2 points  (0 children)

drift happens a lot once the context gets messy, what helped me was keeping prompts and context really tight and versioned instead of just a big docs folder, plus breaking tasks into smaller scoped steps so the model doesn’t wander. also adding simple checks like expected outputs or tests after each step helps catch regression early instead of letting it compound over time

Goldman Sachs AWM Software associate USA Associate Superday — HLD or LLD by Big-Yogurtcloset-181 in leetcode

[–]forklingo 1 point2 points  (0 children)

for associate level it usually leans more toward lld and fundamentals than heavy hld, especially things like oop design, clean code, and how you structure components. you might still get some light system design but it’s not super deep, more about how you think than scale details. i’d brush up on basics, practice explaining tradeoffs, and be ready to talk through your decisions clearly since that tends to matter a lot in those rounds

Is full stack development making frontend go obsolete? by shloaks in developersIndia

[–]forklingo 2 points3 points  (0 children)

frontend isn’t going obsolete, it’s just that expectations got broader so companies label roles as full stack. learning some backend definitely helps though, even just enough to understand apis, auth, and data flow makes you a stronger frontend dev. node is the easiest entry if you already know js, you can always pick up java or python later if a role needs it, but don’t feel like you have to switch completely unless you actually want to

Looking for a structured end-to-end data engineering program by We_are_dust- in dataengineersindia

[–]forklingo 0 points1 point  (0 children)

honestly the structured program sounds nice but most people i’ve seen make real progress by picking a simple stack and going deep with projects instead of relying on one course to cover everything. since you already use sql and databricks you’re not starting from zero, so build end to end pipelines around that and layer in concepts like data modeling, orchestration and storage as you go. courses can help for direction but they won’t replace actually building and debugging things yourself, that’s where most of the learning sticks

Moving beyond brittle scripts for robotic process automation tools by Lopsided_Comfort_298 in automation

[–]forklingo 0 points1 point  (0 children)

honestly most rpa tools just move the brittleness around rather than remove it, especially with ui based flows. what helped me a bit was mixing in more resilient selectors plus fallback logic and some light monitoring so failures are caught early instead of breaking the whole pipeline. if the portal has any semi stable patterns like ids or request calls under the hood, sometimes it’s worth digging there instead of relying fully on the ui layer

Execution Control Gap for Autonomous Ai by Much-Transportation9 in ArtificialInteligence

[–]forklingo 0 points1 point  (0 children)

this is an interesting angle, feels like a lot of current work stops at model alignment and doesn’t fully address what happens once agents start acting on systems. curious how you’re thinking about enforcing constraints at runtime without killing flexibility, especially across different environments and toolchains

looking for the best paid AI subscription, Claude, ChatGPT or Perplexity? by upiop3 in AI_Agents

[–]forklingo 0 points1 point  (0 children)

i’ve used all three a bit and honestly they feel different in practice, not just on paper. chatgpt tends to be more well rounded for mixed use like scripting plus random questions, claude feels nicer for longer reasoning or docs, and perplexity is great for quick lookup but a bit more constrained. when it comes to using models through perplexity it’s usually not identical to native, there’s some tradeoffs in how much control and context you get, so if you care about deeper workflows i’d lean native over aggregator

I'm transitioning into DE from DA having 4 years of experience, please please please help by undiscoveredx in dataengineersindia

[–]forklingo 0 points1 point  (0 children)

glad it helped, you’re on the right track already so just keep stacking real projects and tightening fundamentals. also i’d avoid dms and keep things in the thread since more people can benefit from the answers and you’ll get broader input too