frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

OpenWeather API – Real-Time Weather Data for Your Apps

https://openweathermap.org/api
1•tsuyoshi_k•2m ago•1 comments

Falsehoods programmers believe about time

https://gist.github.com/timvisee/fcda9bbdff88d45cc9061606b4b923ca
1•pykello•2m ago•0 comments

The Business Consultant

https://quarter--mile.com/The-Business-Consultant
1•surprisetalk•2m ago•0 comments

AI Induced Psychosis: A shallow investigation

https://www.lesswrong.com/posts/iGF7YcnQkEbwvYLPA/ai-induced-psychosis-a-shallow-investigation
1•surprisetalk•2m ago•0 comments

Collecting my thoughts about notation and user interfaces

https://interconnected.org/home/2021/08/12/notation
1•andsoitis•3m ago•0 comments

Open-Sourcing Starlark Worker: Define Cadence Workflows with Starlark

https://www.uber.com/blog/starlark
1•andriika•3m ago•0 comments

React Data List: Building Virtualized UIs Declaratively

https://attio.com/engineering/blog/react-data-list-building-virtualized-uis-declaratively
1•nc•5m ago•0 comments

When more threads make things worse

https://ordep.dev/posts/livelocks
2•thunderbong•5m ago•0 comments

Show HN: Element 0 – A small embeddable Lisp written in Zig

1•habedi0•6m ago•0 comments

AI will consume all of IT by 2030–but not all IT jobs, Gartner says

https://arstechnica.com/information-technology/2025/09/no-ai-jobs-bloodbath-as-ai-permeates-all-i...
1•ptrhvns•7m ago•0 comments

Autonomy of AI agents is exploding – why, and what it will change (a lot)

https://m-ric.com/blog/agents-autonomy-explodes/
1•aubanel•8m ago•0 comments

How Bill Gates's fellowship program is adapting to global uncertainty

https://techcrunch.com/2025/09/11/how-bill-gatess-fellowship-program-is-adapting-to-global-uncert...
1•rntn•9m ago•0 comments

Show HN: Typosquat Detective: Browser game to practice lookalike domains

https://typo.himanshuanand.com/
1•unknownhad•9m ago•0 comments

Rednuggets

https://rednuggets.com
1•businexmonday•10m ago•1 comments

Blue Alchemist Hits Major Milestone Toward Sustainable Lunar Infrastructure

https://www.blueorigin.com/news/blue-alchemist-hits-major-milestone-toward-permanent-sustainable-...
1•rbanffy•11m ago•0 comments

'Biomining' seaweed explored for critical minerals to improve domestic supply

https://phys.org/news/2025-08-biomining-seaweed-explored-critical-minerals.html
1•PaulHoule•11m ago•1 comments

Abstractions Are in the Eye of the Beholder

https://software.rajivprab.com/2019/08/29/abstractions-are-in-the-eye-of-the-beholder/
1•whack•11m ago•0 comments

Tasting Notes with Robin Sloan

https://every.to/superorganizers/tasting-notes-with-robin-sloan-25629085
1•andsoitis•12m ago•0 comments

California bill that would regulate AI companion chatbots close to becoming law

https://techcrunch.com/2025/09/10/a-california-bill-that-would-regulate-ai-companion-chatbots-is-...
1•artninja1988•15m ago•0 comments

CRISPR Offers New Hope for Treating Diabetes

https://www.wired.com/story/no-more-injections-crispr-offers-new-hope-for-treating-diabetes/
1•manveerc•16m ago•0 comments

Memexes, mountain lakes, and the serendipity of old ideas

https://interconnected.org/home/2021/02/10/reservoirs
1•andsoitis•17m ago•0 comments

La-Proteina

https://github.com/NVIDIA-Digital-Bio/la-proteina
1•birriel•17m ago•0 comments

A simple Zettelkasten is the best way to start

https://eljardindegestalt.com/en/notes/2025-08-14/
1•MarcusE1W•18m ago•0 comments

The importance of process, organ harvesting edition

https://www.cnn.com/2025/09/11/health/organ-donor-surgery-kff-health-news
1•dxs•19m ago•0 comments

Business Insider Pulls 40 Essays After Getting Conned by AI-Using Scammers

https://www.techdirt.com/2025/09/11/business-insider-pulls-40-essays-after-getting-conned-by-ai-u...
3•speckx•20m ago•0 comments

Every map is wrong, but we made one anyway: an interview with Kyle Kingsbury [video]

https://www.youtube.com/watch?v=2xh4kuRa_Rc
1•rlio•21m ago•0 comments

Teens are adjusting to the smartphone ban

https://gothamist.com/news/from-burner-phones-to-decks-of-cards-nyc-teens-are-adjusting-to-the-sm...
14•geox•22m ago•14 comments

The short case for Oracle (via ChatGPT)

1•randomname4325•22m ago•0 comments

Math for Journalists

https://observablehq.com/@nshiab/math-for-journalists
2•speckx•25m ago•0 comments

Aulico – Track all markets in one place using AI

https://www.aulico.com/
1•local_phi•26m ago•0 comments
Open in hackernews

WebView vs. Flutter in 1 Minute

https://cdn.prayershub.com/misc/thd2.mp4
1•kermerlerper•2h ago

Comments

kermerlerper•2h ago
A month ago, as I was inside Home Depot searching for plexiglass for our studio booth, I pulled up the Home Depot app to search for cheaper alternatives in-store than the ones I saw on the aisle.

However, the app was MISERABLY slow and janky. I blame this squarely on the fact that most of the app is just a webview. The search bar seems to be native, but everything after is just a website wrapper. And, surprise surpise, the website is slow as well. After about 7 minutes of intense frustration, I cursed the thing and just bought whatever was on the shelf.

But then it struck me.

"I'm a mobile app developer, what's stopping me from just making an optimized version that actually works!"

By "works", I mean:

- it's fast (even on Home Depot's WIFI)

- it's convenient (I can see aisle/bay right in the search results)

- it's clean (not janky/jumpy with loading spinners everywhere)

- it's powerful (create a list of items, and send that list as a link to someone else, no account required)

How it works, I basically have a proxy server between my app and home depot, that makes all the necessary calls BUT, it then filters out all the HTML and returns just the data needed with GRPC (though JSON could've worked as well).

That's how I made "THD Lite." There's still lots of work to be done, hence I'm not releasing it just yet. But so far, it hits the first three goals perfectly.

But, given that I'm not paid by Home Depot, I'm only adding the bits that I utilize. (unless of course ... Home Depot would like to change that, reach me at bookofcooks123@gmail.com).

Namely, what's being left out:

- All "Pro" features (subject to change)

- Online orders (I'm not trying to get sued)

- Anything that requires an account

afavour•1h ago
Correction: badly implemented web view vs Flutter
kermerlerper•1h ago
This is going to be a hot take, but I believe all web views are bad implementations for mobile apps. Primarily because a native app has all the styling, fonts, and client-side logic bundled with the app when it's installed.

A WebView loads those at runtime. So if you were intercept and track all the requests made by a WebView app, you'd see potentially hundreds of assets loading when you make a search query.

A native app doesn't need all those assets, it can make a simple API request to resolve this.

I can imagine a WebView could be bundled with the assets it needs, tho I doubt most people do this.

afavour•1h ago
> a WebView could be bundled with the assets it needs

Yeah this is it. A well integrated web view works very seamlessly. You only notice the ones done badly.

kermerlerper•1h ago
That's fair, tho tbh I don't know of a single WebView app that does this.

P.S: ok I guess it's because I don't notice them, lol