Skip to content

Instantly share code, notes, and snippets.

View kwadroke's full-sized avatar

Kwadroke of "The Wired" kwadroke

View GitHub Profile
@kwadroke
kwadroke / onFOSS_flyer-20230923_edit.svg
Last active August 27, 2023 16:27
onFOSS Flyer Edited
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kwadroke
kwadroke / gen_maplist.sh
Last active September 10, 2023 19:14
LibreQuake + FTEQW server.cfg with optional ktx.cfg
#!/bin/sh
# Create maplist.cfg from the file names in lq1/maps and place it in lq1
# This will remove the old maplist
cd lq1/maps
if [ -e ../maplist.cfg ]; then
## Delete the current maplist.cfg file so that there is not double (or more) entries
rm ../maplist.cfg
fi
@kwadroke
kwadroke / onfoss_lite.md
Last active July 4, 2023 16:36
onFOSS Lite [RFC]

"onFOSS Lite" (aka "onFOSS EZ-Mode")

Last updated 2023-07-04

"onFOSS Lite" lets someone run their own mini onFOSS event without setting up servers. The trade off is that organizers give up game control to pre-existing public servers.

Why?

  • Running a server might be out of reach of some people.
    • May not have knowledge, budget, or access to run game servers.
  • Less setup time
@kwadroke
kwadroke / emptyepsilon.yml
Last active November 23, 2020 16:12
Empty Epsilon Appimage
```
app: Linux_EmptyEpsilon_EE-2020.11.23
binpatch: true
ingredients:
dist: buster
sources:
- deb http://ftp.us.debian.org/debian/ buster main contrib non-free
debs:
## Change the path of the Deb file to your downloaded location
- /home/kwadroke/Downloads/games/Linux_EmptyEpsilon_EE-2020.11.23.deb
@kwadroke
kwadroke / qstat.cfg
Created December 9, 2017 05:20
FreeCS (CS1.5/FTEQW) additions for QStat
## Add to bottom of /etc/qstat.cfg
## query with "quakestat -freecsm dpmaster.deathmask.net:27950" (on Debian)
gametype FREECS new extend Q3S
name = FreeCS
default port = 27950
template var = FREECS
game rule = gamename
end
@kwadroke
kwadroke / Raspberry_Pi_Multiplayer_Games.md
Last active October 17, 2016 17:31
Raspberry Pi Multiplayer Games

LAN/Internet Games for the Raspberry Pi

Games good for Raspberry Pi LAN Parties or Internet play

  • Doom/Doom2/FreeDoom {All}
    • ZDoom/GZDoom {Pi3}
  • Quake {All}
    • Darkplaces engine {All}
  • Quake 2 {All}
  • Quake III Arena {All}

SimPit for Raspberry Pi

Games & Config for a Raspberry Pi SimPit (cockpit for simulators)

Not just using a Pi for accessories, but actually using it for games.

Hardware

Computer Hardware

  • Raspberry Pi 3 w/ PS
  • Large Monitor/TV
@kwadroke
kwadroke / engpresets.html
Created February 4, 2016 13:42
Engineering presets for EmptyEpsilon httpserver
<html>
<head>
<title>Engineering Presets</title>
<style>
@font-face {
font-family: 'sansationregular';
src: url('Sansation-Regular-webfont.eot');
src: url('Sansation-Regular-webfont.eot?#iefix') format('embedded-opentype'),
@kwadroke
kwadroke / ee_alert_status.html
Last active January 1, 2016 22:28
EmptyEpsilon Status Screen for Alerts
<html>
<script>
//Create a directory called "www" in the EmptyEpsilon main directory an place this file there. Then enable http by editing the options.ini file by adding httpserver=8080
var url= "/get.lua?alert=getAlertLevel()"
// Create the XHR object.
function createCORSRequest(method, url) {
var xhr = new XMLHttpRequest();
if ("withCredentials" in xhr) {