Viewing profile — Kalabasa
Kalabasa
HN member- Joined
- Tue, Jun 20, 2023, 2:58 PM UTC
- HN karma
- 399
- Public activity
- 47 items
- HN profile
- View on Hacker News ↗
About Kalabasa
No profile information was provided.
Recent public activity
-
comment
Comment #49140438
It was actually implemented the same year as that announcement It was Chrome mobile only afaik. And yeah it was also silently killed. I guess the author didn't follow Google enough…
-
comment
Comment #48974154
Chrome mobile used to have a native RSS Following feature since 2021. https://blog.chromium.org/2021/05/an-experiment-in-helping-u... It seems they killed it in 2025, maybe to make…
-
comment
Comment #48002738
One term for these is "home-cooked" software. https://maggieappleton.com/home-cooked-software
-
comment
Comment #47559579
Nothing as heavy as the above but here's my small anecdote: I was putting off security updates on my npm dependencies in my personal project because it's a pain to migrate if the u…
-
comment
Comment #47511846
Yep. I was looking for a tiling/scrolling window manager for MacOS. Setting it up, learning the configs, reading github issues, learning the key bindings take time. Then I gave up …
-
comment
Comment #47489717
In video games or graphics, dithering can be an alternative to transparency. It's more performant too. I see this a lot in handheld consoles. As screen resolution and density incre…
-
comment
Comment #47272952
I think it's pointing to a version of the repo, so npm installs the package.json of that version of the repo.
-
comment
Comment #46692133
See also https://jordanbrennan.hashnode.dev/tac-a-new-css-methodology
-
comment
Comment #44014540
Object property access i guess. Like myObj["myProperty"] If it's a function then it could be invoked, myObj["myProperty"]() If the key was a symbol, myObj[theSymbol]()
-
comment
Comment #43851529
Shopify has an esports team called Shopify Rebellion
-
comment
Comment #43784255
I think this was what Google Plus was going for. Instead of friend graphs (mutual) or follower graphs (directed edges), they had Circles. Circles sound a lot like group chats. I gu…
-
comment
Comment #43564596
Yep, there are a lot of layers and compositing operations (maybe more than necessary?). I suppose it could be simplified further.
-
comment
Comment #43564585
Author here: Definitely cherry picked ;) I did deliberately pick some "bad" examples like the blue+green image, and other multicolor images. I wanted to add an upload function so p…
-
comment
Comment #43545627
Learned about the heart today! Thank you! I wonder what other types of cells / tissues can be simulated by cellular automata?
-
comment
Comment #42002925
Yep, a lot of headline readers here. It's just a very advanced autocomplete, completely integrated into the internal codebase and IDE. You can read this on the research blog (maybe…
-
comment
Comment #40412514
Nowadays, it's easy for people to see the term "generative art" and immediately assume "AI art". It's kinda annoying, so I wrote this post https://leanrada.com/notes/ai-art-not-gen…
-
comment
Comment #39805163
https://indieblog.page/random Something similar
-
comment
Comment #39490528
Wow, thanks! That header's so new. Just months ago. I just added an example using Sec-Fetch-Dest https://github.com/Kalabasa/htmz/commit/6ad3a76be3ee755bb5e7...
-
comment
Comment #39446536
Good guess! The initial intention was to use iframes. And so zero js needed. But iframes can't do * Deletion (e.g complete a todo list item) * Tail end append (e.g lazy loading inf…
-
comment
Comment #39438536
I like how they can animate their posts in this cohost social networking site. (See the transcript section)
-
comment
Comment #39438508
Yeah, querySelector(undefined) works Although location.hash defaults to the empty string '' when there is no hash, which gives a SyntaxError, so we still need the fallback selector…
-
comment
Comment #39435615
I have changed it to explicitly state within the first paragraphs that "htmz is an experiment" now. I started this as a joke but turned into a fun working solution - I myself am no…
-
comment
Comment #39435332
> hide all sections and shows the one that matches the hash Oh there is a good hack you can do here! I've been meaning to write a blog post about this exact thing! See CSS `:target…
-
comment
Comment #39435302
`?id=thing` is a great idea!
-
comment
Comment #39435276
It's just a weird feeling for someone to use a hack / experiment as a foundation or something. I know 'the software is provided "as is ", without warranty'. The difference with htm…