1. @fasterthanlime I mean it made me click 5 "Notify me" buttons but also had me baffled for a minute so who can really say if it was truly a mistake

  2. @fasterthanlime There are 5 separate instances of your
    Silly Fast Fresh Deploys with Rust premiere from next month in my YouTube homepage so some algorithmic shit has occurred, I just don't know if we can explain it.

  3. The #Mario movie was pretty fun!

  4. @fasterthanlime congrats on the milestone! Hope your recovery is going well :)

  5. Gotta love Sentry <3

    Now to actually fix the issue 😅

    The breadcrumbs view on Sentry, showing a timeline of HTTP requests and navigation events which lead to an Application Not Responding error.
  6. Feeling a bit of FOMO as the Android 14 beta starts to roll out since the 4a is no longer supported. First time really saddened about the theft of my Pixel 7 but can't justify rebuying one when I have more priority expenses to tend to. Maybe when the next one comes out...

  7. Feeling extra lazy today 🥱

  8. @Gradle v1.2.0 of the Gradle Plugin Publish Plugin adds a `--validate-only` flag to the `publishPlugin` which only validates the relevant metadata for the plugin you are publishing, akin to a dry run.

    There is also now support for using Sigstore (sigstore.dev) for plugin signing and a bugfix for how the Shadow plugin interacted with plugin JARs.

    docs.gradle.org/8.1-rc-4/relea

    3/3

    Replying to source post

  9. Weekend's almost over and all the things I told myself I'd do are coming to me in flashbacks...

  10. Gonna meet @devanshbajaj after so long today :androidPetPet:

  11. It's been slightly rough being on a strict diet and consistent exercise schedule but it's definitely worth it.

    I'm an instant gratification kind of person so not seeing major weight loss was a bit demotivating even if naive but just how much healthier I feel in my day to day is amazing. Definitely the best thing I've done for myself ever.

  12. 0 days since accidentally using onCreate in a Fragment instead of onViewCreated

    #AndroidDev

  13. @zkat I don't envy the task ahead of you 😬

    In case it's helpful, the folks at Deno built their own tiny shell for run-scripts to avoid the problem of NPM run-scripts using the system shell which may be of some value to orogene

    github.com/denoland/deno_task_

  14. I have a #rustlang question regarding dependency declarations. What is the most downstream friendly way to specify a dependency on something popular like Serde? Is `serde = "~1.0"` the right way to do it?

  15. @osfanbuff63 @MinecraftModding Monopolies stifle innovation so I'm much more happier with the current situation. Fabric's mixin powered mods wouldn't exist if Forge couldn't be challenged, and we wouldn't have Quilt if we were forced to stop at Fabric.

  16. @botteaap @zsmb13 the Dagger team announces it when they land a major change towards supporting KSP, but github.com/google/dagger/issue remains the issue to track for developers. The commit history does show constant work being done to move KSP forward, so hopefully the day is not too far.

    FWIW You can customize your watching status to only notify of state changes so you won't be notified about every "any progress?" comment made on the issue :)

    Replying to source post

  17. I have not left my computer since the morning and yet have done absolutely nothing, I am impressed with myself.

  18. @zkat The prebuilt binary needs openssl 1.1 whereas my system only has openssl 3.0 😅

    I can't build oro myself right this moment but I'll try to get back in a couple hours when I do have the chance. Sorry I can't be more help :(

  19. I think something changed with Twitter's API a while ago because I just realized that the tweet objects no longer have video URLs in them

  20. @tvler's StreetPass is an amazing browser extension to have as more and more organisations and individuals are setting up their presence on the Fediverse! The website explains the how/what/why better than I can :D

    streetpass.social/

    #FediTips

  21. Aim wasn't the best today but I'll take the wins and the rank up to plat 🤗

    Screenshot of my match history from https://tracker.gg which shows 4 games won on the Pearl, Fracture, Icebox and Split maps. I had a positive Kill/Death ratio in each game and ended the day being promoted from Gold 3 to Platinum 1.
  22. Just realized that my automation for Crowdin fell over when the only change was a **new** language and so APS just didn't include the Polish translations submitted over 2 weeks ago.

    The root cause of it was that the GitHub workflow used `git diff --stat` to check for changes before raising a PR, which does not take into account untracked files, a.k.a. "new files". Changing this to `git status -s` fixed that problem for good 👍