Skip to content

Instantly share code, notes, and snippets.

@jgbishop
jgbishop / work.bat
Created February 11, 2020 14:28
Helper script to enable or disable a Python virtual environment
@echo off
if exist "%cd%\venv" (
if "%1" == "off" (
echo Deactivating virtual environment
call "%cd%\venv\Scripts\deactivate.bat"
echo.
) else (
echo Activating virtual environment
call "%cd%\venv\Scripts\activate.bat"
@jgbishop
jgbishop / settings.xml
Last active August 29, 2015 13:57
Updates for TEdit settings.xml, adding many missing sprites and walls through Terraria version 1.2.3.1.
<?xml version="1.0" encoding="utf-8" ?>
<!--
Terraria Settings.XML Specifications
====================================
Compatible Ver: Terraria 1.2.3.1
Primary URL: https://raw.github.com/BinaryConstruct/Terraria-Map-Editor/master/TEditXna/settings.xml
====================================
Documentation moved to the end of this file.