An open API service indexing awesome lists of open source software.

https://github.com/wingjay/hacker_scripts

My personal hacker scripts (Shell + Python + NodeJS script)
https://github.com/wingjay/hacker_scripts

Last synced: 8 months ago
JSON representation

My personal hacker scripts (Shell + Python + NodeJS script)

Awesome Lists containing this project

README

          

# Hacker_scripts of wingjay

## Run Shell script
1. create .sh file
2. `chmod +x your.sh`
3. Edit ~/.zshrc file, add `export PATH=$PATH:~/hacker_script`; source ~/.zshrc

#### json parser
`brew install jq`
https://stedolan.github.io/jq/tutorial/

## Run Python script
1. python `virtual-env` activate (python2/python3)

## Run Node js script
1. install Node.js: `brew install node; node -v; brew install npm;`
2. install puppeteer
```
npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm i puppeteer
```
3. `node your.js`