I hereby claim:
- I am tallship on github.
- I am tallship (https://keybase.io/tallship) on keybase.
- I have a public key whose fingerprint is 6F71 8730 A857 AECB 2214 0586 A0E3 9133 9067 0CCE
To claim this, I am signing this object:
###Linboard Linux Individual Contributor License Agreement | |
Thank you for your interest in contributing to open source software projects (“Projects”) made available by Linboard Linux. This Individual Contributor License Agreement (“Agreement”) sets out the terms governing any source code, object code, bug fixes, configuration changes, tools, specifications, documentation, data, materials, feedback, information or other works of authorship that you submit or have submitted, in any form and in any manner, to Linboard Linux in respect of any of the Projects (collectively “Contributions”). If you have any questions respecting this Agreement, please open an issue at github.com/Linboard Linux. | |
You agree that the following terms apply to all of your past, present and future Contributions. Except for the licenses granted in this Agreement, you retain all of your right, title and interest in and to your Contributions. | |
**Copyright License.** You hereby grant, and agree to grant, to Linboard Linux a non-exclusive, p |
#this is useful for copying snapshotted sites at archive.org | |
#copied from http://superuser.com/questions/532036/trouble-using-wget-or-httrack-to-mirror-archived-website | |
#replace ${wayback_url} with the full URL i.e. http://web.archive.org/web/20020705161639/http://kict.iiu.edu.my/ | |
#replace ${domain_name} with the domain name of the site you'r mirroring without the 'http', so kict.iiu.edu.my | |
httrack\ | |
${wayback_url}\ | |
'-*'\ | |
'+*/${domain_name}/*'\ | |
-N1005\ | |
--advanced-progressinfo\ |
###V'Ger Individual Contributor License Agreement | |
Thank you for your interest in contributing to open source software projects (“Projects”) made available by V'Ger. This Individual Contributor License Agreement (“Agreement”) sets out the terms governing any source code, object code, bug fixes, configuration changes, tools, specifications, documentation, data, materials, feedback, information or other works of authorship that you submit or have submitted, in any form and in any manner, to V'Ger in respect of any of the Projects (collectively “Contributions”). If you have any questions respecting this Agreement, please contact [email protected]. | |
You agree that the following terms apply to all of your past, present and future Contributions. Except for the licenses granted in this Agreement, you retain all of your right, title and interest in and to your Contributions. | |
**Copyright License.** You hereby grant, and agree to grant, to V'Ger a non-exclusive, perpetual, irrevocable, worldwide, fully-paid, royalt |
###Foundry 376 Individual Contributor License Agreement | |
Thank you for your interest in contributing to open source software projects (“Projects”) made available by Foundry 376. This Individual Contributor License Agreement (“Agreement”) sets out the terms governing any source code, object code, bug fixes, configuration changes, tools, specifications, documentation, data, materials, feedback, information or other works of authorship that you submit or have submitted, in any form and in any manner, to Foundry 376 in respect of any of the Projects (collectively “Contributions”). If you have any questions respecting this Agreement, please contact [email protected]. | |
You agree that the following terms apply to all of your past, present and future Contributions. Except for the licenses granted in this Agreement, you retain all of your right, title and interest in and to your Contributions. | |
**Copyright License.** You hereby grant, and agree to grant, to Foundry 376 a non-exclusive, perpetual, irrevocable, w |
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
# install_tmux_centos6.sh | |
# Make sure we have the deps | |
yum -y install gcc kernel-devel make ncurses-devel | |
# Get libevent and tmux source, and put it all under /usr/local/src | |
# and then untar it all, and config/compile/install them. | |
mkdir -p /usr/local/src/libevent | |
mkdir -p /usr/local/src/tmux |
# download latest libevent2 and tmux sources, and extract them somewhere | |
# | |
# at the time of writing: | |
# https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz | |
# http://downloads.sourceforge.net/tmux/tmux-1.7.tar.gz | |
# | |
# install deps | |
yum install gcc kernel-devel make ncurses-devel |