Deemo

joined 2 years ago
 

For context AWDL is responsible for AirDrop, AirPlay, etc

“Apple shall implement the measures for Wi-Fi Aware 4.0 in the next major iOS release, i.e. iOS 19, at the latest, and for Wi-Fi Aware 5.0 in the next iOS release at the latest nine months following the introduction of the Wi-Fi Aware 5.0 specification”

https://ec.europa.eu/competition/digital_markets_act/cases/202512/DMA_100203_1536.pdf

What are your guys thoughts?

Also a fun diagram of airdrop protocal (which shows adwl)

Source

[–] [email protected] 4 points 1 month ago

You could create a DIY notification system if you want. In the past using a old Mac mini I had a script that would check new notifications from Lemmy rss feed if I recived an notification from Lemmy and then send a push notification to my phone using ntfy.

The script was janky it used apple script to trigger a apple short cut that sent the notification (sending a post request to ntfy).

I'm sure there is probably a more elegant way to do it.

Alternatively you could set up a RSS reader that polls Lemmy every so often to send notications.

[–] [email protected] 5 points 1 month ago

Can skype credit be used in teams?

[–] [email protected] 4 points 1 month ago

On an unrelated note do you feel youtube videos feel more corperate/professional nowadays?

[–] [email protected] 1 points 2 months ago

I use TTS to generate pseudo audio books and listen to light novels while working out/driving.

Though one weird quirck of doing this is you don't get to see the pictures as you read For j-novel books I unzip the book and extract the pictures.

Some times I view all the pictures before listening to the book other times I view them after finishing the book.

[–] [email protected] 2 points 6 months ago* (last edited 6 months ago)

I use the following with mobile version of YouTube in safari (not desktop version) on iPad 9.

Wiper adblock $1.99 one time payment (no subscription).

https://apps.apple.com/us/app/wipr/id1030595027

SponsorBlock $1.99 one time payment (no subscription).

https://apps.apple.com/us/app/sponsorblock-for-safari/id1573461917

[–] [email protected] 2 points 6 months ago

Percy Jackson

5
submitted 7 months ago* (last edited 7 months ago) by [email protected] to c/[email protected]
 

Edit: Kinda found a answer

Major versions of iOS are released annually. Apple significantly extended the cycle of updates for iOS-supported devices over the years. Usually, only the latest iOS release is supported by Apple. Starting with iOS 15, Apple started to support 2 major versions of iOS, for a short period of time.

https://endoflife.date/ios

Hi guys this might be a silly question, do ios and iPad OS devices have different number of years of major updates (think ios 16, 17, 18 etc) and years of security updates?

Or do devices that don't make the cut for the latest major update immediately loose access to security updates once a new incompatible major ios update is released?

[–] [email protected] 2 points 8 months ago (1 children)

Interesting I always assumed they used ip not dns for geo locating cdns.

[–] [email protected] 1 points 8 months ago (1 children)

How much was your latency out of curiosity?

[–] [email protected] 2 points 8 months ago

Thanks for the clarification

[–] [email protected] 2 points 8 months ago (4 children)

Does the 300ms include dns latency?

40
submitted 8 months ago* (last edited 8 months ago) by [email protected] to c/[email protected]
 

Hi guys for those of you that use pi-hole (or similar solutions like adguard home, etc) and wireguard how far away can you be from your wireguard/pi-hole server before latency becomes a major issue?

Also on a side note how many milliseconds of latency would you guys consider to be to slow?

Edit I meant dns latency sorry for not mentioning

[–] [email protected] 2 points 8 months ago* (last edited 8 months ago)

Official Nextdns app (DNS over HTTPS)

Curious why do you use the nextdns app over optioin 1? Is it because your phone doesn't support Android Private DNS or for another reason?

Also how is power consumption?

I never use wifi outside of my home. I have unlimited cellular data, so why would I bother?

Fair. I guess its more helpfull in cases of poor cell reception or traveling (though I guess this is a edge case in its own right).

[–] [email protected] 2 points 8 months ago (2 children)

Silly question how are you using nextdns?

  1. Android Private DNS
  2. Official Nextdns app (DNS over HTTPS)
  3. Via a third party app (ex rethink, etc)

Also how often do you encounter nextdns being blocked on public/coreperate wireless networks?

 

Hi guys quick question say you run a a application on your localhost (example lets say couchdb runing directly on localhost:3434 not in docker).

Now you have a docker container (say caddy, ngnix, etc). Is there a way to allow docker container to acess localhost:3434 WITHOUT using the Host network driver (--net=host)

 

Hi guys I recently stumbled upon this website where you can get a eu.org sub domain (example.eu.org for instance).

I noticed though that domains aren't created instantly. I'm curious if there is human review to get domians processed and if it generally takes a long time to make domains using them.

0
unattended upgrades with caddy (bookwormstory.social)
submitted 9 months ago* (last edited 9 months ago) by [email protected] to c/[email protected]
 

Edit: credit to [email protected]

Assuming you installed caddy via Debian, Ubuntu, Raspbian method

https://caddyserver.com/docs/install#debian-ubuntu-raspbian

add "cloudsmith/caddy/stable:any-version"; to /etc/apt/apt.conf.d/50unattended-upgrades

Example:

// Automatically upgrade packages from these (origin:archive) pairs
//
// Note that in Ubuntu security updates may pull in new dependencies
// from non-security sources (e.g. chromium). By allowing the release
// pocket these get automatically pulled in.
Unattended-Upgrade::Allowed-Origins {
        "${distro_id}:${distro_codename}";
        "${distro_id}:${distro_codename}-security";
        // Extended Security Maintenance; doesn't necessarily exist for
        // every release and this system may not have it installed, but if
        // available, the policy for updates is such that unattended-upgrades
        // should also install from here by default.
        "${distro_id}ESMApps:${distro_codename}-apps-security";
        "${distro_id}ESM:${distro_codename}-infra-security";
        "${distro_id}:${distro_codename}-updates";
//      "${distro_id}:${distro_codename}-proposed";
//      "${distro_id}:${distro_codename}-backports";
        "cloudsmith/caddy/stable:any-version";
};

Link to comment chain (not sure how to add links in a federated way)

https://feditown.com/comment/1221458

https://bookwormstory.social/post/2100056/4136035

Origional post:

Hi guys anyone know how to use un attended upgrades with caddy.

I have ubuntu server 22.0.4.

The part that stumps me is caddy uses a external repository cloud Smith making ot difficult to setup.

I installed caddy via Debian, Ubuntu, Raspbian

https://caddyserver.com/docs/install#debian-ubuntu-raspbian

The closest example I could find to unattended upgrades with a external repo was this example using docker.

/etc/apt/apt.conf.d/50unattended-upgrades

"Docker:${distro_codename}";

https://blog.coffeebeans.at/archives/1299

I'm not sure if it's as simple as

/etc/apt/apt.conf.d/50unattended-upgrades

"Caddy:${distro_codename}";

Edit:

One more question affect would adding

APT::Unattended-Upgrade::Package-Blacklist "";

/etc/apt/apt.conf.d/20auto-upgrades

have?

Edit2:

I just removed this I only found this from google gemini (which probably isn't the best source of info)

APT::Unattended-Upgrade::Package-Blacklist "";
 

Hi guys out of curiosity does anyone know of a foss, local recorder app that does speech to text?

Closest I've seen is https://voiceinput.futo.org/ which relies on a local open ai whisper model. However unfortunatley this app only works as a keyboard.

https://odysee.com/@rossmanngroup:a/this-gives-google-less-access-to-your:1

 

Hi guys this might not be applicable to a whole lot of people but recently I made a shortcut which kinda works as a pseudo push notification system for lemmy.

It primarily works by intercepting emails from apple mail app, triggering a apple script, which then triggers a shortcut to get latest inbox message from RSS and forward it as a ntfy push notification (you can set clicking the notification to open your lemmy inbox or open another lemmy app, etc).

Its not the most elegant solution to push notifications (memmy probabbly puts this system to shame) but I use it since it can relay messages to ios, android, mac, pc, etc.

https://www.icloud.com/shortcuts/55eed8af815a407a9f173d0d5d43a4ea

view more: next ›