Note
to active Office without crack, just follow https://github.com/WindowsAddict/IDM-Activation-Script,
you wiil only need to run
irm https://massgrave.dev/ias | iex
apt update | |
apt install -y vim lrzsz python3 python3-dev python3-pip python3-venv | |
curl -SL# git.io/tvimrc -o ~/.vimrc | |
curl -sSL git.io/jovial | bash | |
# curl -sSL git.io/sslaunch | bash |
cosnt crypto = require('crypto') | |
const md5sum = str => crypto.createHash('md5').update(str).digest('hex') | |
function PoW(target, start, end) { | |
while (true) { | |
let rand = Math.random().toString(36) | |
let hash = md5sum(rand).slice(start, end) | |
if (hash === target) return rand | |
} | |
} |
:: active win10 VL | |
:: ensure you are run as Administrator | |
cmd /c "slmgr /skms kms.03k.org && slmgr /ato" | |
:: active office VL | |
:: in Microsoft Office installed folder | |
:: office2016 64bit default in C:\Program Files\Microsoft Office\Office16 | |
cd "C:\Program Files\Microsoft Office\Office16" | |
cscript ospp.vbs /sethst:kms.03k.org && cscript ospp.vbs /act |
Note
to active Office without crack, just follow https://github.com/WindowsAddict/IDM-Activation-Script,
you wiil only need to run
irm https://massgrave.dev/ias | iex
apt install -y python3-pip libopus0 ffmpeg libmagic1 | |
pip3 install setuptools ehforwarderbot efb-telegram-master efb-wechat-slave | |
EFB_DATA_PATH="${HOME}/.ehforwarderbot" | |
EFB_PROFILE="${EFB_DATA_PATH}/profiles/default" | |
mkdir -p ${EFB_PROFILE}/blueset.telegram | |
cat > ${EFB_PROFILE}/config.yaml <<-EOF | |
master_channel: blueset.telegram | |
slave_channels: |
#!/usr/bin/env bash | |
# curl -sL https://gist.githubusercontent.com/zthxxx/772178f5393b07c1e1bb7536c5f95c3d/raw/deb-install-docker.sh | bash | |
specify_user="${1:-root}" | |
apt update | |
apt install -y apt-transport-https ca-certificates curl gnupg2 software-properties-common | |
apt remove -y docker docker-engine docker.io | |
LSB=`lsb_release -is | tr '[:upper:]' '[:lower:]'` | |
curl -fsSL https://download.docker.com/linux/${LSB:-debian}/gpg | apt-key add - |
# mongo docker init operate | |
mongo_data="/var/lib/mongo/db" | |
sudo mkdir -p "$mongo_data" | |
sudo chown -R $USER "$mongo_data" | |
docker run --rm -v "$mongo_data":/data/db mongo:3.6 init-db.js | |
docker run -d --rm -v "$mongo_data":/data/db -p 127.0.0.1:23333:27017 --name mongo -h mongodb mongo:3.6 --auth | |
docker logs -f mongo |
@echo off | |
if not exist venv/ call init.bat | |
call venv\Scripts\activate.bat | |
pyinstaller -F main.py --hidden-import=pandas._libs.tslibs.timedeltas | |
call venv\Scripts\deactivate.bat | |
rd /s/q build |
const raw = require('fs').readFileSync('/dev/stdin', 'utf8').trim().split('\n') | |
let line | |
while (line = raw.shift()) { | |
console.log(line) | |
} |