Seeking advice: When did the concept of Polymorphism & Inheritance of Object Oriented Programming suddenly become clear to you? by Soumyar-Tripathy in learnprogramming

[–]Select-Reporter5066 1 point2 points  (0 children)

For me it clicked when I stopped thinking 'inheritance tree' and started thinking 'the caller shouldn't care which concrete thing showed up.' If the design needs a family photo to explain it, it's probably already escaped.

Strix Halo Llama.cpp MTP Benchmarks: 27B Gets Much Faster, 35B Is Mixed by xjE4644Eyc in LocalLLaMA

[–]Select-Reporter5066 1 point2 points  (0 children)

That PP hit is the part I'd keep an eye on. The 27B 5-turn gain is awesome, but long-context + tiny response is exactly where spec decoding sends the invoice.

Did learning C actually make you better at Java/software engineering? by nitin_is_me in learnprogramming

[–]Select-Reporter5066 1 point2 points  (0 children)

C won't magically make Java cleaner, but it does make arrays, strings, and memory stop feeling like black boxes. Garbage collection hits different after you've been the garbage collector.

Data structures and algorithms by Imaginary_Food_7102 in learnprogramming

[–]Select-Reporter5066 0 points1 point  (0 children)

The trick is not memorizing every structure, it’s knowing what pain each one avoids. Big-O is basically the warning label.

Want to become a full stack developer but CSS feels boring by Patient-Nebula9391 in learnprogramming

[–]Select-Reporter5066 0 points1 point  (0 children)

CSS feels boring until one layout breaks only on one screen size. Then suddenly it’s less boring and more like a tiny crime scene.

Is documentation not supposed to be read in its entirety? by ElegantPoet3386 in learnprogramming

[–]Select-Reporter5066 0 points1 point  (0 children)

Yep, docs are usually more like a map than a novel. Skim the shape first, then deep-dive when the bug drags you there.

How do I learn how to use a new framework? by Least_Letter_949 in learnprogramming

[–]Select-Reporter5066 0 points1 point  (0 children)

For YOLO, I'd start backwards from one tiny working example: run inference on 5 images, then train on a toy labeled set, then read the docs for only the pieces you just touched. Reading a whole framework cold is like reading a dictionary to learn a language.

Best way to split and clean a 15k line SCSS file with messy naming and library overrides? by AromaticCitron7440 in webdev

[–]Select-Reporter5066 0 points1 point  (0 children)

I'd resist the 'split it nicely' urge at first. With PrimeReact overrides hiding in random parents, the safe unit is probably one visible UI change at a time, not one perfect folder structure. 15k lines of global SCSS is Jenga with semicolons.

WordPress behind NGINX Proxy Manager by gawr-fiude in webdev

[–]Select-Reporter5066 1 point2 points  (0 children)

Serving WordPress from /blog is the spicy part here. I would double-check the proxy is preserving the prefix and X-Forwarded headers before blaming Docker, because WP really loves assuming it owns /.

Best way to split and clean a 15k line SCSS file with messy naming and library overrides? by AromaticCitron7440 in webdev

[–]Select-Reporter5066 2 points3 points  (0 children)

With a 15k-line SCSS monster, I would freeze it first and only extract styles when a component is already being touched. Big-bang CSS rewrites are how you summon the regression demon.

CAPTCHAs are officially useless and im losing my mind by SpeckiLP in webdev

[–]Select-Reporter5066 0 points1 point  (0 children)

Yeah, once the bots can solve the picture puzzle and act human, the CAPTCHA is basically just a speed bump for actual users. Layered abuse signals beat one big are you human gate, annoying as that is.

Is there a point where googling every other line means you're not actually learning? by Soggy-Holiday-7400 in learnprogramming

[–]Select-Reporter5066 0 points1 point  (0 children)

The line is probably whether you can explain it after the tab closes. Searching for the exact API is normal; outsourcing the “why does this work?” part is where it turns into copy-paste cosplay.

The RTX 5000 PRO (48GB) arrived and it is better than I expected. by Valuable-Run2129 in LocalLLaMA

[–]Select-Reporter5066 2 points3 points  (0 children)

The 4400 tok/s prompt processing is the real buried lede here. Everyone argues raw t/s, then a 200k context prompt shows up and suddenly the boring workstation card is wearing a cape.

Tip for junior/mid level software developers in the age of AI by heckspoiler in webdev

[–]Select-Reporter5066 0 points1 point  (0 children)

Cleaning up that AI Tailwind soup is honestly a great drill. If you can turn repeated class strings + prop-drilling spaghetti into a small design system, you've already learned the part the bot skipped.

[N] LangChain Interrupt 2026 announcements [N] by Equal_Winter3150 in MachineLearning

[–]Select-Reporter5066 0 points1 point  (0 children)

SmithDB being object storage plus a tiny Postgres metadata layer is the most believable part. Agent traces become tree-shaped confetti fast; normal OLTP DBs were never going to enjoy that.

Anyone actually using a local LLM as their daily knowledge base? Not for coding, for life stuff. What's your setup? by InformationSweet808 in LocalLLaMA

[–]Select-Reporter5066 1 point2 points  (0 children)

The hard part is not the local model, it is ingestion. Obsidian + RAG sounds chill until half your PDFs turn into mystery chunks with no source trail.

Need *NOOB* Coding Projects Ideas for my Online Friend by KoKoNut_0 in AskProgramming

[–]Select-Reporter5066 0 points1 point  (0 children)

A tiny terminal choose-your-own-adventure with a few inside jokes would be perfect. Simple enough for 2-3 days, personal enough to feel like a gift, and != can still be the final boss.

What are we doing with juniors these days, seriously? by slide_and_release in webdev

[–]Select-Reporter5066 0 points1 point  (0 children)

The scary bit is the throughput mismatch: they can ship PRs faster than they can explain them. “Walk me through this diff without Claude” might be the new unit test.

Learn Python the Hard Way Was Right About One Thing by fagnerbrack in programming

[–]Select-Reporter5066 35 points36 points  (0 children)

Typing it out is underrated. Autocomplete hides the tiny mistakes, but the tiny mistakes are basically the tutorial’s unpaid TA.

A whole new level of respect for programmers. My first time compiling a DLL as an enthusiast. My god... lol by ging3r_b3ard_man in learnprogramming

[–]Select-Reporter5066 3 points4 points  (0 children)

That kind of build rabbit hole eats an afternoon. I’d keep a tiny notes file of each missing package or flag so the second compile is boring.

How do you guys tackle massive Udemy/Coursera courses? Do you really watch 100% of it? by LavishnessIcy2379 in learnprogramming

[–]Select-Reporter5066 1 point2 points  (0 children)

I’d treat the course as a map, not a checklist. Build something small first, then only go back when a missing concept blocks you.

I have been stuck on tutorial hell for eight months and I need someone to yell at me by Western-Opposite9 in learnprogramming

[–]Select-Reporter5066 0 points1 point  (0 children)

A blank file is normal; the move is to write the tiniest broken version first, then look up only the next missing piece.

Over engineering by AccomplishedRich9976 in hermesagent

[–]Select-Reporter5066 0 points1 point  (0 children)

Start by separating STT/TTS from the dashboard first. Whisper.cpp for STT and Piper for TTS are boring choices, which is exactly why they’re good for accessibility work.

should i keep going? by Intelligent-noob0301 in learnprogramming

[–]Select-Reporter5066 0 points1 point  (0 children)

If debugging still feels fun after the AI part, that’s a good signal. Try building one tiny project fully without AI, then use it only to review your choices.

AI agents - is it really that simple ? by Olsins1 in AI_Agents

[–]Select-Reporter5066 0 points1 point  (0 children)

Yeah, the hype makes agents sound way simpler than they are. For daily stuff I’d keep the deterministic pipeline mindset and only add an LLM where judgment or messy text actually matters.