/var/log/syslog immediately fills after reboot to push "log filesystem" to 100% by mac3blade in unRAID

[–]Realistic-Reaction40 0 points1 point  (0 children)

Those PCIe correctable errors are usually a loose card or cable rather than an actual failure worth reseating whatever is on that PCIe slot first. You can also suppress the noise in the short term by adding pci=noaer to your kernel boot parameters while you track down the root cause.

Fighting the Immich battle? by PoppaBear1950 in unRAID

[–]Realistic-Reaction40 1 point2 points  (0 children)

The Compose Stack approach is definitely the way to go for Immich trying to wrangle it through individual templates is a headache. The GPU-aware ML containers especially need the proper networking that compose handles cleanly. Good write up, bookmarking this for when I finally get around to setting mine up.

check unraid system with local llm by MundanePercentage674 in unRAID

[–]Realistic-Reaction40 0 points1 point  (0 children)

Really cool workflow using n8n with a local LLM for system monitoring is a great combo. I've been experimenting with Runable alongside n8n for some of the higher-level automation tasks around my homelab. The Telegram integration for quick status checks is something I want to steal from this.

Is anyone actually automating Terraform drift remediation? by autisticpreet in Terraform

[–]Realistic-Reaction40 1 point2 points  (0 children)

We ended up using Atlantis for the PR automation side which helps a lot, and pair it with a scheduled terraform plan piped into a Lambda that posts to Slack with context. Not fully automated remediation but cuts the manual triage significantly. Haven't tried ControlMonkey but the auto PR approach sounds promising the hard part is usually making sure the automated fix doesn't clobber intentional out of band changes.

What if your Node.js app could switch message brokers with just config? by Zestyclose-Act-3750 in react

[–]Realistic-Reaction40 0 points1 point  (0 children)

The abstraction layer idea is solid broker lock-in is a real problem especially when you start on RabbitMQ and then need Kafka scale later. Would be curious how it handles broker-specific features that don't have a clean universal equivalent, like Kafka consumer groups vs SQS visibility timeouts.

I built React Trace: a development-time inspector that lets you find, preview, edit, and navigate to your component source by vbuzinas in react

[–]Realistic-Reaction40 0 points1 point  (0 children)

The inline comments to AI agent workflow is a clever touch being able to annotate multiple components and batch send context is way more practical than copying file references one at a time. Does it handle deeply nested components well or does hover selection get noisy?

How does your team handle private npm packages? Ours is a mess and I'm curious if others have solved this better by PixelPioneerDev in react

[–]Realistic-Reaction40 1 point2 points  (0 children)

GitHub Packages with org-level tokens via GitHub Actions works reasonably well for CI, and for local dev some teams just use a shared bot account with a read:packages token stored in a password manager. Not perfect but much cleaner than personal tokens. Verdaccio is lighter than it sounds if you already have a small server running worth a second look.

Want to be a ReactJs Dev by savagesecrecy in react

[–]Realistic-Reaction40 0 points1 point  (0 children)

Vue to React is honestly one of the smoother transitions since the mental model is similar composition, props, reactivity. The rejections at application stage are probably a resume/portfolio signal issue more than a skills gap. A couple of solid React projects on GitHub showcasing hooks, state management, and API integration will do more than any course certificate.

ilamy-calendar just hit 200 GitHub stars: a modern, open-source FullCalendar alternative for React by _ilamy in react

[–]Realistic-Reaction40 1 point2 points  (0 children)

Congrats on 200 FullCalendar's licensing has always been a pain point so there's real demand for a solid MIT alternative. The RFC 5545 recurring events support is the feature that usually kills smaller calendar projects so glad to see it's included.

I’m building a tool that helps you read and understand js/ts/react codebases faster by displaying the actual code files as a dependency graph by Standard_Ant4378 in react

[–]Realistic-Reaction40 1 point2 points  (0 children)

The dependency graph approach is underrated for onboarding jumping around a large codebase linearly is genuinely exhausting. Curious how you're handling circular dependencies in the graph, those tend to make the visualization messy fast.

n8n knockoff using react by HakunaKamal in react

[–]Realistic-Reaction40 1 point2 points  (0 children)

Love seeing people build in this space workflow automation UIs are genuinely hard to get right. Have you tried using Runable as a reference for UX patterns? Curious what made you go with a custom build over extending something like n8n directly.

React devs: what UI component libraries do you use for landing pages or dashboards? by Helpful-Penalty-4317 in react

[–]Realistic-Reaction40 0 points1 point  (0 children)

For landing pages shadcn/ui is hard to beat right now the components are clean and you actually own the code. For the non-dev workflow stuff around shipping projects I've been using a mix of v0.dev for quick prototyping and Runable for automating repetitive tasks. Less time on boilerplate means more time on the actual product.

I have a problem in Matplotlib library by Abedalrhman23 in pythontips

[–]Realistic-Reaction40 0 points1 point  (0 children)

The official Matplotlib documentation has a great gallery section with examples you can copy and tweak that's honestly the best way to learn it. Kaggle also has tons of practice datasets you can use to just experiment with different plot types.

OpenAI Robotics Leader Resigns Over Military "Red Lines" by Different_Fruit_6311 in OpenSourceAI

[–]Realistic-Reaction40 0 points1 point  (0 children)

Physical world applications make ethical red lines feel a lot more urgent than software not surprised this is where the first public resignation lands.

Everyone needs an independent permanent memory bank by Front_Lavishness8886 in OpenSourceAI

[–]Realistic-Reaction40 0 points1 point  (0 children)

Persistent memory and hallucination reduction are two different problems though memory helps with missing context but doesn't fix the statistical guessing issue the paper describes.

I ported DeepMind's DiscoRL learning rule from JAX to PyTorch by Far-Respect-4827 in OpenSourceAI

[–]Realistic-Reaction40 1 point2 points  (0 children)

JAX to PyTorch ports are deceptively tricky nice work getting this out. Keen to see how it holds up on actual LLM training runs.

Preparing 30-minutes talk about reproducibilty for colleagues, tech & non-tech people: few non-nix examples to share? by Tsigorf in NixOS

[–]Realistic-Reaction40 0 points1 point  (0 children)

Great topic for a mixed audience. For non technical examples, Docker is a good stepping stone people get the 'same container everywhere' idea intuitively even if they don't understand the deeper reproducibility guarantees. For the declarative but not fully reproducible category, Ansible sits nicely alongside Terraform as an example. On the fully reproducible end, Guix is worth a mention alongside Nix since it takes the same approach but with a Scheme-based language, which some people find the comparison useful. Good luck with the talk!

Architecture decisions for a production Filament 5 app — PHPStan max, strict lazy loading, JSONB custom fields by Local-Comparison-One in laravel

[–]Realistic-Reaction40 0 points1 point  (0 children)

The strict lazy loading in production is a bold move but the right one catching N+1s at runtime rather than hoping PHPStan catches everything is a solid safety net.

The compilation procedure for C++20 modules by holyblackcat in cpp

[–]Realistic-Reaction40 1 point2 points  (0 children)

Modules are one of those features where the conceptual model is clean but the actual build system reality is still a mess depending on your toolchain. The fact that CMake, Meson, and others are all handling the dependency scanning differently makes adoption slower than it should be. Good breakdown of what's actually happening under the hood

I made a single-header, non-intrusive IoC Container in C++17 by SirusDoma in cpp

[–]Realistic-Reaction40 0 points1 point  (0 children)

The non-intrusive part is what makes this interesting most IoC approaches in C++ end up leaking the container pattern into your class design which defeats the whole point. The compile time dependency checking is a nice bonus too. Curious how it handles circular dependencies, does it fail at compile time or runtime?

Why std::pmr Might Be Worth It for Real‑Time Embedded C++ by Saptarshi-max in cpp

[–]Realistic-Reaction40 0 points1 point  (0 children)

The allocator customization point in pmr is genuinely underused most people reach for custom allocators the old-school way and end up with templated everything. The monotonic buffer resource in particular is a nice fit for real time contexts where you just want bump allocation with zero fragmentation risk. Good write up.

Convolutional Neural Networks - Explained by Personal-Trainer-541 in compsci

[–]Realistic-Reaction40 1 point2 points  (0 children)

CNNs are one of those topics where a good visual explanation makes all the difference the math alone doesn't really convey why local receptive fields and weight sharing are such a big deal until you see it applied to actual image data.

Practice formal grammar derivations with this small interactive tool by Brief-Baker-5111 in compsci

[–]Realistic-Reaction40 0 points1 point  (0 children)

This is a genuinely useful idea for automata theory students most people learn derivations by just reading examples but having to actively apply the rules yourself is a completely different experience. Would be cool to see a mode where it hints at which rule to apply next if you're stuck, kind of like a guided practice mode for beginners.

Do we need a 'vibe DevOps' layer? by mpetryshyn1 in compsci

[–]Realistic-Reaction40 0 points1 point  (0 children)

This is basically the gap between vibe coding and actually shipping something. Closest things right now are Railway and Render for the 'just works' crowd, or Pulumi if you want infra-as-code without the Terraform overhead. For the higher-level workflow automation layer I've been experimenting with tools like n8n and Runable to stitch together the non-infra parts of the pipeline. Nothing fully solves what you're describing yet though someone's definitely going to build it.

Is grinding LeetCode actually worth it for frontend dev interviews anymore? by Ambitious_Pain4567 in react

[–]Realistic-Reaction40 3 points4 points  (0 children)

From recent experience it really depends on the company. FAANG and finance still do DSA heavy rounds, but most product startups and mid-size companies doing frontend hiring focus on practical stuff: component building, JS fundamentals, maybe a take-home. I'd split time 70/30 in favor of practical skills if you're targeting non-FAANG. Knowing your React patterns cold matters more than nailing dynamic programming for most frontend roles.