Replies

This profile is from a federated server and may be incomplete. Browse more on the original instance.

moshidon, to random
@moshidon@floss.social avatar

Very little cleaning up to do before @FineFindus's awesome settings backup system becomes just perfect

cassidy,
@cassidy@blaede.family avatar

@moshidon @FineFindus any chance it can hook into the Android app backup/restore stuff so it can be automatic? I hate when I forget to go manually save settings from apps before factory resetting…

https://developer.android.com/guide/topics/data/backup

ahoneybun, to random
@ahoneybun@hachyderm.io avatar

I just picked up the JBL Live 670NC for $100 and I'm enjoying them! Nice to have headphones with USB-C finally and OMG is Google's new Quick Connect tech nice!

cassidy,
@cassidy@blaede.family avatar

@ahoneybun I so want to get GNOME/FreeDesktop to be able to use stuff like Fast Pair, Quick Share, Cast, etc. I think it's technically open source but requires signing up as a distributor with Google, maybe?

renice, to random
@renice@hachyderm.io avatar

family member needs a phone upgrade. the pixel 8a preorder is $499 while a pixel 8 is $450 through Fi so I guess a flagship phone it is

cassidy,
@cassidy@blaede.family avatar

@renice Pixel 8a is also $299 through Fi right now.

elevenhsoft, to rust Polish
@elevenhsoft@mastodon.social avatar

Web Apps now supports most mainstream browsers even some firefox's forks like Waterfox or Librewolf or KDE's Falkon browser.

Unfortunately there is too much hassle to add Epiphany support so maybe in the future. It's a pain to work with it.

cassidy,
@cassidy@blaede.family avatar

@elevenhsoft I wonder if things will improve if we can get proper web app support baked into FreeDesktop via portals; e.g. a standardized API for this that browsers and even app stores could then support to “install” web apps, launching with the users' preferred web browser?

I briefly tried searching for this but couldn’t find it; @wjt do you happen to recall if there was progress or at least a documented issue in this direction?

cassidy, to random
@cassidy@blaede.family avatar

The preschooler was sick with a 24-hour stomach bug on Saturday, my wife was sick with it on Sunday (and is still recovering), the toddler was sick with it on Monday, and now I am pretty sure I am getting hit by it. 🙃

Parenting is fun!

cassidy,
@cassidy@blaede.family avatar

@kim Yeah, for sure! 😬

cassidy, to android
@cassidy@blaede.family avatar

The OneTracker app for Android is just… gone??

https://onetracker.app/

Luckily the web based version still works, but I can’t install the app on my phone so I can’t get push notifications anymore. 😞

I really liked how simple and straightforward the app was, and how it wasn’t trying to up-sell anything besides its core competency of tracking and notifying about packages.

cassidy,
@cassidy@blaede.family avatar

@dtc I have some hope that the app was mistakenly taken down; it looks like it's still available in the iOS app store, and the site is still up and working…

wjt, to random
@wjt@mastodon.me.uk avatar

When I dismiss my morning alarm, Android gives me a full-screen page with the weather forecast and stuff which animates into view in a frustratingly slow way. But the button to dismiss it… On the one hand, it's nice to see a hint of character peeking through the blandness. On the other hand, surely it should be either “OK, thanks” or “Okay, thanks”? No-one writes “Ok” in mixed case, and the comma is standard outside of informal writing. The character that peeks through is “idgaf”.

cassidy,
@cassidy@blaede.family avatar

@wjt yeah ok whatever

…Is how I always read it. 😁

atobsmith, to Starwars
@atobsmith@mastodon.social avatar

Currently Reading … Chaos Rising by Timothy Zahn https://www.goodreads.com/book/show/52635871-chaos-rising

cassidy,
@cassidy@blaede.family avatar

@atobsmith yesssss good book

cassidy, (edited ) to ai
@cassidy@blaede.family avatar

I really like the convention of using ✨ sparkle iconography as an “automagic” motif, e.g. to smart-adjust a photo or to automatically handle some setting. I hate that it has become the defacto iconography for generative AI. 🙁

#AI #LLM #LLMs #GenerativeAI #design #ML

cassidy,
@cassidy@blaede.family avatar

Aha! A week later @davidimel has an excellent video about this: https://youtu.be/g-pG79LOtMw?si=9B2KCLRC5H4on5Wq

#AI #ML #LLM #LLMs #GenerativeAI #sparkles

rmondello, to random
@rmondello@hachyderm.io avatar

hold up. can we review exactly what I get if I let my heart win?

cassidy,
@cassidy@blaede.family avatar

@rmondello that

…THAT’s what you get.

noxypaws, to GNOME
@noxypaws@packmates.org avatar

does anyone have a good Linux desktop image/video previewer like macOS' "quick looK" that isn't gnome-sushi? That's the only thing I've been able to find but I really want to avoid Nautilus.

-sushi

cassidy,
@cassidy@blaede.family avatar

@noxypaws I always wonder what the experience of a catch-all previewer brings compared to quick-launching apps. Like if I hit the spacebar and an image opens in a window and then I can hit Esc and it closes, why would I want to have another previewer app that also does that?

cassidy,
@cassidy@blaede.family avatar

@noxypaws I'm trying to understand the allure of a “previewer” app that is separate/distinct from the regular apps that handle images, videos, PDFs, etc. What makes a catch-all previewer (like the macOS feature or GNOME Sushi) a better experience?

Is it that it opens quickly? Is it the keyboard shortcut? Something else?

seth.abramson, to random

(🚨) STEP-BY-STEP INSTRUCTIONS FOR TURNING ON POLITICAL CONTENT ON THREADS

  1. If you have a GLOBE ICON in the top-left corner of your Threads home screen, click it. (If not, you may not have this feature yet.)

  2. On the next screen, click the link icon to the right of OTHER PRIVACY SETTINGS.

  3. On the next screen, SETTINGS AND ACTIVITY, scroll down to the WHAT YOU SEE section and click CONTENT PREFERENCES.

  4. Click POLITICAL CONTENT.

  5. Click DON’T LIMIT.

Please REPOST these instructions!

cassidy,
@cassidy@blaede.family avatar

@seth.abramson alternatively:

  1. Use Mastodon
  2. Follow accounts
  3. See posts from the accounts you follow

😉

scottjenson, to CSS
@scottjenson@social.coop avatar

challenge!

<body>
<div class="container">
<div class="item">item 1</div>
<div class="item">item 2</div>
<div class="item">item 3</div>
<div class="item hidden">item 4</div>
</div>
</body>

where .hidden { display: none }

Question: Can I use item:last-child {} to stylize item 3?

Apparently :last-child targets the last child in the DOM, not the last visible child. (this means hidden item 4 is styled.

Is there any way to do this using only CSS?

cassidy,
@cassidy@blaede.family avatar

@scottjenson ah yep, I was misreading mdn and thought it would work with classes, but it just selects for the last of a type of element.

cassidy,
@cassidy@blaede.family avatar

@cheeaun @scottjenson CSS has gotten so wild 😱

  • All
  • Subscribed
  • Moderated
  • Favorites
  • anitta
  • kavyap
  • everett
  • thenastyranch
  • magazineikmin
  • ngwrru68w68
  • DreamBathrooms
  • hgfsjryuu7
  • Youngstown
  • slotface
  • PowerRangers
  • InstantRegret
  • khanakhh
  • rosin
  • Leos
  • Durango
  • vwfavf
  • tacticalgear
  • mdbf
  • tester
  • GTA5RPClips
  • ethstaker
  • osvaldo12
  • modclub
  • cisconetworking
  • normalnudes
  • cubers
  • provamag3
  • All magazines