I feel sorry for game developers who are forced to use AI, or are even replaced by it…
https://aftermath.site/ai-video-game-development-art-vibe-coding-midjourney

I feel sorry for game developers who are forced to use AI, or are even replaced by it…
https://aftermath.site/ai-video-game-development-art-vibe-coding-midjourney
If what you want isn't beveled, but scooped corners, then you can do it with a `radial-gradient()` mask. You can even add borders too!
Here's a @codepen demo illustrating this https://codepen.io/thebabydino/pen/VYwObZN
Pure #CSS, no SVG.
I haven't had the time to do anything for this week's #CodePenChallenge yet, but here are some older card demos:
From 5+ years ago: pure #CSS 1 element bevel cards! No SVG or images save for the cat, real (semi)transparency inside borders and all.
See it on @codepen https://codepen.io/thebabydino/pen/ZEGNNQz
...speaking of #ww2, remember these guys? #Navajo #code talkers
https://www.nationalww2museum.org/war/articles/american-indian-code-talkers
...crazy how who we are and what we know is only valued when it can be #exploited for their purposes... which is mostly #war mongering and tricking us into exploiting each other so they can forget us a11 when its done, and then wipe our names from the registry of existence they lie about and mislabel #history ...
Here's a quick responsive clover layout on @codepen https://codepen.io/thebabydino/pen/RNwmjEQ?editors=0100
Was sehr #verdächtig ist:
Immer wenn ich auf dem Nummernblock einen #2FA-Code eingebe, dann sind die #Nummern so "#zufällig" ausgewählt, das ich nie mehr als 1 Taste überspringen muss um den #Code vollständig einzugeben!1!elf!
@ptrc if one can't be assed to #code and #document themselves, why should I use their #software or trust their #documentation???
Fun Safari bug
Am I stupid, or is TypeScript's understanding of symbols... extremely... unfortunate?
Saw a @codepen demo using... a lot! of elements (screen 1) and quite a bit of #CSS to create a simple loader, so I forked it and made a 1 div version (screen 2) in under 30 CSS declarations (gradients, mask, variables to only change --c0 and --c1 values for 2nd loader): https://codepen.io/thebabydino/pen/PwoLJLR
Mastodon
If you can test on actual Safari (not another browser), does https://codepen.io/thebabydino/pen/EaxJmwJ?editors=1100 look the same for you as it does in my Epiphany screen? Or does the `conic-gradient()` cover the entire area?
Retoots appreciated if you cannot test. Thanks!
PS: Yes, I know it does NOT work in Firefox or Chromium browsers https://github.com/web-platform-tests/interop/issues/717
I refactored the [[Bookcase]] in my wiki … it might be a good topic for a video tutorial someday.
Instead of loading in different stored lists as a way of filtering the content, I now have one list that is filtered dynamically that both list (text) views and cover (image) views adhere to, making for neat on-the-fly re-arranging of the same list, and much more optimized.
Here are 5 simple code examples to get you started in CSharp!
Are you considering CSharp as you get started on your programming journey?
(Hint: The right answer is yes!)
If you're a beginner who's just getting started and want to see some simple code examples that cover some different aspects of CSharp, this is a quick read to check out!
Check out the article:
https://www.devleader.ca/2024/02/22/c-for-beginners-5-simplified-concepts-in-c/
I built a Rust crate for running unsafe code safely
Why isn't `filter` allowed on `:first-letter` anyway? https://developer.mozilla.org/en-US/docs/Web/CSS/::first-letter
I've spent the afternoon writing an EPUB format writer for @novelwriter. It now has all the meta data XML files and can dump raw text of the novel without text formatting, so that's very good progress.
Next is of course to make it also format the text itself for the pages.
It's an interesting format to work with, and like ODT and DOCX is rather messy. Like DOCX, I get the feeling it's been modified a lot too.
Question to TypeScript wizards, can I somehow infer the functions inside funcs so I don't have to pass them as a generic with defineNode? If I don't pass them at all, I get a TS error because init() doesn't know about hello() existing.