- 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
| #Random generator ipv6 addresses within your ipv6 network prefix. | |
| #!/usr/local/bin/bash | |
| # Copyright | |
| # Vladislav V. Prodan | |
| # universite@ukr.net | |
| # 2011 | |
| array=( 1 2 3 4 5 6 7 8 9 0 a b c d e f ) |
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
| // PhantomJS Render to base64 function | |
| page.renderBase64('png', function(err, img) { | |
| var image = {}; | |
| image.thumb = []; | |
| final.full = new Buffer(img, 'base64'); // Convert the base64 encoded value into binary. | |
| var thumbStream = new stream.Stream(); // Create a new writable stream | |
| thumbStream.writable = true; | |
| thumbStream.write = function (chunk) { | |
| image.thumb.push(chunk); // Take the data written and store it into an array |