-
(Offline) Extract
sync.tar.gzinto:/var/lib/pacman/sync/Or
(Online)
With Git i dont need to mess arround with personalizing ssh and sftp configurations with new computers on the same network.
Note: Recomended for peer to peer. Outsiders can still tamper. But... outsiders are always tampering. With read-only mode for both parties, some measure of security piece of mind can be established.
http://geekaholic.github.io/blog/2012/05/14/git-on-p2p-development/ >
Kangaroo Remote Terminal
- Remote setup for a known specific linux system
- Configs for both Arch (my own customized distro iso) and Mint18 (factory default with built-in vino)
-
Make a Dir
- clone from git
- or make a local Dir
-
Initialize that Dir
git init
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 | |
| # set -e | |
| ############################################################################### | |
| # Written for Linux Mint 18+ on x64 | |
| # Author : Mezcel | |
| # Website : www.github.com/mezcel/repo-pocket/shell/linuxsetupShell.sh | |
| # Compatable with: Git and Gitbash | |
| ############################################################################### | |
| # |
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
| Sub ExportAllToCsv | |
| document = ThisComponent | |
| ' Use the global string tools library to generate a base filename for each CSV | |
| ' based on the current prefixless filename | |
| GlobalScope.BasicLibraries.loadLibrary("Tools") | |
| BaseFilename = Tools.Strings.GetFileNameWithoutExtension(document.getURL(), "/") | |
| ' Work out number of sheets for looping over them later. | |
| Sheets = document.Sheets |
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
| ' background gradient colors | |
| ' The code of the left is the color at the center of the background, and the right one is the color at the corners. | |
| Background=$FF3B747C,$FF775C64 | |
| ' logo, size, colors | |
| ' logo O = fruit | |
| Caption=O,150, $FF6B474C | |
| ' grid holes from the left to the right : | |
| '1. grid's size |
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
| import java.io.IOException; | |
| import org.jsoup.Jsoup; | |
| import org.jsoup.nodes.Document; | |
| import org.jsoup.nodes.Element; | |
| import org.jsoup.select.Elements; | |
| public class ImageGrabber { | |
| public static void main(String args[]) throws IOException { | |
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
| java -jar myjarfile.jar |