Skip to content

Instantly share code, notes, and snippets.

@brin100
brin100 / sysctl.conf
Created March 18, 2016 16:24 — forked from kgriffs/sysctl.conf
Linux Web Server Kernel Tuning
# Configuration file for runtime kernel parameters.
# See sysctl.conf(5) for more information.
# See also http://www.nateware.com/linux-network-tuning-for-2013.html for
# an explanation about some of these parameters, and instructions for
# a few other tweaks outside this file.
# Protection from SYN flood attack.
net.ipv4.tcp_syncookies = 1
#!/usr/bin/env bash
# locale-check - find common misconfigurations in system locale
#
# (c) 2012-2015 Mantas Mikulėnas <[email protected]>
# Released under the MIT Expat license.
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# Author: Pieter Noordhuis
# Description: Simple demo to showcase Redis PubSub with EventMachine
#
# Update 7 Oct 2010:
# - This example does *not* appear to work with Chrome >=6.0. Apparently,
# the WebSocket protocol implementation in the cramp gem does not work
# well with Chrome's (newer) WebSocket implementation.
#
# Requirements:
# - rubygems: eventmachine, thin, cramp, sinatra, yajl-ruby
@brin100
brin100 / dvdrip.bash
Last active August 29, 2015 14:17 — forked from danhigham/dvdrip.bash
#!/usr/bin/env bash
SUBJECT="DVD is done ripping"
EMAIL="[email protected]"
EMAILMESSAGE="./emailmessage.txt"
while [ 1 ]
do
echo "Waiting for new disk.."