Skip to content

Instantly share code, notes, and snippets.

View tallship's full-sized avatar
Fair winds and following seas...

Bradley D. Thornton tallship

Fair winds and following seas...
View GitHub Profile
@tallship
tallship / Linboard-CLA
Created November 10, 2019 21:38
Linboard Linux Individual Contributor License Agreement
###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
@tallship
tallship / mirror.sh
Created November 10, 2019 05:35 — forked from adliwahid/mirror.sh
httrack for mirroring site on archive.org (waybackmachine)
#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\
@tallship
tallship / vger-cla
Last active November 10, 2019 21:46
V'Ger Individual Contributor License Agreement
###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 support@Vger.Cloud.
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
@tallship
tallship / F376_CLA
Created November 9, 2019 09:02 — forked from Foundry376/F376_CLA
F376 Individual Contributor License Agreement
###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 support@foundry376.com.
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

Keybase proof

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:

@tallship
tallship / install_tmux_centos6.sh
Created March 8, 2013 20:00
Install tmux on CentOS 6 this is a quick script for Installing the latest [libevent and] tmux on CentOS 6.3 Before anything, do a "yum update" It will install deps, download the latest sources (a/o 20130308), then compile and install everything. Deps: gcc kernel-devel make ncurses-devel (We're installing the latest libevent by hand). Next, we d/…
#!/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