• 0 Posts
  • 50 Comments
Joined 1 year ago
cake
Cake day: June 18th, 2023

help-circle
  • Save you a click:

    However, if you’ve been following Android platform development news lately, you may have heard of something called the trunk stable project. Without getting too technical, the way that Google develops Android has significantly changed. The first Android version to be released as part of the trunk stable project was Android 14 QPR2 back in March, which is why that release used a very different build ID naming scheme. Instead of having build IDs that started with the letter “U” for Upside Down Cake, Android 14 QPR2 had build IDs that started with the letter “A.”





  • Save you a click:

    Joe Emerson had been struggling over the death of his best friend, Scott, a pilot who died while on a run six years earlier. Emerson had been away for the weekend with friends, celebrating and remembering Scott.

    On Friday night, the group took psychedelic mushrooms – a drug that can make you hallucinate and typically has effects that last a few hours. Emerson said that for him, the physical side effects lasted days, and the consequences a lifetime.

    “There are two red handles in front of my face,” Emerson recalled. “And thinking that I was going to wake up, thinking this is my way to get out of this non-real reality, I reached up and I grabbed them, and I pulled the levers.”















  • It should be possible, but the answer is going to depend on your implementation, what libraries you are using, and so on.

    For example, if the play sound action is synchronous, then maybe you could start it up in another thread, and interrupt that thread if you want to cancel the sound.

    If it’s asynchronous, maybe you need to retain a reference to the sound object and then invoke a stop() call when the other button is pressed.