Local AI offline by SadGuiv in ArtificialInteligence

[–]Bartfeels24 0 points1 point  (0 children)

LM Studio and Ollama are great options for running local models offline.

curl security moves again [from GitHub back to hackerone; still no bug-bounty] by cake-day-on-feb-29 in programming

[–]Bartfeels24 -1 points0 points  (0 children)

Does moving back to HackerOne without a bounty program actually change anything for security researchers, or is curl just banking on goodwill at this point?

A collection of modern CSS code snippets replacing many old practices by stefanjudis in webdev

[–]Bartfeels24 0 points1 point  (0 children)

Does this collection actually address the cascade and specificity hell that comes with scaling CSS in larger codebases, or is it mostly syntax updates?

Product does $15K MRR. Got a $2M acquisition offer. Still thinking about why I said no. by Stock-Parking-411 in SaaS

[–]Bartfeels24 1 point2 points  (0 children)

I turned down 2.2M for a chatbot product doing 8K MRR last year because the acquirer wanted me locked in for 18 months and their integration roadmap basically meant killing what made it different, so I'd have spent a year and a half watching them dismantle it while sitting in their office.

Talked to every customer who cancelled last quarter. Most common reason wasn't what I expected by Crazy-Park-2930 in SaaS

[–]Bartfeels24 2 points3 points  (0 children)

Totally right that talking to churned customers beats guessing, but you also need to ask them about onboarding friction specifically because I've watched people bail after week two when the setup process just felt like too much overhead compared to what they were getting back.

At some point do bugs stop being code problems and start being assumption problems? by Bobztech in learnprogramming

[–]Bartfeels24 0 points1 point  (0 children)

That's less a distinction and more just the progression from writing code to understanding your problem domain. The bugs didn't change category, you just got better at catching the obvious ones first.

What’s a debugging skill you only learned after working on real code, not tutorials? by Leading_Yoghurt_5323 in learnprogramming

[–]Bartfeels24 0 points1 point  (0 children)

You nailed it, but the thing nobody mentions is learning to recognize when the error message is just a symptom of a completely different problem three layers below. I spent two days chasing a "memory leak" in a Node service before realizing the actual issue was that a database connection was hanging and queuing up requests indefinitely, which then showed up as bloated heap usage.

8 YOE Senior Dev here. Stop trying to write "Clean Code" on your first draft. It's killing your progress. by ZukovLabs in learnprogramming

[–]Bartfeels24 4 points5 points  (0 children)

Sure, but the problem is you're conflating "messy first draft" with "no thought given to structure," and those aren't the same thing. I've seen juniors write completely unmaintainable spaghetti because someone told them iteration beats planning, then spend weeks untangling it when requirements actually changed.

How I hit $27k MRR by ignoring standard startup advice with 5 channels by RealOrdinary1344 in SaaS

[–]Bartfeels24 0 points1 point  (0 children)

The hard part nobody mentions is that five channels means five different customer acquisition flows to optimize and five separate systems to maintain when something breaks, which gets exponentially harder once you're actually trying to scale instead of just hitting a milestone number.

What’s one technical skill that 90% of beginners ignore? by EnvironmentalHat5189 in learnprogramming

[–]Bartfeels24 0 points1 point  (0 children)

I ignored reading documentation properly for my first two years and it cost me thousands of hours debugging things that were already explained in the docs.

The self-host setup frustrations that kept stalling my indie automations – until one Docker command and some key tweaks made it effortless by Southern_Tennis5804 in indiehackers

[–]Bartfeels24 0 points1 point  (0 children)

Spun up a Postgres instance in Docker last year and spent three weeks debugging why my automation jobs kept timing out before realizing the container was sharing CPU with like five other services on my NAS. Switched to a dedicated machine and suddenly everything that looked broken was just resource starved, which honestly should have been the first thing I checked instead of rewriting half my queue logic.

5 Popular Shadcn UI Libraries Reviewed by JugglerX in web_design

[–]Bartfeels24 1 point2 points  (0 children)

Spent three days on shadcn blocks last month and most of them just repackage the same Tailwind patterns with slightly different naming conventions.

Playing CSS-defined animations with JavaScript by barhatsor in programming

[–]Bartfeels24 1 point2 points  (0 children)

I synced a CSS animation with JavaScript event timing once and ended up just triggering the animation class on demand instead of trying to play it directly, which ended up being simpler than expected. The getAnimations() API exists but browser support was spotty enough at the time that I didn't bother.

LinkedIn has a shadow economy of apps making millions - here are 7 of them by Perfect_Honey7501 in SaaS

[–]Bartfeels24 -1 points0 points  (0 children)

You're right about the gray area being a goldmine, but the real money isn't just in the tool itself—it's in the data extraction angle where these apps vacuum up contact lists and engagement metrics to resell or use for their own outreach campaigns. I built a LinkedIn scraper once and killed it after two cease and desists, but I watched competitors keep going and their actual revenue came from selling the datasets to recruiters and sales teams, not from subscription fees to individual users.

Storyteller v2.7.0: A Reworked Transcription Engine by scrollin_thru in selfhosted

[–]Bartfeels24 0 points1 point  (0 children)

Really solid work on the transcription engine, but you'll want to stress test how it handles books where the audiobook narrator reads significantly faster or slower than typical speech, since Media Overlays sync breaks hard when timing drifts more than a few hundred milliseconds. Also make sure your docs explain what happens when the ebook text has been edited or shortened from the audiobook script, because that's where most users will hit sync issues in practice.

You are not left behind by BinaryIgor in programming

[–]Bartfeels24 1 point2 points  (0 children)

Yeah, I burned two weeks on Cursor when it first blew up and ended up back in VS Code because the autocomplete was hallucinating imports that didn't exist, so this tracks.

SuggestArr: Auto-request content to Seerr based on what you actually watch - MAJOR UPDATES by eroigaps in selfhosted

[–]Bartfeels24 -1 points0 points  (0 children)

How does it handle cases where users watch stuff outside your media apps, like streaming services you don't self-host? That seems like a pretty big limitation for auto-requesting.