Skip to content

Instantly share code, notes, and snippets.

View wcxaaa's full-sized avatar
✌️
位,耶赛 啪盒类 福航斯诶!

Chenxuan Wang wcxaaa

✌️
位,耶赛 啪盒类 福航斯诶!
  • @xtoneict
  • Chengdu
View GitHub Profile
@mrowrpurr
mrowrpurr / Papyrus Project Template File.ppj.md
Last active October 22, 2024 15:56
VS Code File Templates for Papyrus

Note: Check to verify the path in these files matches your Skyrim install folder (else change the paths)

To use these templates with the Papyrus Extension for Visual Studio Code:

  1. Install the extension
  2. Download the latest version of Pyro
  3. Browse to C:\Users\[YOUR USER]\.vscode\extensions\joelday.papyrus-lang-vscode-*\
  4. Delete everything in the pyro folder and replace it with the freshly downloaded version of pyro
  5. Open up the resources/sse folder
  6. Open skyrimse.ppj and replace the contents with the contents of the skyrimse.ppj in this Gist
@valorad
valorad / mcross.sh
Created October 22, 2017 02:21
magical crossover
# .bashrc
mcross() {
export http_proxy=http://127.0.0.1:1080;
export https_proxy=http://127.0.0.1:1080;
}
mback() {
unset http_proxy;
unset https_proxy;
@valorad
valorad / addTo.bashrc.sh
Last active January 22, 2018 12:09
安装yarn的正确姿势(有版本管理器如nvm存在时) How to install Yarn when node is under version management (such as nvm)
# 开启yarn global
# 添加到 ~/.bashrc 最后
# add yarn global
export PATH=$PATH:$HOME/.yarn/bin