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) |
package main | |
import ( | |
"bufio" | |
"flag" | |
"fmt" | |
"os" | |
"strings" | |
"sync" | |
"time" |
# Golang Platform Independent Makefile | |
# This Makefile is designed to work on both Windows and Unix-like systems. | |
# Author: CyberPunkSamurai @github.com/CyberPunkSamurai | |
# License: MIT License (https://opensource.org/licenses/MIT) | |
# https://gist.github.com/CypherpunkSamurai/e9df70d6d30613f183706a4a69d24cd2 | |
# Go parameters | |
GOCMD=go | |
GOBUILD=$(GOCMD) build | |
GOCLEAN=$(GOCMD) clean |
type Tweet { | |
id: ID! | |
# The tweet text. No more than 140 characters! | |
body: String | |
# When the tweet was published | |
date: Date | |
# Who published the tweet | |
Author: User | |
# Views, retweets, likes, etc | |
Stats: Stat |
<# | |
.SYNOPSIS | |
Creates a portable Rust installation with customizable toolchain. | |
.DESCRIPTION | |
This script creates a self-contained, portable Rust installation that can be | |
moved between systems or run from external drives. Supports both GNU and MSVC toolchains. | |
.PARAMETER InstallDir | |
Directory where portable Rust will be installed. Default: .\PortableRust |
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 |