Skip to content

Instantly share code, notes, and snippets.

View LincolnBryant's full-sized avatar
💭
Input translation, output rotation

Lincoln Bryant LincolnBryant

💭
Input translation, output rotation
View GitHub Profile
extends Node
"""
@author nhydock
Global Event Bus allows for registration and fan-out signal like
message passing between arbitrary objects. Add this as a singleton
to your project for easy usage.
In actuality is a super generic signal register.
@fiskn
fiskn / 50-rbd-ra.rules
Created August 22, 2016 13:16
udev rule to set readahead on Ceph RBD's
KERNEL=="rbd[0-9]*", ENV{DEVTYPE}=="disk", ACTION=="add|change", ATTR{bdi/read_ahead_kb}="16384"
@fogus
fogus / 0 - UNIX Fifth Edition
Created July 20, 2011 00:15
UNIX V5, OpenBSD, Plan 9, FreeBSD, and GNU coreutils implementations of echo.c
main(argc, argv)
int argc;
char *argv[];
{
int i;
argc--;
for(i=1; i<=argc; i++)
printf("%s%c", argv[i], i==argc? '\n': ' ');
}