Original link: http://www.concentric.net/~Ttwang/tech/inthash.htm
Taken from: http://web.archive.org/web/20071223173210/http://www.concentric.net/~Ttwang/tech/inthash.htm
Reformatted using pandoc
Thomas Wang, Jan 1997
last update Mar 2007
| global | |
| log 127.0.0.1 local0 notice | |
| maxconn 50000 | |
| daemon | |
| stats socket /tmp/proxystats level admin | |
| defaults | |
| log global | |
| mode http | |
| option httplog | |
| option dontlognull |
Original link: http://www.concentric.net/~Ttwang/tech/inthash.htm
Taken from: http://web.archive.org/web/20071223173210/http://www.concentric.net/~Ttwang/tech/inthash.htm
Reformatted using pandoc
Thomas Wang, Jan 1997
last update Mar 2007
| #!/bin/bash | |
| if [ $1 ] | |
| then | |
| echo Processing file $1; | |
| else | |
| for var in `find *.png`; | |
| do | |
| echo Processing file $var; | |
| sips -Z $(($(sips -g pixelWidth "$var" | cut -s -d ':' -f 2 | cut -c 2-) / 2)) "$var" --out "resized_$var" &> /dev/null |
| # source : http://code.google.com/p/natvpn/source/browse/trunk/stun_server_list | |
| # A list of available STUN server. | |
| stun.l.google.com:19302 | |
| stun1.l.google.com:19302 | |
| stun2.l.google.com:19302 | |
| stun3.l.google.com:19302 | |
| stun4.l.google.com:19302 | |
| stun01.sipphone.com | |
| stun.ekiga.net |
# referecing: # https://www.digitalocean.com/community/tutorials/how-to-install-apache-kafka-on-ubuntu-14-04 # https://chongyaorobin.wordpress.com/2015/07/08/step-by-step-of-install-apache-kafka-on-ubuntu-standalone-mode/
$ sudo useradd kafka -m
| #!/bin/sh | |
| # | |
| # Read-only Root-FS for Raspian | |
| # | |
| # Modified 2015 by Pascal Rosin to work on raspian-ua-netinst with | |
| # overlayfs integrated in Linux Kernel >= 3.18. | |
| # | |
| # Originally written by Axel Heider (Copyright 2012) for Ubuntu 11.10. | |
| # This version can be found here: | |
| # https://help.ubuntu.com/community/aufsRootFileSystemOnUsbFlash#Overlayfs |
| lang en_US | |
| langsupport en_US | |
| keyboard us | |
| timezone Etc/UTC | |
| text | |
| install | |
| skipx | |
| halt | |
| # Ridiculous URL... I know... |
| #!/usr/bin/env ruby | |
| require 'rubygems' | |
| require 'roo' | |
| pwd = File.dirname(__FILE__) | |
| Dir.glob("#{pwd}/*.xls") do |file| | |
| file_path = "#{pwd}/#{file}" | |
| file_basename = File.basename(file, ".xls") | |
| xls = Excel.new(file_path) |
| body { | |
| font-family: Helvetica, arial, sans-serif; | |
| font-size: 14px; | |
| line-height: 1.6; | |
| padding-top: 10px; | |
| padding-bottom: 10px; | |
| background-color: white; | |
| padding: 30px; } | |
| body > *:first-child { |
| require 'rubygems' | |
| require 'rubygems/package' | |
| require 'zlib' | |
| require 'fileutils' | |
| module Util | |
| module Tar | |
| # Creates a tar file in memory recursively | |
| # from the given path. | |
| # |