Skip to content

Instantly share code, notes, and snippets.

View michellesanver's full-sized avatar

Michelle Sanver michellesanver

View GitHub Profile
@michellesanver
michellesanver / elasticsearch.yml
Last active August 26, 2018 01:33 — forked from anonymous/elasticsearch.yml
ElasticSearch config
############################## Network And HTTP ###############################
# Elasticsearch, by default, binds itself to the 0.0.0.0 address, and listens
# on port [9200-9300] for HTTP traffic and on port [9300-9400] for node-to-node
# communication. (the range means that if the port is busy, it will automatically
# try the next port).
# Set the bind address specifically (IPv4 or IPv6):
#
# network.bind_host: 192.168.0.1
@michellesanver
michellesanver / moin.tcl
Last active December 17, 2015 09:19 — forked from jaytaph/moin.tcl
namespace eval moin {
bind pubm -|- * moin::moin
}
proc moin::moin { nick host handle chan text } {
if {[regexp -nocase -- {(^moin|^mornin)} $text]} {
putserv "PRIVMSG $chan :$nick moin"
}
if {[regexp -nocase -- {(^:)} $text]} {