This file contains hidden or 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 | |
# | |
# Libretro playlist builder | |
# | |
# Usage: | |
# scan.sh "Files path" "Core" "Core name" "Playlist filename" ["Playlists path"] | |
# | |
# Example: | |
#./scan.sh "/storage/roms/arcade/*.zip" "/tmp/cores/fba_libretro.so" "Arcade (FB Alpha - SVN)" "FB Alpha - Arcade Games.lpl" "/storage/playlists/" |
This file contains hidden or 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
function OnGameEvent_player_connect(params){ | |
if(!params.bot){ | |
local log = "Player " + params.name + " connected from " + params.address + " with SteamID: " + params.networkid | |
printl(log) | |
local file = FileToString("connect_log.txt") | |
if(file == null){ | |
StringToFile("connect_log.txt", log) | |
} else { |
This file contains hidden or 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 | |
while read -r a b; do | |
echo "\"$a\",\"$b\"" >> RESOURCE_OFFSETS.TXT # dump offest and length into file | |
if [ ! -f "$a.AUD" ] ; then # check if the file does not already exist | |
dd if=../RESOURCE.AUD of="$a".AUD bs=1 count="$b" skip="$a" iflag=skip_bytes,count_bytes # extract the raw audio | |
ffmpeg -nostdin -loglevel fatal -i "$a".AUD "$a".ogg # convert into modern format | |
else | |
echo "File $a.AUD Already Exists Skipping........" | |
fi | |
done < <(awk -F'[^0-9]*' '{if (NR!=1) {print $1$2$3$4" "$5$6}}' Logfile.CSV); # parse procmon csv logs |
This file contains hidden or 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
If (!A_IsAdmin){ | |
Run *RunAs "%A_AhkPath%" "%A_ScriptFullPath%" | |
} | |
262MACenterLayout() | |
{ | |
MyCenterWindow(2064, 1288, 2048, 1280) ; Client Size Should Be 2048x1280 8:5 1:1 | |
} | |
QWXGACenterLayout() |
This file contains hidden or 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
-- garrysmod/addons/ulx_cheat/lua/ulx/modules/sh/hl2cheat.lua | |
FCVAR_DEVELOPMENTONLY = bit.lshift(1,1) | |
local function undev(name) | |
local cvar = GetConVar(name) | |
if cvar and cvar.SetFlags then | |
cvar:SetFlags (bit. band (cvar:GetF1ags(), bit.bnot(FCVAR_DEVELOPMENTONLY))) | |
end | |
end | |
undev("anim_showstate") | |
undev("anim_showstatelog") |
This file contains hidden or 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
//----------------------------------------------------- | |
Msg("Activating Mutation 16 Extra Hunters\n"); | |
::mapName <- Director.GetMapName().tolower() | |
::survivorSet <- Director.GetSurvivorSet() | |
::ghostModeEnabled <- false | |
::Debug <- true | |
::devs <- {} | |
This file contains hidden or 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
using System; | |
using System.IO; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Diagnostics; | |
using System.Data; | |
using System.Drawing; | |
using System.Linq; | |
using System.Runtime.InteropServices; | |
using System.Text; |
This file contains hidden or 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
<?php | |
//Turn off errors in production since they can potentially reveal request information. | |
//error_reporting(0); | |
//Uncomment before public | |
/* A Generic GET request with cURL | |
* String $cURL - URL to request | |
* return array | |
*/ | |
function ValveGET_cURL($cURL) { |
This file contains hidden or 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
/* the (*) in C code is a pointer */ | |
/* the 2nd time you reference a pointer leave out the (*) */ | |
/* to stop code at a location put raise(SIGINT); */ | |
/* https://www.programiz.com/c-programming/c-pointers */ | |
// getLine("] ", user_server_data, strlen(user_server_data)); | |
#include <sys/types.h> | |
#ifndef WIN32 | |
#include <unistd.h> |
This file contains hidden or 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
// Left 4 No More Room In Hell 2 CFG (Version 0.9.1 BETA) | |
motdfile "l4nmrih2_motd.txt" | |
hostfile "l4nmrih2_banner.txt" | |
hostname "Left 4 No More Room In Hell 2" | |
// Extra Tweaks | |
sm_cvar sv_noclipaccelerate 9.5 // Needed For Noclip | |
// Director Tweaks | |
sm_cvar director_no_bosses 0 // Disables Director Tanks (Final Maps Need Tanks!!!!) |
NewerOlder