aron

@idiomatic
39 Followers
245 Following
52 Posts

I make websites, sometimes even for money. I then spend that money on things I prefer to own, such as groceries.

Also, I made a browser game called Threeka! You can play it, if you want, at https://threeka.com

Threekahttps://threeka.com
he/him?yes
favorite way to cook an egg?over medium

I haven't played around much with VS Code tasks, but I just configured one to check the current node version when I open a project and switch it over, if necessary. Expecting it to be pretty handy, since I've been burned one too many times by firing up a project in the wrong runtime environment, lol.

#webdev

Welcome to my website! It is an endless barrage of slowly blinking skeleton loaders.
Will meaningful content ever load in to replace them? Who could say!

#webdev

My favorite sandwich? Bread and butter. I call the butter "sandwich dressing."
This headline in The Guardian broke my brain

Okay, it's a known issue and they're gonna do something about it. Whew!

https://github.com/shadcn-ui/ui/issues/10320

[bug]: `shadcn init` silently creates a `feat: initial commit` git commit, breaking workflows that rely on explicit commit control · Issue #10320 · shadcn-ui/ui

Describe the bug Running npx shadcn@latest init in an existing git repository silently runs git add . && git commit -m "feat: initial commit" at the end of initialization, without any prompt or CLI...

GitHub

Whoa, the shadcn package init script silently commits its changes to your git repo with zero warning. Doesn't ask permission, just does it. And the commit message is utterly useless, too: "feat: initial commit".

It's a bit disconcerting, like opening your diary and finding that a stranger has written in it, lol.

#webdev

My best/worst #CSS proposal: a color-temperature media query for detecting whether a user's device has a blue light filter enabled (such as f.lux or Night Shift).

#webdev

Probably worth pointing out that you shouldn't actually use this in anything serious. The way the moiré-like pattern appears to a user can vary *quite a bit* depending on their browser engine and display, so you can't guarantee a controlled experience.

#webdev

Discovered this little #CSS trick by accident today.

background: repeating-conic-gradient(springgreen 359.6deg, rebeccapurple, navy);

You can play with the values to change how noisy or colorful the pattern is :)