Skip Navigation
Apple Vision Pro Sets Its Fan Speed Based On Noise It Hears
  • Google cardboard or daydream doesn’t have anywhere near the pixel density of the AVP which directly impacts the video viewing experience

  • Fuck oil.
  • Uhhh what? Why couldn’t nuclear energy be government funded and owned?

  • Watch OS needs Series 6 or newer
  • Welp I guess that’s the end of the line for my ceramic Series 5. We had a good run.

    I seriously doubt it, but if there’s another ceramic watch this year I will 100% buy it.

  • T-Mobile asked to stop advertising ‘price lock’ guarantee that doesn’t lock your prices
  • Asked? How about the government tells them with a big fine.

  • Deleted
    *Permanently Deleted*
  • It’s not true for 99% of android phones either

  • Deleted
    *Permanently Deleted*
  • So could most if not all android OEMs what’s your point? I’m pretty sure even a Google Pixel could be bricked remotely if your bootloader isn’t already unlocked.

  • Why does everyone hate Microsoft for adding LLMs into Windows and spying on users, but not Apple?
  • Siri can ask ChatGPT but only if you explicitly allow it. They specifically said ChatGPT is only used if you asked for something that needs world knowledge, and even then there is a prompt asking for permission to send data to ChatGPT every time. Apple even said in interviews that you can completely disable the ChatGPT integration if you want.

  • Apple Vision Pro DB1 - MVD and Keyboard in immersion
  • This wasn’t verbally announced, but it’s in the overview image. The most exciting new feature for me is you can finally enable dark mode for iPad apps in Settings>Appearance>Compatible Apps Appearance.

  • Whelp, that's all folks
  • It seems Lemmy 19.4 broke marking posts as read, so unfortunately that’s the end of using Avelon for me. Sucks because I still like the UI better than any of the alternatives.

  • Any unofficial YouTube clients?
  • Modded apps have more features than just ad blocking

  • Microsoft pulls Windows 11 24H2 from Insider Release Preview Channel
  • Apple didn’t announce anything even close to Recall. Apples AI directly accesses data it doesn’t save an unencrypted screenshot every 3 seconds.

  • macOS Sequoia Preview
  • None of the AI stuff is even available yet

  • Scarlett Johansson denied OpenAI the right to use her voice. They used it anyway.
  • But why. No one wants to read that shit and if they did they could put it in ChatGPT themselves.

  • Scarlett Johansson denied OpenAI the right to use her voice. They used it anyway.
  • Posting raw ChatGPT output is the lowest effort content possible

  • TCL demonstrates 4K gaming monitor with a 1,000 Hz refresh rate
  • Isn’t 4k 360hz equivalent to 1080p 1440hz? I wouldn’t expect 1000hz at 4k any time soon but 1080p in competitive FPS is easy

  • What it's like to be a developer in 2024
  • Kagi. I haven’t felt the need to use anything else since I started using it.

  • YOU.
  • I disabled sticker suggestions immediately when they introduced that garbage feature

  • Help needed choosing a good pair of noise cancelling earphones
  • I sleep with my AirPods Pro in every night. I can’t live without them.

  • The puby tool can now link dependencies twice as fast as melos with zero set up
    pub.dev puby | Dart package

    Run commands in all projects in the current directory. Handle monorepos with ease.

    puby | Dart package

    I posted about this package before and just got made fun of for the name, but this is a useful update for developers that work on large mono-repos on a daily basis. The puby link command used to require pubspec.lock files to be checked into version control in order to know which dependencies to grab, which most open source mono-repos do not allow. Notably, I work on the flutter/packages repo a lot and dealing with dependency resolution is a pain, but I just released an update to puby to fix this. This involves reusing the dependency resolution code directly from the pub command in order to catalog dependencies rather than relying on lock files. What this means in practice is you can have an empty pub cache, make a clean clone of the flutter/packages repo, and have all dependencies resolved in less than 30 seconds. The puby link command is now almost twice as fast as melos bootstrap and requires zero setup whereas melos likes to complain about your repository structure.

    0
    Online bank One Finance removed my account's password in favor of _only_ phone/email OTP and a 4 digit pin

    How is this legal? This has to be the most insecure login method I’ve ever seen. They removed the password from my account without consent and have no way to go back to requiring a password. Literally all an attacker has to do it gain control of either my phone/email and brute force a 4 digit pin. I’m going to have to change banks because of this.

    Oh also I posted this on the bad version of Lemmy and the mod tried to claim that this method of auth is actually more secure than a password, posted a Wikipedia article about passkeys, and then locked the post… In no reality is it at all possible that this is more secure than a password.

    So stay away from One Finance if you value your money

    12
    [Bug] Feeds don’t load in Vision Pro

    I’m using the iPad app in my Vision Pro and I can log in, but all the feeds just error out

    0
    puby | Run commands in all projects in the current directory. Handle monorepos with ease.
    pub.dev puby | Dart Package

    Run commands in all projects in the current directory. Handle monorepos with ease.

    puby | Dart Package

    Disclaimer: I made this

    I spend a lot of time contributing to huge mono repos (flutter/packages, flutterfire, etc) and while some of them use melos to deal with the mess most of them don't. To help deal with this, I made puby.

    Melos can be useful, but it requires project-specific setup so it's not good for repos that you don't control (and don't already have it set up). puby requires no setup, and you can run it literally anywhere. For example, if you keep all your dart/flutter projects in one directory you can execute commands in all of them at once by running puby in the root directory.

    puby can do a lot, but here are the highlights:

    Run any pub command

    The first thing puby was made for is in its name: running pub commands. Run puby get, puby upgrade, etc to run those commands in all the projects in the current directory. Any extra arguments passed into puby will get passed to the commands puby runs. puby will automatically use the correct root command (dart/flutter) and even supports running with fvm if the project has it set up. puby combines the exit codes of the commands it runs, so it can be used to check for failures in CI.

    puby link

    puby link uses existing pubspec.lock files to catalog the dependencies required for all projects in the current directory, adds them to the pub cache, and then runs pub get --offline in all the projects in parallel. This can run up to five times faster than a regular pub get. This requires you to check in your pubspec.lock files to git, but the benefit is that when you switch branches a puby link will get you up to date in a few seconds.

    puby clean

    puby clean used to just be an alias for flutter clean, but since I added support for running commands in parallel for puby link it can now clean all projects in parallel as well. This is useful to clear out the cache of an entire monorepo, but it also has a much cooler use: cleaning up all of your local dart/flutter projects at once. Run puby clean in the directory containing all your local projects and you'll be surprised how much disk space you can reclaim.

    puby exec

    Run any command in all projects

    Convenience commands

    puby comes with many conventience commands to make common tasks easier

    |command|equivalent| |---|---| |puby gen|[engine] pub run build_runner build --delete-conflicting-outputs| |puby test|[engine] test| |puby mup|[engine] pub upgrade --major-versions| |puby reset|puby clean && puby get|

    Outro

    My team and I use puby every day. Please let me know what you think!

    0
    [GB] Hand Painted Wristrest collection Round 10 - Dreamy

    https://geekhack.org/index.php?topic=96232.msg3172021#msg3172021

    I have a couple of these from a while ago and enjoy them a lot. Very excited to see them come back!

    2
    firebase_rules | A type-safe Firebase rules generator for Firestore, Storage, and Realtime Database
    pub.dev firebase_rules | Dart Package

    A type-safe Firebase rules generator for Firestore, Storage, and Realtime Database

    firebase_rules | Dart Package

    Disclaimer: I made this

    I've been wanting a way to create type-safe Firebase rules for a while, so I made this package to let you do just that. I've used it for several of my projects now, and it's so much nicer than raw-dogging the rules syntax with no autocomplete. I was able to write rules from scratch without referencing the documentation once, and they deployed first try without any errors. I'm always hungry for feedback on my work, so please feel free to comment any feedback or suggestions.

    0
    It’s 8:24AM EST… How in the **** can’t a 2 trillion company handle demand for the most boring iPhone release ever?
    imgur.com imgur.com

    Discover the magic of the internet at Imgur, a community powered entertainment destination. Lift your spirits with funny jokes, trending memes, entertaining gifs, inspiring stories, viral videos, and so much more from users like Rexios.

    imgur.com
    11
    Apple @lemmy.ml Rexios @lemm.ee
    About the security content of Rapid Security Responses for iOS 16.5.1 and iPadOS 16.5.1
    0
    Hyundai Ioniq 5 - How To Use Auto Regen or Intro To Auto Regen PLUS The Hidden Levels!

    Does anyone else think that auto regen is kind of useless? If I want the car to handle itself, I'll just use adaptive cruise. If I want control of the car, I'll just use IPEDAL. Auto just seems needlessly complex.

    0
    Rexios Rexios @lemm.ee

    I do things sometimes

    Posts 9
    Comments 115
    Moderates