Earlier quoted context omitted.
You can create a hotspot and start a HTTP server. Scan a QR code to connect to the hotspot, then a QR code for the file URL. It's easy and works with any device with Wifi access. For the server, on Android I use "Share via HTTP". On desktop running a lightweight HTTP server is easy too. Edit: Apparently that sounded complicated, here is how I can share a file from my phone to any other phone in the same Wifi. - Click…
> here is how I can share a file from my phone to any other phone in the same Wifi. This will not work on many public and corporate networks. A common place where you’d want to share. > surely there is an opportunity create a simpler UI! It’ll still suck compared to Airdrop. Apple has gone to a lot of trouble to make that work as well as it does. Trying to setup something relying on temporary hotspots will be sub par…
Free and Open Source Alternative to Airdrop
121–130 of 156 posts
Re: Free and Open Source Alternative to Airdrop
#122Earlier quoted context omitted.
Many things give you wifi speed, if you're connected to wifi. With Airdrop, if you are on the moon and meet a stranger there who also has an iphone, you can perform the high-speed transfer of large files.
Will an iPhone work in a vacuum?
https://www.theverge.com/2024/1/8/24029806/boeing-737-max-9-...
I don’t think there’s anything in a phone that’d stop its core functions in a vacuum. The human trying to use it, not so much.
Re: Free and Open Source Alternative to Airdrop
#123All of these "alternatives to airdop" don't seem to actually do what airdrop does, which is create an ad-hoc wireless connection. Airdrop isn't just a nice UI for sending files between people, it allows a wi-fi speed transfer between two devices that aren't connected to an existing network of that speed.
snapdrop.net does. It works locally in your network Peer2Peer
Re: Free and Open Source Alternative to Airdrop
#124All of these "alternatives to airdop" don't seem to actually do what airdrop does, which is create an ad-hoc wireless connection. Airdrop isn't just a nice UI for sending files between people, it allows a wi-fi speed transfer between two devices that aren't connected to an existing network of that speed.
So Apple.com has built a connection that doesn't adhere to TCP/IP standards. Great engineering, people!
Re: Free and Open Source Alternative to Airdrop
#125Re: Free and Open Source Alternative to Airdrop
#126All of these "alternatives to airdop" don't seem to actually do what airdrop does, which is create an ad-hoc wireless connection. Airdrop isn't just a nice UI for sending files between people, it allows a wi-fi speed transfer between two devices that aren't connected to an existing network of that speed.
Mine does! https://github.com/spieglt/flyingcarpet
Re: Free and Open Source Alternative to Airdrop
#127Earlier quoted context omitted.
I'm trying to learn how to use Tiktok (yes, I know, I'm sorry) and other social media and cross-posting isn't really great and some platforms pretty much force you to post from mobile devices or vice versa (Tiktok, Instagram for mobile, LinkedIn for desktop web), and I need to pass source videos from mobile to editors on PC and back and forth for posting on the different media.. It's a big of a mess, I'm kinda sure t…
Do consider Syncthing particularly if you are using Android. If using apple iOS you'd need the möbius sync client. https://syncthing.net/ https://www.mobiussync.com/ One thing that it beats the cloud / centralized sync on is because the connection is direct between devices when the initial transfer is completed the file is completely there on the other device. With a cloud type of sync you do the transfer twice. I've…
Re: Free and Open Source Alternative to Airdrop
#128All of these "alternatives to airdop" don't seem to actually do what airdrop does, which is create an ad-hoc wireless connection. Airdrop isn't just a nice UI for sending files between people, it allows a wi-fi speed transfer between two devices that aren't connected to an existing network of that speed.
Being able to quickly squirt all of that, including photos, to another crew is a literal lifesaver.
Re: Free and Open Source Alternative to Airdrop
#129Earlier quoted context omitted.
Mine does! https://github.com/spieglt/flyingcarpet
Great project! Thank you for building it. If the UI was simpler and more "Apple-like" (hate to say this) I could convince my non-tech coworkers/family/friends to use it. Also, could you auto detect the other peer's OS? You could skip an extra step and UI element. Do you need it to know which WiFi bandwidth to use?
And no, it can't detect anything about the other device until they're on a WiFi network together, and that can't happen until it knows the peer's OS because it has to know whether it or the peer should be hosting the hotspot. Windows has precedence, then Linux, then Android. (The iOS version doesn't need to know the peer's OS because iOS and macOS can't stand up a hotspot programmatically anymore, so it always has to join.)
Re: Free and Open Source Alternative to Airdrop
#130Earlier quoted context omitted.
Mine does! https://github.com/spieglt/flyingcarpet
Thanks for the link. Looking through the Github, this appears to be close to what I'm looking for on my own project. Namely, being able to share files automatically with nearby devices when they move within range. I thought Bluetooth might be viable, as beacons and GattServers seem to be designed for this purpose. Android's implementation was painful, yet doable. However, after wading into Microsoft's codebase, I sus…