start new:
tmux
start new with session name:
tmux new -s myname
| .heart { | |
| width: 20em; | |
| height: 20em; | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .heart span { | |
| display: block; | |
| position: absolute; | |
| width: 10em; |
| package main | |
| import ( | |
| "fmt" | |
| "image" | |
| "os" | |
| _ "image/jpeg" | |
| _ "image/png" | |
| ) |
| package main | |
| import ( | |
| "crypto/aes" | |
| "crypto/cipher" | |
| "crypto/rand" | |
| "encoding/base64" | |
| "fmt" | |
| "io" | |
| ) |
| package main | |
| import ( | |
| "fmt" | |
| "github.com/gorilla/mux" | |
| "github.com/gorilla/securecookie" | |
| "net/http" | |
| ) | |
| // cookie handling |
| // A small SSH daemon providing bash sessions | |
| // | |
| // Server: | |
| // cd my/new/dir/ | |
| // #generate server keypair | |
| // ssh-keygen -t rsa | |
| // go get -v . | |
| // go run sshd.go | |
| // | |
| // Client: |
# Key considerations for algorithm "RSA" ≥ 2048-bit
openssl genrsa -out server.key 2048
# Key considerations for algorithm "ECDSA" ≥ secp384r1
# List ECDSA the supported curves (openssl ecparam -list_curves)| function addCommaByID(id) { | |
| var price; | |
| price = ""; | |
| var field = document.getElementById(id); | |
| while (field.value.indexOf(',') != -1) { | |
| field.value = field.value.replace(',', ''); | |
| } | |
| txt_field = field.value.length; |
| /** | |
| * Open https://app.snapp.ir | |
| * Login with your credentials | |
| * Copy and pasting this code in developer tools console | |
| * Waiting... :) | |
| */ | |
| (async function () { | |
| function sleep(ms = 0) { | |
| return new Promise(r => setTimeout(r, ms)); | |
| } |