Viewing profile — turnipla
turnipla
HN member- Joined
- Sun, Mar 22, 2020, 3:12 AM UTC
- HN karma
- 121
- Public activity
- 36 items
- HN profile
- View on Hacker News ↗
About turnipla
No profile information was provided.
Recent public activity
-
comment
Comment #23251260
Downvoted why? I told the truth. Why would you use an antiquated feature that's not up to par with SVG? The absolutely ridiculous part of this is that they're using JS to create ad…
-
comment
Comment #23244873
And that’s a bad idea. HTML images maps are not responsive. Just use SVG, it works without any scripts and it resizes with the image. If you use you can also use a fully responsive…
-
comment
Comment #23217345
> Why would you want to see Laotian? Statistically speaking, Laotian users speak Laotian. As a traveler, I’m the minority. Regarding the rest, I feel you. They can guess whatever l…
-
comment
Comment #23217223
Yes and no. I’m in Switzerland, please follow my browser language. Don’t guess whether I speak Swiss, French, Italian, etc I’m in Laos, my OS is in English. Please show me Laotian.…
-
comment
Comment #23217157
Why wouldn’t Germans have their “browser languages configured correctly?” German is well supported by software. If Germans want German content, they’ll have their OS set to use Ger…
-
comment
Comment #23216786
I don’t think you ever used CS before and don’t understand it regardless of the current situation (which will resolve eventually) COVID surely affected all hospitality, but money i…
-
comment
Comment #23207519
This is exactly it!
-
comment
Comment #23205421
This breaks my use case function shorten(text, length) const t = document.createElement('input') t.maxlength = length t.value = text return t.value }
-
comment
Comment #23202973
Google used to let you blacklist websites many moons ago, that would go a long way already. Now there are a few extensions that do that, but obviously they only hide the results fr…
-
comment
Comment #23193133
It depends. Neat short animations can be nice. Even your lightbulb “dimming in” and out would be quite nice. What you’re complaining about is the lightbulb taking 3 seconds to turn…
-
comment
Comment #23193048
Hey that Makepad looks great. Too bad it doesn’t make my phone keyboard appear. You know… the same thing you get by adding a plain `contentEditable` DOM attribute. Maybe reinventin…
-
comment
Comment #23180880
I love that it stores 6000 mails in 6.0 Megabytes.
-
comment
Comment #23180603
> The fact I have to go three menus deep just to open the history screen is bad History is never more than 2 clicks away: - Open Library button, click History - Open History menu (…
-
comment
Comment #23154901
There's a comparator on apple.com: https://www.apple.com/mac/compare/
-
comment
Comment #23152195
You’re talking about ecommerce, not automation. Automation is unrelated to where products are sold. Automation might just mean one fewer cashier at a regular store.
-
comment
Comment #23151728
How does this make sense? Automation lowers prices, not margins. The prices go down because you don’t have to pay people. If it costs the same, you don’t lower prices just because …
-
comment
Comment #23110661
> extremely engaged with and integrated into the global system, beholden to Law and a robust court system Uhm yeah but countries do nothing when Russia annexes Crimea, what do you …
-
comment
Comment #23054460
You’re confusing static with serverless. Your content is indeed static but your search is not: It’s handled by a service that parses your requests and produces output. Static conte…
-
comment
Comment #23019763
All of that doesn’t seem to belong on to CLI flags. I love the possibilities this opens up, but I’d much rather write a configuration file.
-
comment
Comment #23001624
I never got into React, but seeing it compared to Svelte I find it hilariously convoluted. Hooks make it even worse.
-
comment
Comment #22985227
This is correct. Many tools are split into multiple packages for — hear me out — convenience. I regularly extract features from my apps into new npm packages. This way they can be …
-
comment
Comment #22985191
Good luck vendoring node_modules. Why are these threads filled with people who know nothing about node? npm and yarn both have lockfiles for this purpose. Vendoring only bloats you…
-
comment
Comment #22981713
This is not a library. Stop thinking of it as a library. It's a building block, a module. > why a library like this is even necessary? Do you know how to determine whether somethin…
-
comment
Comment #22954557
I think that’s the point. No plugin system. Compare Babel to Bublé or even Sucrase for example: https://github.com/alangpierce/sucrase Preparing data for external use always takes …
-
comment
Comment #22951615
I don’t think it’s a language issue. Even for JavaScript bundlers you have the slow extensible bundle and the “new super fast bundler” that dies in a month because it only fits one…