This document explains how to set up multiple LÖVE installations. Make sure you have all dependencies for the versions of LÖVE you want to install.
Make a directory to install LÖVE source and binaries into.
mkdir $HOME/love/
| local batch = {} | |
| local holes_err = "bad argument #%s to function '%s' (this list doesn't support holes)" | |
| local refill = function (t, ...) | |
| local newn = select('#', ...) | |
| local length = math.max(newn, (t.n or #t)) | |
| for i = 1, length do | |
| t[i] = select(i, ...) |
| ffmpeg -i test.mov -vcodec libx264 -vf 'scale=640:trunc(ow/a/2)*2' -acodec aac -vb 1024k -minrate 1024k -maxrate 1024k -bufsize 1024k -ar 44100 -strict experimental -r 30 out.mp4 |
| --[[ | |
| LuaJIT-cURL | |
| Lucien Greathouse | |
| LuaJIT FFI cURL binding aimed at cURL version 7.38.0. | |
| Copyright (c) 2014 lucien Greathouse | |
| This software is provided 'as-is', without any express | |
| or implied warranty. In no event will the authors be held | |
| liable for any damages arising from the use of this software. |
| #!/bin/bash | |
| file=/home/$SUDO_USER/.local/share/userpass.list | |
| function showHelp { | |
| version=0.0.2 | |
| versionDate="2014-06-24" | |
| echo "$0 - manage passwords | |
| #step 1: install SDL | |
| hg clone http://hg.libsdl.org/SDL | |
| cd SDL | |
| ../configure | |
| make [-j 4] | |
| sudo make install |
| #!/bin/bash | |
| version=1.0.1 | |
| versionDate="2014-02-14" | |
| function showHelp() { | |
| echo "watchfile - monitor file(s)/command and perform action when changed | |
| Possible ways of usage | |
| ---------------------------------------- |
| // Just before switching jobs: | |
| // Add one of these. | |
| // Preferably into the same commit where you do a large merge. | |
| // | |
| // This started as a tweet with a joke of "C++ pro-tip: #define private public", | |
| // and then it quickly escalated into more and more evil suggestions. | |
| // I've tried to capture interesting suggestions here. | |
| // | |
| // Contributors: @r2d2rigo, @joeldevahl, @msinilo, @_Humus_, | |
| // @YuriyODonnell, @rygorous, @cmuratori, @mike_acton, @grumpygiant, |
| love=$(/usr/bin/env love) | |
| zip=$(/usr/bin/env zip) | |
| luac=$(/usr/bin/env luac) | |
| # path to win and osx distributions | |
| windir=~/Stuff/love-win-x86 | |
| osxapp=~/Stuff/love.0.8.app | |
| game=TITLE-OF-THE-GAME.love |