/proposed-comments
/_site/favorite-things.html
/_site/index.html
-
+/_site/about-me.html
+_site/libreplanet2017-temporary-hosting/
/resume.md
/_site/resume.html
--- /dev/null
+<ul>
+<li><a href="mailto:ian@iankelling.org">ian@iankelling.org</a></li>
+<li><a href="ian-kelling-pubkey.asc">gpg key: 0199 AD30 2539 BA2C D12E ABF6 AACC C240 E969 C67B</a></li>
+<li><a href="https://ofswiki.org">ofswiki.org (wiki I run, mostly covering mediawiki admin)</a></li>
+<li><a href="https://github.com/ian-kelling/">GitHub profile</a></li>
+<li><a href="https://gitlab.com/iankelling">GitLab profile</a></li>
+<li><a href="https://directory.fsf.org/wiki/User:IanK">Free Software
+ Directory profile</a></li>
+<li><a href="https://bugzilla.redhat.com/page.cgi?id=user_activity.html&action=run&who=ianowl%40gmail.com&from=2005-05-01&to=2030-04-02&sort=when">Fedora Bugzilla activity</a></li>
+<li><a href="https://stackoverflow.com/users/14456/ian-kelling">StackOverflow profile</a></li>
+<li><a href="https://bugs.debian.org/cgi-bin/pkgreport.cgi?submitter=ian%40iankelling.org">Debian
+ bugs activity</a></li>
+<li><a href="https://www.mediawiki.org/wiki/Special:Contributions/Ian_Kelling">Mediawiki
+ wiki contributions</a></li>
+<li>I've contributed to various other mailing lists, source repos, etc. Some are on
+ my resume</li>
+<li><a href="https://launchpad.net/~iank">Launchpad profile</a></li>
+<li><a href="https://en.wikipedia.org/wiki/Special:Contributions/Ian_Kelling">Wikipedia contributions</a></li>
+<!-- <li><a href=""></a></li> -->
+</ul>
end
stdpage('favorite-things', File.read('../favorite-things.html'))
+stdpage('about-me', File.read('../about-me.html'))
# we could use ruby native stuff here, but this was
# better documented so meh.
<ul class="site-nav-list">
<li><a href="/blog.html">blog</a></li>
- <li><a href="git">git</a></li>
- <li><a href="https://ofswiki.org">ofswiki.org</a></li>
+ <li><a href="/git">gitweb</a></li>
<li><a href="resume.html">resume</a></li>
<li><a href="/favorite-things.html">favorite things</a></li>
- <li><a href="ian-kelling-pubkey.asc">gpg key</a></li>
+ <li><a href="/about-me.html">more about me</a></li>
</ul>
usage() {
cat <<EOF
-Usage: ${0##*/} [-h|--help] [DOMAIN_NAME]
+Usage: ${0##*/} [OPTIONS] [DOMAIN_NAME]
Setup dependencies, apache, and gitweb. Then call build.rb.
Default DOMAIN_NAME is iankelling.org. Domain is expected to resolve
so we can get a let's encrypt cert.
-
+-p PORT Apache port, default is *:443.
-h|--help Print help and exit.
Note: Uses GNU getopt options parsing style
##### begin command line parsing ########
-temp=$(getopt -l help, h "$@") || usage 1
+port="*:443"
+temp=$(getopt -l help, p:h "$@") || usage 1
eval set -- "$temp"
while true; do
case $1 in
+ -p) port=$2; shift 2 ;;
-h|--help) usage ;;
--) shift; break ;;
*) echo "$0: Internal error! unexpected args: $*" ; exit 1 ;;
our \$highlight_force = 1;
EOF
-apache-site - $domain <<EOF
+apache-site -p $port - $domain <<EOF
# to run python script on my site:
<Directory /var/www/$domain/html/on2vote>
# to run python scripts with cgi