I hereby claim:
- I am metrofx on github.
- I am metrofx (https://keybase.io/metrofx) on keybase.
- I have a public key ASAJqzN2Z6glhe7rQcTe4d6PWHNe0i2BkNhneN1jYKNexgo
To claim this, I am signing this object:
local wezterm = require 'wezterm' | |
local config = wezterm.config_builder() | |
-- This is where you actually apply your config choices | |
-- config.default_prog = { 'pwsh.exe' } | |
config.default_prog = { 'ubuntu.exe' } | |
config.keys = { | |
{ key = 'q', mods = 'CTRL', action = wezterm.action.QuitApplication }, |
151.101.193.140 reddit.com | |
151.101.65.140 reddit.com | |
151.101.1.140 reddit.com | |
151.101.129.140 reddit.com | |
151.101.193.140 www.reddit.com | |
151.101.65.140 www.reddit.com | |
151.101.1.140 www.reddit.com | |
151.101.129.140 www.reddit.com | |
151.101.193.140 www.redditstatic.com | |
151.101.65.140 www.redditstatic.com |
0x0e6cDa245501Ed219D29234c7082197F7b7B0966 |
[user] | |
name = <yourname> | |
email = <youremail> | |
[core] | |
editor = vim | |
[push] | |
default = current | |
[alias] | |
wtc = !git commit -m \"$(curl -s whatthecommit.com/index.txt)\" |
I hereby claim:
To claim this, I am signing this object:
<script type='text/javascript'> | |
if (!(parent && parent.WebPlayer) && top != self) { | |
top.location.replace(document.location); | |
alert('Untuk alasan keamanan, framing tidak diijinkan; klik OK untuk menghilangkan frame.'); | |
} | |
</script> |
### USAGE | |
### | |
### ./ElasticSearch.sh 1.5.0 will install Elasticsearch 1.5.0 | |
### ./ElasticSearch.sh 1.4.4 will install Elasticsearch 1.4.4 | |
### ./ElasticSearch.sh will fail because no version was specified (exit code 1) | |
### | |
### CLI options Contributed by @janpieper | |
### Check http://www.elasticsearch.org/download/ for latest version of ElasticSearch | |
### ElasticSearch version |
#!/bin/bash | |
CURL="/usr/bin/curl" | |
GAWK="/usr/bin/awk" | |
URL="$1" | |
result=`$CURL -o /dev/null -s -w %{time_connect}:%{time_starttransfer}:%{time_total} $URL` | |
echo "Host: $URL" | |
echo "Time_Connect Time_start_Transfer Time_total | |
$(echo $result | $GAWK -F: '{ print $1" "$2" "$3}') | |
" | column -t |
#!/bin/bash | |
for userlist in `cat userlist.txt` | |
do | |
user=`echo $userlist | cut -f 1 -d ,` | |
pwd=`echo $userlist | cut -f 2 -d ,` | |
echo "useradd -m -s /bin/bash $user && echo $user:$pwd | chpasswd" | |
done |
#!/bin/sh | |
# Location: bin/hubot | |
# Hubot custom launcher, using forever (https://github.com/nodejitsu/forever). | |
# If you want to run hubot locally, don't call this script. run this instead: | |
# coffee node_modules/.bin/hubot | |
npm install | |
# put below path into hubot.env along with other hubot environment variables | |
# export PATH="node_modules/.bin:node_modules/hubot/node_modules/.bin:$PATH" |