See also:
Service | Type | Storage | Limitations |
---|---|---|---|
Amazon DynamoDB | 25 GB | ||
Amazon RDS | |||
Azure SQL Database | MS SQL Server | ||
👉 Clever Cloud | PostgreSQL, MySQL, MongoDB, Redis | 256 MB (PostgreSQL) | Max 5 connections (PostgreSQL) |
See also:
Service | Type | Storage | Limitations |
---|---|---|---|
Amazon DynamoDB | 25 GB | ||
Amazon RDS | |||
Azure SQL Database | MS SQL Server | ||
👉 Clever Cloud | PostgreSQL, MySQL, MongoDB, Redis | 256 MB (PostgreSQL) | Max 5 connections (PostgreSQL) |
#!/bin/bash | |
# Based on the scripts written by class101 of xda-developers.com: | |
# http://forum.xda-developers.com/showpost.php?p=57490025&postcount=205 | |
# | |
# This script enables a secure tunnel for your android phone to "reverse tether" | |
# and access the internet/a private network via the following steps: | |
# | |
# 1. Establish a level 3 (TAP) tunnel from your local host to a remote server via SSH (tap0) | |
# 2. Establish a level 3 interface between your local host and your android phone via USB (usb0) |
Please refer to this blogpost to get an overview.
Replace *-INSTANCE
with one of the public instances listed in the scrapers section. Replace CAPITALIZED
words with their corresponding identifiers on the website.
#!/data/data/com.termux/files/usr/bin/bash | |
# Update package list | |
pkg update -y | |
# Install OpenSSH, SFTP server, net-tools, and termux-tools | |
pkg install -y openssh openssh-sftp-server net-tools termux-tools | |
# Configure SSH server | |
cat > $PREFIX/etc/ssh/sshd_config << 'EOL' |
adb shell am start -n com.android.settings/.TetherSettings && adb shell input keyevent 20 && adb shell input keyevent 20 && adb shell input keyevent KEYCODE_ENTER && sleep 2 && adb shell input keyevent 4 |
<# | |
.SYNOPSIS | |
Tests latency of Debian mirrors and sorts them by response time. | |
.DESCRIPTION | |
This script fetches the Debian mirrors list from the official Debian website, | |
extracts all mirror URLs, tests the latency of each mirror by sending HTTP requests, | |
and then displays them sorted by response time (fastest first). | |
.NOTES |
#!/bin/bash | |
# Cleanup script for the custom Ubuntu ISO creator | |
# Run as root (sudo) if the main script fails | |
set -e | |
# set -o pipefail # Optional: might be too strict for cleanup | |
# Configuration variables (should match the main script) | |
WORK_DIR="/tmp/custom-ubuntu-iso" |
#!/bin/bash | |
# Ubuntu ISO Creator Script | |
# This script creates a custom Ubuntu ISO with standard desktop components | |
# Run as root (sudo) | |
set -e | |
set -o pipefail | |
# Configuration variables |
#!/usr/bin/env python3 | |
""" | |
DHTB Finder - Utility to find DHTB headers in binary files and extract information | |
Author: CypherpunkSamurai - github.com/CypherpunkSamurai | |
Email: [email protected] | |
credits: https://www.hovatek.com/forum/thread-32664-post-194145.html#pid194145 | |
""" |