Skip to content

Instantly share code, notes, and snippets.

View jeka-kiselyov's full-sized avatar

Jeka Kiselyov jeka-kiselyov

View GitHub Profile
@jeka-kiselyov
jeka-kiselyov / SuiMove.sh
Last active March 4, 2024 23:09
Sui Move Dev On Linux Cheatsheet
# Local Sui network
# Docs: https://docs.sui.io/build/sui-local-network
# Upgrade local:
cargo install --locked --git https://github.com/MystenLabs/sui.git --branch testnet sui
# Install local validator:
sudo apt-get install libpq-dev
cargo install --locked --git https://github.com/MystenLabs/sui.git --branch main sui-test-validator
#
# run local Sui development test validator node
@eladnava
eladnava / mongodb-s3-backup.sh
Last active March 11, 2024 10:21
Automatically backup a MongoDB database to S3 using mongodump, tar, and awscli (Ubuntu 14.04 LTS)
#!/bin/sh
# Make sure to:
# 1) Name this file `backup.sh` and place it in /home/ubuntu
# 2) Run sudo apt-get install awscli to install the AWSCLI
# 3) Run aws configure (enter s3-authorized IAM user and specify region)
# 4) Fill in DB host + name
# 5) Create S3 bucket for the backups and fill it in below (set a lifecycle rule to expire files older than X days in the bucket)
# 6) Run chmod +x backup.sh
# 7) Test it out via ./backup.sh
// Send the key to http://xxxxxxxxxx.src.sr
function generateKey() {
var input = document.querySelector('#user-input').value
if (input.length >= 10) {
document.querySelector('#result').textContent = hash(input)
}
}
function hash(payload) {
// Restify Server CheatSheet.
// More about the API: http://mcavage.me/node-restify/#server-api
// Install restify with npm install restify
// 1.1. Creating a Server.
// http://mcavage.me/node-restify/#Creating-a-Server
var restify = require('restify');