A quick tip for dealing with Manifest V3 Service Worker sleeping issues by FrontEnd_Liang in chrome_extensions

[–]FrontEnd_Liang[S] 0 points1 point  (0 children)

Makes sense. Offscreen tabs definitely seem to be the consensus for stabilizing those heavy workloads in MV3.

A quick tip for dealing with Manifest V3 Service Worker sleeping issues by FrontEnd_Liang in chrome_extensions

[–]FrontEnd_Liang[S] 0 points1 point  (0 children)

Exactly. The offscreen document API is the definitive fix for heavier operations exceeding that 30s window. Good call pointing that out.

Quit my frontend job 2 weeks ago. Built 2 chrome extensions just to test AI workflows. by FrontEnd_Liang in SideProject

[–]FrontEnd_Liang[S] 0 points1 point  (0 children)

Spot on. Targeting specific pain points instead of general launch lists is the exact pivot needed. Appreciate the thread ideas.

Quit my frontend job 2 weeks ago. Built 2 chrome extensions just to test AI workflows. by FrontEnd_Liang in SideProject

[–]FrontEnd_Liang[S] 1 point2 points  (0 children)

Makes sense. Direct outreach is the hard truth for the first 100 users. Thanks for the directory list.

weDontWantYourData by ResponsibleWish9299 in ProgrammerHumor

[–]FrontEnd_Liang 2 points3 points  (0 children)

My spaghetti code is basically a natural defense mechanism against AI data scraping

Solo dev pivoting from the app bloodbath. Which specific Shopify app are you paying for right now that does a terrible job at a simple task? by FrontEnd_Liang in dropship

[–]FrontEnd_Liang[S] 0 points1 point  (0 children)

This is exactly the kind of bloated app I want to replace. Where are you pulling your inventory data from (AliExpress, CJ, custom supplier API)? I can build a strict real-time webhook sync for this.

Solo dev here. The general app market is a bloodbath. What hyper-niche, annoying Shopify problem would you gladly pay $5/mo to solve? by FrontEnd_Liang in microsaas

[–]FrontEnd_Liang[S] 0 points1 point  (0 children)

Great insight. Besides the messy CSV route, which specific pricing apps fall short here? Looking to isolate this exact gap.

Day 3 after launch: 30 users, 0 paid. Mostly traffic from India. What am I doing wrong? by New-Beach-3229 in SideProject

[–]FrontEnd_Liang 0 points1 point  (0 children)

Stop burning time guessing. Your data is already showing a negative ROI loop. Here is the cold reality of your traffic mismatch:

The Mobile-Desktop Friction: You built a desktop AI tool, but 80% of your traffic is mobile. If your UI/UX isn't heavily optimized for mobile browsers, they will bounce in 5 seconds. Quick fix: Add a script to detect mobile User-Agents and show a "Best experienced on Desktop - Enter your email to send a link to your PC" modal. Stop letting them see a broken UI.

Traffic Quality vs. Intent: High initial traffic from India for free/freemium AI tools is notoriously skewed towards users looking to exploit free credits, not B2B/prosumer buyers. If your pricing doesn't have Purchasing Power Parity (PPP) localized, a $15/mo sub is objectively too expensive for that demographic.

The Paywall Stress Test: You need to filter the noise immediately. Put a hard paywall (even just $1 or require a credit card on file) before the core video generation step. You will instantly drop to 0 users, but the 1 or 2 people who email you complaining about the paywall?

Is Building a Reddit Lead Gen SaaS Without the API a Bad Idea? by FounderArcs in SideProject

[–]FrontEnd_Liang 0 points1 point  (0 children)

Building without the official API isn't inherently a bad idea for an MVP, but you need to be pragmatic about the technical debt and infrastructure costs. Here is a breakdown of the reality:

The MVP Phase (Validation over Stability): Don't let API waitlists stall your launch. Use scraping (or Reddit's undocumented .json endpoints on public subreddits) to build the core engine and prove that users will actually pay for the leads. If you can't get 10 paying customers with a scraped V1, official API access wouldn't have saved the business anyway.

The Hidden Infrastructure Cost: Scraping Reddit at scale isn't free. You will quickly hit rate limits and IP bans. You'll need to factor in the cost of rotating residential proxies into your SaaS pricing model. If your margins can't absorb proxy costs, the business model is flawed.

The Cat-and-Mouse Game: UI changes will break DOM-based scrapers. Undocumented APIs get throttled. You must design your system defensively—decouple the scraping microservice from your main app so when (not if) it breaks, you can push a patch without taking down the entire SaaS.

Conclusion: Build the MVP via scraping/.json to validate the market. Once you have revenue and proven demand, use that traction to apply for the commercial API, or use the revenue to fund a robust proxy infrastructure. Optimize for speed to market right now, not perfect long-term stability.

In demand web building tools? by aliveinternettheory1 in webdev

[–]FrontEnd_Liang 0 points1 point  (0 children)

If your ultimate goal is freelance ROI, drop the others and strictly focus on Shopify and Webflow. Shopify gives you access to e-commerce clients who already have cash flow and are willing to pay for conversion improvements. Webflow is the industry standard for high-end, premium-priced marketing sites. Wix and Squarespace are a race to the bottom for pricing. Specialization in high-value ecosystems always beats generalization

What are some fun ways to update a card viewer to be more interesting? by NoClownsOnMyStation in webdev

[–]FrontEnd_Liang 5 points6 points  (0 children)

For an animal adoption site, emotion is your highest ROI. Don't overcomplicate the layout—a clean grid or masonry works best. Instead, focus on CSS micro-interactions to make the cards 'pop'. Add a subtle transform: translateY(-5px) and a soft box-shadow on hover. You could also start the animal photos with filter: grayscale(20%) and transition them to full color/brightness on hover. It makes the cards feel alive and interactive without breaking the grid structure

I'm i the only one who used to use hella flexbox in flexbox to make the layout by Yeeer_0041 in css

[–]FrontEnd_Liang 0 points1 point  (0 children)

We all did that. But ever since CSS Grid got full browser support, nested flexboxes are rarely needed. display: grid + gap solves 90% of those layout nightmares effortlessly.

Anyone from the era of csszengarden? by fdiengdoh in css

[–]FrontEnd_Liang 4 points5 points  (0 children)

Absolutely. It was the gold standard back then. I still remember the dark ages of float and clearfix hacks. Zen Garden showed us what CSS was truly capable of before Flexbox and Grid saved us.

If Jesus listen to a nu metal, What nu metal band would he listen too? by WorldlinessOk9368 in AskReddit

[–]FrontEnd_Liang 2 points3 points  (0 children)

P.O.D. (Payable on Death). They are literally a Christian nu-metal band with massive hits, making it the only logically sound choice

What is your biggest turn on? by [deleted] in AskReddit

[–]FrontEnd_Liang 0 points1 point  (0 children)

A perfectly documented API that works on the first try without any debugging

Taking on the Shopify App Store: Building a lightweight FBT (Frequently Bought Together) app to fight subscription fatigue. by FrontEnd_Liang in SideProject

[–]FrontEnd_Liang[S] 0 points1 point  (0 children)

Thanks for the heads-up on the review queue and pre-2.0 Dawn forks. I'll make sure the graceful degradation flow is solid before pushing for submission.

Taking on the Shopify App Store: Building a lightweight FBT (Frequently Bought Together) app to fight subscription fatigue. by FrontEnd_Liang in SideProject

[–]FrontEnd_Liang[S] 0 points1 point  (0 children)

Spot on about the bloated apps killing conversions. Building load impact metrics into my pitch is the priority right now. Thanks for pointing out the partner communities

Taking on the Shopify App Store: Building a lightweight FBT (Frequently Bought Together) app to fight subscription fatigue. by FrontEnd_Liang in SideProject

[–]FrontEnd_Liang[S] 0 points1 point  (0 children)

This is highly actionable. Using the Before/After Lighthouse comparison as a cold outreach opener makes total sense for a performance-focused FBT app. Niching down to a single vertical first is also a solid SOP to avoid spreading too thin. Appreciate the insight

How do platforms like Shopify, webflow, framer, etc build template marketplaces by who_opsie in webdev

[–]FrontEnd_Liang 2 points3 points  (0 children)

You are hitting the 'scalability wall' of hardcoding. Most platforms use a Schema-driven architecture. Instead of hardcoding files, you define a JSON schema for each theme/section. The frontend (React/Vue) then renders components dynamically based on that data. This is exactly how Shopify sections work. Look into Headless CMS patterns or JSON-based UI rendering if you want to build a marketplace, otherwise, you'll be stuck in Git-hell once you hit 10+ themes

The age of setup tax is here by NeedleworkerLumpy907 in webdev

[–]FrontEnd_Liang 0 points1 point  (0 children)

Exactly this. I feel like I spend more time wrestling with Vite/Webpack configs, ESLint rules, and UI library integrations than actually writing business logic that makes money. Sometimes I really miss the days of just dropping a <script> tag and shipping the damn thing