- Web Wormhole https://webwormhole.io/ https://github.com/saljam/webwormhole
NOTE: Probably the only browser tool that streams file directly. Should transfer file of any size (hundreds of GBs etc) - Localsend https://web.localsend.org/
- FilePizza https://file.pizza/
- PairDrop https://pairdrop.net/ https://github.com/schlagmichdoch/pairdrop
ShareDrop sharedrop.io https://github.com/szimek/sharedrop(SOLD, not recommended, use PairDrop)SnapDrop snapdrop.net https://github.com/RobinLinus/snapdrop(SOLD, not recommended, use PairDrop)
- ToffeeShare https://toffeeshare.com/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python | |
| import subprocess | |
| import time | |
| import urllib2 | |
| def getTreeStatus(): | |
| """Fetches the Chrome tree status.""" | |
| url = 'http://chromium-status.appspot.com/status' | |
| status = urllib2.urlopen(url).read().lower() |
-
Open Apple menu -> System Preferences -> Bluetooth and disable Bluetooth on Mac as well as any other nearby Macs or devices which will try to pair with and confuse the controller.
-
Reset PS3 controller by inserting paperclip into pinhole near L2 button.
-
Connect PS3 controller to Mac with USB cable.
-
Enable Bluetooth.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var libpath = require('path'); | |
| var http = require('http'); | |
| var fs = require('fs'); | |
| var url = require('url'); | |
| var bind_port = 8001; | |
| var path = "/path/to/your/base_directory/"; | |
| http.createServer(function (request, response) { | |
| var uri = url.parse(request.url).pathname; | |
| var filename = libpath.join(path, uri); |

