Skip to content

Instantly share code, notes, and snippets.

View TonyWhitley's full-sized avatar
💭
Hacking away trying to make rFactory to work as an .exe

TonyWhitley

💭
Hacking away trying to make rFactory to work as an .exe
  • UK
View GitHub Profile
@TonyWhitley
TonyWhitley / gitCompare.bat
Created November 16, 2023 16:51
Compare local file with the file in another git branch
@echo off
setlocal
echo Compare local file with the file in another git branch
echo.
set /p branch=Branch to compare to? :
set /p file=File? (relative to repo root, use \ for paths) :
set file=.\%file: =%
rem %file: =% removes any spaces (aimed at trailing spaces)
@TonyWhitley
TonyWhitley / install.sh
Last active April 1, 2022 18:01
VLC install and build under WSL, written by a Unix newbie. Doesn't work of course
#! /bin/sh
apt-get install gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64 mingw-w64-tools
apt-get install lua5.2 libtool automake autoconf autopoint make gettext pkg-config
apt-get install qt4-dev-tools qt5-default git subversion cmake cvs
apt-get install wine64-development-tools libwine-dev zip p7zip nsis bzip2
apt-get install yasm ragel ant default-jdk protobuf-compiler dos2unix
git clone http://git.videolan.org/git/vlc.git vlc