Recent Posts

370written posts
elliearned bits
offlinecurrently
elli
Senior Member
elli Avatar
ok, so figma is actually amazing to design with? nobody told me this? no one told me about auto layouts so i don't have to manually push pixels in photoshop every time i move columns and rows? no one told me about components so i don't have to duplicate the same fucking group 20 times? tf bruh
last edit on Nov 12, 2022 19:30:49 GMT by elli
After over 17 years, I've decided to move on from ProBoards. If you need to contact me, find me on my website.
370written posts
elliearned bits
offlinecurrently
elli
Senior Member
elli Avatar
i just logged into tumblr for the first time in ??? and found that someone made a blog called "therpctea". tbh reading these anon posts makes me feel very validated in leaving behind rping. this all sounds like a shit show.
last edit on Oct 14, 2022 22:36:05 GMT by elli
After over 17 years, I've decided to move on from ProBoards. If you need to contact me, find me on my website.
370written posts
elliearned bits
offlinecurrently
elli
Senior Member
elli Avatar
Coyote Avatar
Covid+Flu shot at the same time feels like I'm gonna meet god
it really does. awful, awful choice to get both at the same time. will probably do it again, tho...
After over 17 years, I've decided to move on from ProBoards. If you need to contact me, find me on my website.
370written posts
elliearned bits
offlinecurrently
elli
Senior Member
elli Avatar
pharaoh leap Avatar
So apparently .webp files are much smaller and relatively lossless, so I feel less like the Internet collectively changed file types to .webp specifically to cater to NFT dudebros and more like an idiot for jumping to that conclusion in the first place, dfljkdhsfkjdhfkjdsh. Still wish they'd open in my image viewer program, though, hhhhhhh.

i recently learned how to use webp!! you can open them with your browser, like just drag + drop to chrome or firefox. you can make your browser the default program associated with the .webp extension so that you can double-click on the file to open it immediately.

to make them was slightly more convoluted than i'd hoped, but still not bad. there's actually a photoshop plugin:

helpx.adobe.com/photoshop/kb/support-webp-image-format.html

OR the method i've been using is the CLI. you can install it with homebrew on mac:

www.ticktechtold.com/install-convert-images-into-webp-mac/

here's some other options, and the official page on google developers:

www.hongkiat.com/blog/webp-guide/
developers.google.com/speed/webp

and FINALLY to actually use it on a web page, this MDN article and another article by jason grigsby were very useful in putting it all together:

developer.mozilla.org/en-US/docs/Learn/HTML/Multimedia_and_embedding/Responsive_images
cloudfour.com/thinks/responsive-images-101-definitions/

this is an example with graceful degradation that i'm using, though i'm not sure if i'm using the `sizes` attr correctly:

<picture>
 <!-- Preferred -->
 <source type="image/webp"
         srcset="banner.1920x600.webp 1920w,
                 banner.1400x600.webp 1400w,
                 banner.1200x400.webp 1200w,
                 banner.928x400.webp 928w"
         sizes="100vw">

 <!-- Fallback for browsers that don't support webp -->
 <source type="image/jpeg"
         srcset="banner.1920x600.jpg 1920w,
                 banner.1400x600.jpg 1400w,
                 banner.1200x400.jpg 1200w,
                 banner.928x400.jpg 928w"
         sizes="100vw">

 <!-- Image element where the browser selects and loads an image from the options above, or loads a default if it doesn't support the <source> element -->
 <img alt="Landscape photograph of Utah's Salt Lake Valley."
      src="banner.928x400.jpg">
</picture>

kind of an info dump sry. hope that's helpful to someone!
last edit on Oct 9, 2022 23:16:32 GMT by elli
After over 17 years, I've decided to move on from ProBoards. If you need to contact me, find me on my website.
370written posts
elliearned bits
offlinecurrently
elli
Senior Member
elli Avatar
idindin Avatar
the ๏ผšis in another language
btw visual studio code does a great job catching illegal characters like that! it highlights them with a nice error message.
last edit on Oct 7, 2022 17:08:51 GMT by elli
After over 17 years, I've decided to move on from ProBoards. If you need to contact me, find me on my website.
370written posts
elliearned bits
offlinecurrently
elli
Senior Member
elli Avatar
Sola Avatar
puppies are harder to take care of than I remember... or do I just remember all the cute moments because I didn't have to wake up and feed them at six in the morning ?
their cuteness is blinding. one moment, you're scrubbing vomit out of your wool living room carpet, cursing the day you ever thought to bring home a puppy. the next moment, they're rolled over on their back, wagging their tail, asking for scritches, and it's like this blessed little being has done no wrong in their entire puppy life.
last edit on Sept 24, 2022 17:22:36 GMT by elli
After over 17 years, I've decided to move on from ProBoards. If you need to contact me, find me on my website.
370written posts
elliearned bits
offlinecurrently
elli
Senior Member
elli Avatar
idk what you guys have been through, but anyone who doesn't want to hear about CSS Grid or any of CSS Layout is Wrongโ„ข and will receive reeducation promptly. for years, we have Suffered through float layouts! and tables before that. they don't know how good CSS Layout is!
After over 17 years, I've decided to move on from ProBoards. If you need to contact me, find me on my website.
370written posts
elliearned bits
offlinecurrently
elli
Senior Member
elli Avatar
double post, but i used javascript promises for something other than async/await today. it might be good practice, or not. who knows? not me.
last edit on Aug 29, 2022 3:41:06 GMT by elli
After over 17 years, I've decided to move on from ProBoards. If you need to contact me, find me on my website.