This repository is purely a staging one for converting Eternity from Subversion to Git. As the process is refined, force-pushes may happen frequently. Do not depend on it having stable references.
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
diff --git a/config.def.h b/config.def.h | |
index 2a7e098..f6d367f 100644 | |
--- a/config.def.h | |
+++ b/config.def.h | |
@@ -5,7 +5,7 @@ | |
* | |
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html | |
*/ | |
-static char font[] = "Liberation Mono:pixelsize=12:antialias=false:autohint=false"; | |
+static char font[] = "DejaVu Sans Mono-10"; |
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
UMSDOS uses a fairly simple system to store metadata information in | |
the --LINUX-.--- files. Each full metadata block is a multiple of 64 | |
bytes, up to 256 bytes, depending on the length of the filename. | |
UMSDOS uses a deterministic way to convert Linux filenames into | |
MS-DOS-compatible 8.3 style names, handling situations like | |
case-sensitivity, uniqueness when the filenames differ after the 8th | |
character, special filenames not allowed on MS-DOS and FAT, and so on. | |
It allows a fairly full set of typical POSIX functionality, only | |
lacking sparse file support (which would be impossible to implement |
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
#!/usr/bin/env bash | |
# Extracts thing from here: http://www.unforgettable.dk/ | |
cat <<EOF | |
If you are not on a file system with features such as compression or | |
de-duplication, you will most likely run out of space! ... Unless you | |
happen to have 4.5PB to spare. | |
Will begin in 5 seconds. ^C now to abort. |
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
#include <windows.h> | |
#include <stdio.h> | |
int main(void) | |
{ | |
static const char* (CDECL *pwine_get_version)(void); | |
HMODULE hntdll = GetModuleHandle("ntdll.dll"); | |
if(!hntdll) { | |
puts("Running on Windows 9x."); | |
return 1; |
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/sh - | |
if [ $# -eq 0 ]; then | |
git_commit_date="$(date -ud "@$(git show -q --format=%ct HEAD)" +%Y-%m-%dT%H:%M:%SZ)" | |
git_commit_email="$(git show -q --format=%ce HEAD)" | |
else | |
git_commit_date="$(date -ud "@$(git show -q --format=%ct "$1")" +%Y-%m-%dT%H:%M:%SZ)" | |
git_commit_email="$(git show -q --format=%ce "$1")" | |
fi |
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
alexmax = Alex Mayfield <[email protected]> America/New_York | |
anarkavre = John Corrado <[email protected]> America/New_York | |
ghostlydeath = GhostlyDeath <[email protected]> America/New_York | |
Russell = Russell Rice <[email protected]> Pacific/Auckland | |
russellrice = Russell Rice <[email protected]> Pacific/Auckland | |
som = Stephen McGranahan <[email protected]> America/Chicago | |
deathz0r = Dean Joseph <[email protected]> | |
denis = Denis Lukianov <[email protected]> | |
dr_sean = Sean Leonard <[email protected]> | |
hypereye = Mike Wood <[email protected]> |
Use these files for managing a Minecraft server with systemd.
Place minecraft.service in /etc/systemd/system, and run systemctl
daemon-reload
. minecraft should go into /etc/conf.d or an equivalent
directory (change the path in the service too). /etc/conf.d/minecraft
should not have world permissions. chown root:root
and chmod 600
the
file.
The user and group minecraft should exist. The minecraft user should only be a member of the minecraft group, for system security.
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
[xboxdrv] | |
evdev = /dev/input/by-id/usb-Microsoft_Controller_7EED8FE138A3-event-joystick | |
mimic-xpad = true | |
evdev-grab = true | |
evdev-debug = false | |
silent = true | |
[evdev-absmap] | |
ABS_HAT0X = dpad_x | |
ABS_HAT0Y = dpad_y |
OlderNewer