This file contains 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/micropython | |
import devices | |
import math | |
import sys | |
io_device = devices.bus().find("file_import_export") | |
if not io_device: |
This file contains 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 | |
# Change to where you want your backup to be. | |
# This script will create two backups in there, called "Backup1" and "Backup2". | |
# Note that the directory you set here has to exists, while Backup1 and Backup2 do not matter. | |
BACKUP_DIR="ftp_user@ftp_server:/some/path/for/backups/" | |
# The directory in which the directories to be backed up(specified in backup.txt) are. | |
BACKUP_ROOT_DIR=.. | |
# The mac address to wake up using Wake on Lan. |
This file contains 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
# This kubernetes manifest for http://github.com/atmoz/sftp is made by ToMe25, based on a similar one by jujhars13. | |
# | |
# Usage: | |
# 1. Create the sftp namespace using `kubectl create namespace sftp`. | |
# 2. Copy your `~/.ssh/id_rsa.pub` file(can be generated with `ssh-keygen` if missing) to a new folder named `client_keys`. | |
# Also add the `id_rsa.pub` files of all other users you want to be able to log in without a password to this folder. | |
# 3. Create host keys for the sftp server in a new folder named `host_keys` by running `ssh-keygen -t rsa -b 4096 -f ssh_host_rsa_key` | |
# and `ssh-keygen -t ed25519 -f ssh_host_ed25519_key` in it. | |
# 4. Create a Kubernetes secret from the client keys by running `kubectl create secret generic sftp-client-public-keys -n sftp --from-file=client_keys`. | |
# 5. Create another Kubernetes secret from the host keys by running `kubectl create secret generic sftp-host-keys -n sftp --from-file=host_keys`. |
This file contains 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
package com.tome.worldprofiler; | |
import java.io.File; | |
import java.io.FileOutputStream; | |
import java.util.Collection; | |
import java.util.HashMap; | |
import java.util.Map; | |
import org.apache.logging.log4j.LogManager; | |
import org.apache.logging.log4j.Logger; |