- Web Wormhole https://webwormhole.io/ https://github.com/saljam/webwormhole
- Localsend https://web.localsend.org/
- FilePizza https://file.pizza/
ShareDrop sharedrop.io https://github.com/szimek/sharedrop(SOLD, not recommended, use one of the forks)A clone SnapDrop snapdrop.net https://github.com/RobinLinus/snapdrop(SOLD, not recommended, use one of the forks)- A fork PairDrop https://pairdrop.net/ https://github.com/schlagmichdoch/pairdrop
- ToffeeShare https://toffeeshare.com/
- Instant.io https://instant.io/
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
| -- see if the file exists | |
| function file_exists(file) | |
| local f = io.open(file, "rb") | |
| if f then f:close() end | |
| return f ~= nil | |
| end | |
| -- 1. Replaces .md with .html | |
| -- 2. Replaces absolute paths with relative ones | |
| -- 3. Replaces folder links with links to their index / readme |
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
| /*--- waitForKeyElements(): A utility function, for Greasemonkey scripts, | |
| that detects and handles AJAXed content. | |
| Usage example: | |
| waitForKeyElements ( | |
| "div.comments" | |
| , commentCallbackFunction | |
| ); |
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
| #!/bin/bash | |
| # | |
| # Enable nopasswd mode for sudo on macOS from the userspace in fast and totally non-interactive way | |
| # | |
| # Type the password last time to apply the new mode and forget it for any console task for ages | |
| # Use the rollback to restore password protection | |
| # | |
| # Developed and tested by https://juliyvchirkov.github.io/ under the MIT license on macOS Big Sur 11.2.0 | |
| # | |
| # Get latest version at https://gist.github.com/juliyvchirkov/3ca76582ed6b6a8366c9e7d60644960d |
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
| # PS-BGInfo | |
| # Powershell script that updates the background image with a random image from a folder and writes out system info text to it. | |
| # run as a lower priority task | |
| [System.Threading.Thread]::CurrentThread.Priority = 'BelowNormal' | |
| # Configuration: | |
| # Font Family name | |
| $font="Input" |
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
| # - name: Generate DH Params (may take several minutes!) | |
| # command: openssl dhparam \ | |
| # -out "/data/jenkins_home/ssl/dhparam.pem" 2048 | |
| # args: | |
| # creates: "/data/jenkins_home/ssl/dhparam.pem" | |
| # | |
| # - name: Generate ECC Key | |
| # command: openssl ecparam \ | |
| # -genkey \ | |
| # -name prime256v1 \ |
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
| #!/bin/bash | |
| ## Automatically generate a file with git branch and revision info | |
| ## | |
| ## Example: | |
| ## [master]v2.0.0-beta-191(a830382) | |
| ## Install: | |
| ## cp git-create-revisioninfo-hook.sh .git/hooks/post-commit | |
| ## cp git-create-revisioninfo-hook.sh .git/hooks/post-checkout | |
| ## cp git-create-revisioninfo-hook.sh .git/hooks/post-merge |
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/env bash | |
| # nounou 2.0 | |
| # say command on mac OS : Making your Mac talk with the sentence you pass, in french there | |
| enfants[0]='Marceau' | |
| enfants[1]='Émile' | |
| actions[0]='range ta chambre' | |
| actions[1]='mets tes chaussons' |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>PayloadContent</key> | |
| <array> | |
| <dict> | |
| <key>AllowUserOverrides</key> | |
| <true/> | |
| <key>AllowedTeamIdentifiers</key> |
NewerOlder