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
function self_service() { | |
document.getElementById('sys_display.change_task.assignment_group').value = 'BCS App Dev - Logan Jarrett'; | |
document.getElementById('sys_display.change_task.assigned_to').value = 'Alexej Magura'; | |
} | |
self_service(); |
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
* Filename: | |
(A +): Added A. | |
(- A): Removed A. | |
(B +): Added B. | |
(B += foo): Added foo to B. | |
(B -= foo): Removed foo from B. | |
(foobar +- B): Replaced B with foobar. | |
(foobar): Modified foobar. | |
(C +): Added C. |
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
_prefix="$HOME/pre" | |
prepare() { | |
# set correct keymap path | |
# FIXME this may not work at RRD since their Linux servers aren't Arch Linux based | |
sed -i 's#/usr/share/keymaps#/usr/share/kbd/keymaps#g' Completion/Unix/Command/_loadkeys | |
# Fix usb.ids path | |
# FIXME I don't know if this is necessary/will even work at RRD | |
sed -i 's#/usr/share/misc/usb.ids#/usr/share/hwdata/usb.ids#g' Completion/Linux/Command/_lsusb |
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
require 'formula' | |
# Documentation: https://github.com/mxcl/homebrew/wiki/Formula-Cookbook | |
# /usr/local/Library/Contributions/example-formula.rb | |
# PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST! | |
class ScreenLatest < Formula | |
homepage 'http://www.gnu.org/software/screen' | |
url 'http://ftp.de.debian.org/debian/pool/main/s/screen/screen_4.1.0~20120320gitdb59704.orig.tar.gz' | |
sha1 '88e2f81c08326d4c435c59e7261739abca755c87' |
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
#if 0 | |
Recursive C Preprocessor 99 Bottles | |
by Alexej Magura | |
NOTE | |
run like so: | |
`cpp -Wp,-nostdinc,-w,-P 99.h' | |
or | |
`gcc -E -Wp,-nostdinc,-w,-P 99.h' |
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
dnl GNU M4 - A macro language | |
dnl by Alexej Magura | |
divert(-1) | |
dnl Removes all the trailing newlines and | |
dnl prevents unnecessary usage of `dnl' | |
dnl (i.e. using `dnl' to remove trailing newlines) | |
dnl The `expand` macros are from Autoconf. | |
dnl Everything else is me. |
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
menuentry "FreeBSD 10" { | |
insmod ufs2 | |
insmod part_gpt | |
set root='(hd0,9)' | |
search --no-floppy --fs-uuid --set 5365af5267e6de53 | |
kfreebsd /boot/kernel/kernel | |
kfreebsd_loadenv /boot/device.hints | |
set kFreeBSD.vfs.root.mountfrom=ufs:gpt/fbsd-rootfs | |
set kFreeBSD.vfs.root.mountfrom.options=rw | |
set kFreeBSD.hw.psm.synaptics_support='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
# /etc/init/mongos.conf | |
description "service file for mongos server" | |
author "Alexej Magura" | |
limit nofile 20000 20000 | |
kill timeout 300 # wait 300s between SIGTERM and SIGKILL | |
expect daemon |