Skip to content

Instantly share code, notes, and snippets.

View jiangyuan's full-sized avatar
:octocat:

jero jiangyuan

:octocat:
  • ByteDance
  • shenzhen, china
View GitHub Profile
To enable any of there plugins, go to: `Settings` -> `Plugins`
You'll find plugins in the first page, to get the others press `Browse repositories...` button.
- Apache config (.htaccess) support
- Bootstrap
- Color Ide
- CSS Support
- EditorConfig
- File Watchers
- Git Integration
@tonymtz
tonymtz / gist:d75101d9bdf764c890ef
Last active June 12, 2025 15:08
Uninstall nodejs from OSX Yosemite
# first:
lsbom -f -l -s -pf /var/db/receipts/org.nodejs.pkg.bom | while read f; do sudo rm /usr/local/${f}; done
sudo rm -rf /usr/local/lib/node /usr/local/lib/node_modules /var/db/receipts/org.nodejs.*
# To recap, the best way (I've found) to completely uninstall node + npm is to do the following:
# go to /usr/local/lib and delete any node and node_modules
cd /usr/local/lib
sudo rm -rf node*
@yannisxu
yannisxu / proxy.sh
Last active April 24, 2016 10:57
修改 Mac 网络自动代理配置
alias pacon='sudo networksetup -setautoproxyurl Wi-Fi https://yourproxy.pac'
alias pacoff='sudo networksetup -setautoproxyurl Wi-Fi off'