This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -euo pipefail | |
IFS=$'\n\t' | |
# Ubuntu 20.04 dev Server | |
# Run like (without sudo) - bash install_lamp.sh | |
# Script should auto terminate on errors | |
export DEBIAN_FRONTEND=noninteractive |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Credit goes to KornyAlex | |
# Source: https://steamcommunity.com/app/493900/discussions/0/1737758859958843340/?ctp=2#c4348747794031248217 | |
# Go to Dungeons 3 | |
cd ~/Library/Application\ Support/Steam/steamapps/common/Dungeons\ 3/Dungeons3.app | |
# Copy and remove signatures | |
cp Contents/Plugins/RakNet.bundle/Contents/MacOS/RakNet Contents/Frameworks/MonoEmbedRuntime/osx/libRakNet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static int graphicsLine(lua_State *L) { // love.graphics.line() -- Semi-Broken | |
if (sf2d_get_current_screen() == currentScreen) { | |
int argc = lua_gettop(L); | |
//Table version | |
if( argc == 1 ) { | |
int tableLen = lua_objlen(L, 1); |