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' | |
class Tsocks < Formula | |
# The original is http://tsocks.sourceforge.net/ | |
# This GitHub repo is a maintained fork with OSX support | |
homepage 'http://github.com/pc/tsocks' | |
head 'https://github.com/pc/tsocks.git' | |
depends_on 'autoconf' => :build if MacOS.xcode_version.to_f >= 4.3 |
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
;INSTRUCTIONS - Save as a file in your mIRC directory, and run //load -rs (the filename) | |
;follow on screen instructions | |
on *:LOAD: { | |
echo -a 9,1RP Safety v0.01 by Necoco/TKWare Loaded. | |
echo -a 9,1Please make sure you specify the channel you wish to rp in with /rpset (channel). | |
/set %rpsafetyon 0 | |
} | |
alias rpset { |
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
class String | |
def to_r | |
a = self.partition(/\(.+?\)/) | |
fail "No range in string" if a[0].empty? | |
fail "Invalid range #{a}" if a.select { |v| v.match(/[A-Za-z]/) } | |
eval a[1] | |
end | |
def to_r_leading_zero | |
a = self.partition(/\(.+?\)/) |
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 you want, I can try and help with pointers as to how to improve the indexing speed you get. Its quite easy to really increase it by using some simple guidelines, for example: | |
- Use create in the index API (assuming you can). | |
- Relax the real time aspect from 1 second to something a bit higher (index.engine.robin.refresh_interval). | |
- Increase the indexing buffer size (indices.memory.index_buffer_size), it defaults to the value 10% which is 10% of the heap. | |
- Increase the number of dirty operations that trigger automatic flush (so the translog won't get really big, even though its FS based) by setting index.translog.flush_threshold (defaults to 5000). | |
- Increase the memory allocated to elasticsearch node. By default its 1g. | |
- Start with a lower replica count (even 0), and then once the bulk loading is done, increate it to the value you want it to be using the update_settings API. This will improve things as possibly less shards will be allocated to each machine. | |
- Increase the number of machines you have so |
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/bash | |
function proxtun(){ | |
#Validity check of settings | |
if [ ! -e ~/.proxtun ]; then | |
echo "No proxy user/host set. Please set up a remote machine with SSH" | |
echo "tunneling capability (with keys) and then put that user@host in" | |
echo "~/.proxtun" | |
return 5 | |
fi | |
tunhost=`cat ~/.proxtun` |
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
### Keybase proof | |
I hereby claim: | |
* I am karunamon on github. | |
* I am mparks (https://keybase.io/mparks) on keybase. | |
* I have a public key whose fingerprint is 941B F3C3 0864 E10C F14C 6BBF B553 9BD4 1632 3550 | |
To claim this, I am signing this object: |
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 ruby | |
#Add date fields for mass operations on blogs with Atlassian CLI. | |
#WTFPL | |
require "csv" | |
fail "Specify path to input file" unless ARGV[0] | |
fail "Specify path to output file" unless ARGV[1] | |
hdr=true | |
CSV.open(ARGV[1], 'w') do |csv| | |
CSV.foreach(ARGV[0], :headers => true, :skip_blanks => true) do |row| | |
date = row["Created"].match(/(?<month>\d+)\/(?<day>\d+)\/(?<year>\d+)/) |
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 ruby | |
# distribute_ssh_keys.rb | |
# Jason Boxman <[email protected]> | |
# 20110624 | |
# From http://blog.edseek.com/archives/2011/06/27/ssh-key-distribution-with-ruby-and-netsshm/ | |
# Unsure of the license on this. Tread carefully. | |
# | |
# Sanely deploy ssh public key to multiple hosts. |
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/bash | |
# | |
# Tomcat 7 start/stop/status script | |
# Forked from: https://gist.github.com/valotas/1000094 | |
# @author: Miglen Evlogiev <[email protected]> | |
# | |
# Release updates: | |
# Updated method for gathering pid of the current proccess | |
# Added usage of CATALINA_BASE | |
# Added coloring and additional status |
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 | |
#Add this function to any shell script. You require a HTTP(preferrably HTTPS) | |
#server to serve up a .asc file named identically to your script. Your public key | |
#must also be installed on the server. Requires curl and gpg. | |
#To generate the signature file: gpg -a --detach-sig <script filename> | |
verify-integrity(){ | |
base=$(basename $0) | |
temp=`mktemp /tmp/$(basename $0).XXXXX` | |
curl -sS http://someserver/$base.asc -o $temp >/dev/null 2>&1 |
OlderNewer