tilde/blog/feed.rss

1898 lines
48 KiB
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel><title>blog // ~ben</title><link>https://tilde.team/~ben/blog/index.html</link>
<description>a blog about tildes and other things</description><language>en</language>
<lastBuildDate>Wed, 28 Oct 2020 17:15:32 -0400</lastBuildDate>
<pubDate>Wed, 28 Oct 2020 17:15:32 -0400</pubDate>
<atom:link href="https://tilde.team/~ben/blog/feed.rss" rel="self" type="application/rss+xml">
<item><title>
mastodon postgres upgrade fun
</title><description><![CDATA[
<p>howdy friends!</p>
<p>if you&rsquo;re a mastodon user on <a href="https://tilde.zone">tilde.zone</a> (the tildeverse
mastodon instance), you might&rsquo;ve noticed some downtime recently.</p>
<p>here&rsquo;s a quick recap of what went down during the upgrade process.</p>
<hr />
]]></description><link>https://tilde.team/~ben/blog/mastodon-postgres-upgrade-fun.html</link>
<guid>https://tilde.team/~ben/blog/./mastodon-postgres-upgrade-fun.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Wed, 28 Oct 2020 16:31:39 -0400</pubDate></item>
<item><title>
default branch name
</title><description><![CDATA[
<p>changing git's default branch name has come up recently as an easy action
we can take to update our language and remove harmful ideas from our daily
usage.</p>
<p>i'm concerned that this effort to change the language used is ultimately a
symbolic gesture to avoid scrutiny into actual change (notably github's
push for this change and continued contracts with ICE).</p>
<p>however, it's an easy change to make.</p>
<p>let's have a look at how to change it for new repos:</p>
<pre><code>mkdir -p ~/.config/git/template
echo "ref: refs/head/main" ~/.config/git/template/HEAD
git config --global init.templateDir ~/.config/git/template
</code></pre>
<p>note that you can put this template dir anywhere you like.</p>
<p>you can also set this system-wide (not just for your user)
in /usr/share, but note that this might get overriden by
package updates.</p>
<pre><code>echo "ref: refs/head/main" | sudo tee /usr/share/git-core/templates/HEAD
</code></pre>
<p>the next time you <code>git init</code>, you'll be on a branch named main.</p>
<p>to change an existing repo, you can use the <code>-m</code> switch of <code>git-branch</code>:</p>
<pre><code>git checkout master
git branch -m master main
</code></pre>
<p>push with <code>-u</code> to your remote if needed and update the default branch in the
repo settings in the hosting platform of choice.</p>
<p>it's a relatively easy change, but don't kid yourself that it makes any real
impact. go protest, <a href="
https://blacklivesmatter.carrd.co/">donate and sign petitions</a>, and get out there to fix the actual problems.</p>
<p>tags: <a href='tag_git.html'>git</a>, <a href='tag_linux.html'>linux</a>, <a href='tag_dev.html'>dev</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/default-branch-name.html</link>
<guid>https://tilde.team/~ben/blog/./default-branch-name.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Tue, 16 Jun 2020 15:18:54 -0400</pubDate></item>
<item><title>
tools and services
</title><description><![CDATA[
<p>inspired by <a href="https://tomasino.org">tomasino</a>'s recent <a href="
https://labs.tomasino.org/freelancing-tools-services/">post</a>, i'd like to
detail some of the stuff that i rent and use.</p>
<hr />
]]></description><link>https://tilde.team/~ben/blog/tools-and-services.html</link>
<guid>https://tilde.team/~ben/blog/./tools-and-services.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Tue, 03 Mar 2020 14:02:47 -0500</pubDate></item>
<item><title>
general update
</title><description><![CDATA[
<p>it's been quite a long time since i posted anything here on this blog.</p>
<p>i've been playing with <a href="https://github.com/xe/gruvbox-css">gruvbox-css</a>,
decided to switch my blog to use it and finally realized it's been almost
a year since i posted anything at all.</p>
<p>i don't have anything in particular to post today so i figured it would
be good to give a general update since the last time i posted.</p>
<hr />
]]></description><link>https://tilde.team/~ben/blog/general-update.html</link>
<guid>https://tilde.team/~ben/blog/./general-update.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Mon, 03 Feb 2020 20:06:43 -0500</pubDate></item>
<item><title>
networking nonsense
</title><description><![CDATA[
<p>i've recently been working on setting up <a href="https://drone.tildegit.org">drone ci</a>
on the tilde.team machine. however, there's been something strange going on
with the networking on there.</p>
<hr />
]]></description><link>https://tilde.team/~ben/blog/networking-nonsense.html</link>
<guid>https://tilde.team/~ben/blog/./networking-nonsense.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Mon, 11 Feb 2019 02:40:20 -0500</pubDate></item>
<item><title>
raid nonsense
</title><description><![CDATA[
<p>last week i did some <a href="https://tilde.team/news/?page=025_raid_reboot">maintenance</a>
on the tilde.team box. probably should have written about it sooner but i didn't
make time for it until now.</p>
<hr />
]]></description><link>https://tilde.team/~ben/blog/raid-nonsense.html</link>
<guid>https://tilde.team/~ben/blog/./raid-nonsense.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Sun, 13 Jan 2019 13:28:45 -0500</pubDate></item>
<item><title>
weechat setup
</title><description><![CDATA[
<p>so you decided to switch from irssi to weechat?</p>
<p>what options do you need to set? what plugins? what scripts?</p>
<p>i'll go over some of the most essential of these, and share my full configs.</p>
<hr />
]]></description><link>https://tilde.team/~ben/blog/weechat-setup.html</link>
<guid>https://tilde.team/~ben/blog/./weechat-setup.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Fri, 16 Nov 2018 23:11:30 -0500</pubDate></item>
<item><title>
proactive redundancy
</title><description><![CDATA[
<p>after the <a href="november-13-post-mortem.html">fiasco</a> earlier this week, i've been taking steps to minimize
the impact if tilde.team were to go down. it's still a large spof (single-point-of-failure), but i'm reasonably certain that at least the irc net will remain up and functional in the event of another outage. </p>
<hr />
]]></description><link>https://tilde.team/~ben/blog/proactive-redundancy.html</link>
<guid>https://tilde.team/~ben/blog/./proactive-redundancy.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Thu, 15 Nov 2018 18:39:26 -0500</pubDate></item>
<item><title>
november 13 post mortem
</title><description><![CDATA[
<p>we had something of an outage on november 13, 2018 on tilde.team. </p>
<p>i awoke, not suspecting anything to be amiss. as soon as i logged in to check my email and irc mentions, it became clear.</p>
<p>tilde.team was at the least inaccessible, and at the worst, down completely. according the message in my inbox, there hade been an attempted "attack" from my IP.</p>
<hr />
]]></description><link>https://tilde.team/~ben/blog/november-13-post-mortem.html</link>
<guid>https://tilde.team/~ben/blog/./november-13-post-mortem.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Tue, 13 Nov 2018 20:20:33 -0500</pubDate></item>
<item><title>
italy
</title><description><![CDATA[
<p>i just got back from a 10-day backpacking trip to italy and i'd like to share some of the photos i took!</p>
<p>the travel plan was rome -> venice -> florence -> naples -> pompei/vesuvius -> capri -> amalfi</p>
<p>this is the roman forum (with colosseum in the background) as seen from the palatine.</p>
<p><img src="https://bhh.sh/pub/photos/italy/roman-forum.jpg" alt="" title="" /></p>
<hr />
]]></description><link>https://tilde.team/~ben/blog/italy.html</link>
<guid>https://tilde.team/~ben/blog/./italy.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Thu, 20 Sep 2018 17:32:33 -0400</pubDate></item>
<item><title>
utterances
</title><description><![CDATA[
<p>i somehow stumbled upon <a href="https://utteranc.es">utterances</a> today at lunch. (i think someone had it forked on their github page).</p>
<p>no matter how i found it, i still decided to add it to my blog here with <a href="https://tildegit.org/team/bashblog">bashblog</a>. utterances is a commenting system that leverages github issues. so, for example a comment on <a href="https://tilde.team/~ben/blog/upsides-of-new-dns-nameservers.html">a post</a> shows up on github <a href="https://github.com/benharri/tilde/issues/1#issuecomment-418732788">like this</a>.</p>
<p>now we just need to figure out if it can be pointed at a gitea instance like <a href="https://tildegit.org">tildegit</a>. might be time for a PR!</p>
<p>tags: <a href='tag_blog.html'>blog</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/utterances.html</link>
<guid>https://tilde.team/~ben/blog/./utterances.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Wed, 05 Sep 2018 21:34:13 -0400</pubDate></item>
<item><title>
no more google
</title><description><![CDATA[
<p>not sure if this is appropriately tagged, but i didn't feel like making a new
one.</p>
<p>i figured i should probably get some notes down about moving off google.</p>
<p>to start, i'll get a list of the things i was able to easily replace:</p>
<ul>
<li>gmail => <a href="https://tilde.team/wiki/?page=email">@tilde.team mail</a></li>
<li>google drive => <a href="https://syncthing.net">syncthing</a> (with a persistent node running on my personal vps)</li>
</ul>
<p>i'm still using:</p>
<ul>
<li>gplay music/youtube</li>
<li>google maps (open streetmap isn't good enough to replace it)</li>
<li>google photos - but this is going to be replaced long-term with syncthing</li>
</ul>
<p>tags: <a href='tag_linux.html'>linux</a>, <a href='tag_net-neutrality.html'>net-neutrality</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/no-more-google.html</link>
<guid>https://tilde.team/~ben/blog/./no-more-google.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Tue, 14 Aug 2018 23:36:05 -0400</pubDate></item>
<item><title>
upsides of new dns nameservers
</title><description><![CDATA[
<ul>
<li>no more google</li>
<li>no more google</li>
<li>automated certbot validation for letsencrypt wildcard certs!! no more manual TXT records every three months!</li>
</ul>
<p>tags: <a href='tag_dns.html'>dns</a>, <a href='tag_linux.html'>linux</a>, <a href='tag_tilde.html'>tilde</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/upsides-of-new-dns-nameservers.html</link>
<guid>https://tilde.team/~ben/blog/./upsides-of-new-dns-nameservers.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Tue, 14 Aug 2018 15:05:38 -0400</pubDate></item>
<item><title>
dns shenanigans post-mortem
</title><description><![CDATA[
<p>let's start by saying i probably should have done a bit more research before
diving head-first into this endeavor.</p>
<p>i've been thinking about transferring my domains off google domains for some
time now, as part of my personal goal to self host and limit my dependence on
google and other large third-party monstrosities. along that line, i asked for
registrar recommendations. <a href="https://tomasino.tilde.team">~tomasino</a> responded
with <a href="https://namesilo.com">namesilo</a>. i found that they had $3.99 registrations
for .team and .zone domains, which is 1/10th the cost of the $40 registration
on google domains.</p>
<p>i started out by getting the list of domains from the google console. 2 or 3
of them had been registered within the last 60 days, so i wasn't able to
transfer those just yet. i grabbed all the domain unlock codes and dropped
them into namesilo. i failed to realize that the dns panel on google domains
would disappear as soon as it went through, but more importantly that the
nameservers would be left pointing to the old defunct google domains ones.</p>
<p>i updated the nameservers as soon as i realized this error from the namesilo
panel. some of the domains propagated quickly. others, not so much. tilde.team
was still in a state of flux between the old and new nameservers.</p>
<p>in a rush to get the dns problem fixed, and under recommendation from several
people on irc, i decided to switch the nameservers for tilde.team and tilde.zone
to cloudflare, leaving another layer of flux for the dns to be stuck in...</p>
<p>of the five domains that i moved to cloudflare, 3 returned with a dnssec error,
claiming that i needed to remove the DS record from that zone. d'oh!</p>
<p>i removed the dnssec from those affected domains, so we should be good to go
as soon as it all propagates through the fickle beast that is dns.</p>
<p>tags: <a href='tag_linux.html'>linux</a>, <a href='tag_sysadmin.html'>sysadmin</a>, <a href='tag_tilde.html'>tilde</a>, <a href='tag_dns.html'>dns</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/dns-shenanigans-post-mortem.html</link>
<guid>https://tilde.team/~ben/blog/./dns-shenanigans-post-mortem.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Tue, 14 Aug 2018 15:03:49 -0400</pubDate></item>
<item><title>
lxd networking and additional IPs
</title><description><![CDATA[
<p>now that tilde.team is on a fancy-shmancy new dedi server, i've tried to get a secondary IP address
assigned to a lxd container (which i plan to use for my personal stuff). lxd shows that the secondary
IP is being picked up by that container, but i'm still seeing the host machine's IP as the external
address.</p>
<p>i'm not sure how i'll need to configure the network settings on the host machine (now that we're running
ubuntu 18.04 and it uses netplan for configs and not /etc/network/interfaces). another confusing thing is
that the main config in /etc/netplan says that the network config is handled by systemd-networkd...</p>
<p>at least i have through the end of the year when my current vps runs out to get this up and running.</p>
<p>ping me on <a href="https://tilde.chat">irc</a> or <a href="mailto:ben@tilde.team">email</a> if you have experience with this.</p>
<p>tags: <a href='tag_linux.html'>linux</a>, <a href='tag_sysadmin.html'>sysadmin</a>, <a href='tag_ubuntu.html'>ubuntu</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/lxd-networking-and-additional-ips.html</link>
<guid>https://tilde.team/~ben/blog/./lxd-networking-and-additional-ips.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Thu, 26 Jul 2018 15:34:50 -0400</pubDate></item>
<item><title>
dotfiles
</title><description><![CDATA[
<p>finally got around to updating my <a href="https://git.tilde.team/ben/dotfiles">dotfiles</a> to use gnu stow.
i adapted <a href="https://github.com/jamestomasino/dotfiles/blob/master/Makefile">~tomasino's makefile</a>
for use with the configs that i'm keeping with it.</p>
<p>now i just need to figure out why my ssh config doesn't copy/symlink my config to ~/.ssh when it
already exists.</p>
<p>tags: <a href='tag_linux.html'>linux</a>, <a href='tag_dotfiles.html'>dotfiles</a>, <a href='tag_git.html'>git</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/dotfiles.html</link>
<guid>https://tilde.team/~ben/blog/./dotfiles.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Sun, 22 Jul 2018 19:26:26 -0400</pubDate></item>
<item><title>
bashblog and your gopherhole
</title><description><![CDATA[
<p>i've created <a href="https://git.tildeverse.org/meta/bashblog">a repo</a> for the tilde.team customizations to <a href="https://github.com/cfenollosa/bashblog">bashblog</a>.</p>
<p>it will now make sure that your ~/public_gopher exists and symlink your blog into it with a nice gophermap to list all the markdown styled posts.</p>
<p>try it out and let me know if there are any problems!</p>
<p>tags: <a href='tag_tilde.html'>tilde</a>, <a href='tag_blog.html'>blog</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/bashblog-and-your-gopherhole.html</link>
<guid>https://tilde.team/~ben/blog/./bashblog-and-your-gopherhole.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Sun, 22 Jul 2018 11:44:03 -0400</pubDate></item>
<item><title>
more drone photos
</title><description><![CDATA[
<p>i finally got my drone out this summer to take some more pics!</p>
<p><img src="https://bhh.sh/pub/photos/drone/DJI_0097.thumb.jpg" alt="" title="" /></p>
<p><a href="https://bhh.sh/pub/photos/drone/">more here</a></p>
<p>tags: <a href='tag_dji.html'>dji</a>, <a href='tag_drone.html'>drone</a>, <a href='tag_photography.html'>photography</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/more-drone-photos.html</link>
<guid>https://tilde.team/~ben/blog/./more-drone-photos.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Sun, 15 Jul 2018 23:15:46 -0400</pubDate></item>
<item><title>
tildeverse.org
</title><description><![CDATA[
<p>since the last time i wrote a post here, i've registered the tildeverse.org domain and started moving some services over that were already intended for tildeverse use.</p>
<p>among those are <a href="https://git.tildeverse.org">gitea</a> and <a href="https://links.tildeverse.org">the new link aggregator</a> (which runs the same source as <a href="https://github.com/lobsters/lobsters">lobste.rs</a>).</p>
<p>i've also started a phlog in my <a href="https://gopher.tilde.team/tilde.team/~ben">gopherhole</a> with <a href="/~tomasino">~tomasino's</a> new <a href="https://github.com/jamestomasino/burrow">burrow</a> gopherhole tool!</p>
<p>i'll try to post a bit more often too with updates from the tildeverse!</p>
<p>Tags: <a href='tag_tilde.html'>tilde</a>, <a href='tag_internet.html'>internet</a>, <a href='tag_links.html'>links</a>, <a href='tag_git.html'>git</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/tildeverseorg.html</link>
<guid>https://tilde.team/~ben/blog/./tildeverseorg.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Sun, 15 Jul 2018 23:09:22 -0400</pubDate></item>
<item><title>
tilde.team news
</title><description><![CDATA[
<p>hey hi hello!</p>
<p>it seems that i haven't written anything on my blog in quite a while...</p>
<p>time to fix that! i've been quite busy in the last month or so with a lot of new ideas an energy for tilde.team.</p>
<p>after rediscovering my account on tilde.town, i hopped in the irc there and my enthusiasm translated into a couple new members over here on the ~team.</p>
<p>our irc has been somewhat more active recently which is awesome:)</p>
<p>some of the new updates in the last month:</p>
<ul>
<li><a href="https://git.tilde.team">tildegit (our own gitea instance)</a></li>
<li><a href="https://mail.tilde.team">tildemail</a> with postfix and dovecot for smtp/imap as well as local command line mail in mutt and alpine</li>
<li><a href="https://git.tildeverse.org/team/tilde-launcher"><code>tilde</code></a> user script wrapper with submission and approval flows</li>
<li><a href="https://tilde.team/wiki/?page=ssh">password auth disabled</a></li>
</ul>
<p>i'd like to make use of our new mailserver, so shoot me some <a href="mailto:ben@tilde.team">mail</a>.
i never get enough personal mail. it's all still privacy policy update notices. :(</p>
<p>see you soon!</p>
<p>tags: <a href='tag_tilde.html'>tilde</a>, <a href='tag_sysadmin.html'>sysadmin</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/tildeteam-news.html</link>
<guid>https://tilde.team/~ben/blog/./tildeteam-news.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Wed, 13 Jun 2018 15:07:45 -0400</pubDate></item>
<item><title>
white pride vs black pride
</title><description><![CDATA[
<p>What White Nationalists Don't Get</p>
<p>A common and seemingly reasonable argument for white pride or white nationalism is: why cant I be proud of my culture?</p>
<p>Well, you can. Always have been able to. We have Irish pride celebrations, we have German drinking festivals, we have Serbian food festivals. Any European culture you can think of has multiple organizations in North America dedicated to taking pride in their heritage and NO ONE gives them shit for it.</p>
<p>But, you see, when you start talking white pride, that's not a culture. That's a skin color. There is no white culture, never was. There is no pan-European culture, never was. Europe is a continent, not a culture or ethnicity.</p>
<p>Now, some of you are probably about to go, but wait! Black pride! How is that okay? Well, easy. Go find a black person and ask them if their ancestors were slaves. When you find one who says yes, proceed to ask them what country in Africa were your ancestors from? Do you know what their answer will probably be? I don't know. This is because their culture was taken from them. It was beaten out of them. They were enslaved, Christianized, and then white washed. The one unifying feature they have as a people is that history of slavery and that history of being black. They cant have Liberian pride, or Congolese pride, or insert African country pride because they have no fucking idea where their ancestors came from other than the broad region of West Africa.</p>
<p>Meanwhile us white people can often trace our ancestors to specific cities and regions. I can trace my mothers maiden name to a single fucking village in Ireland. I know where I came from. I don't have white culture, I have Irish culture.</p>
<p>So that's why white pride makes you an asshole but black pride actually makes sense.</p>
<p>Tags: <a href='tag_politics.html'>politics</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/white-pride-vs-black-pride.html</link>
<guid>https://tilde.team/~ben/blog/./white-pride-vs-black-pride.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Wed, 07 Mar 2018 16:49:51 -0500</pubDate></item>
<item><title>
phoenix
</title><description><![CDATA[
<p>inspired by <a href="http://oods.net">oodsnet</a>, (and my pull request to add <a href="https://github.com/exezin/oodsnet/pull/5">darkmode</a>),
i started to create my own tilde.team fork (now <a href="https://forum.tilde.team/">forum.tilde.team</a>).</p>
<p>the first step was to switch out the css to the <a href="https://tilde.team/css/">tilde.team standard</a> and update the classes for bootstrap.
once i got it going and integrated with the tilde.team linux auth service, i asked other tildeans for input and suggestions.</p>
<p><a href="/~micaiah/">~micaiah</a> was interested in helping, but also wanted to learn a new language and/or framework, so we decided to start over,
recreating the entire forum with <a href="http://phoenixframework.org">elixir/phoenix</a>. we'd discussed elixir previously, but never had a
convincing use case to force us to learn it.</p>
<p>the project is live, with the source code on <a href="https://github.com/tilde-team/forum">github</a>.</p>
<p>the thing that i'm most impressed with is the speed of the erlang runtime :D</p>
<p>check out these response times. sub-millisecond!?!?!</p>
<p><img src="https://bhh.sh/pub/photos/phx.png" alt="" title="" /></p>
<p>give it a look, and <a href="https://tilde.team/signup">join the tilde.team</a> if you want to come hang out!</p>
<p>tags: <a href='tag_internet.html'>internet</a>, <a href='tag_dev.html'>dev</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/phoenix.html</link>
<guid>https://tilde.team/~ben/blog/./phoenix.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Mon, 26 Feb 2018 11:57:10 -0500</pubDate></item>
<item><title>
otm
</title><description><![CDATA[
<p><img src="https://bhh.sh/pub/photos/IMG_20180215_121947.jpg" alt="" title="" /></p>
<p>just heard the <a href="https://www.wnyc.org/story/safety-net-just-got-a-little-less-safe">latest episode</a> of on the media. this is a super helpful guide i found on their twitter.</p>
<p>tags: <a href='tag_podcast.html'>podcast</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/otm.html</link>
<guid>https://tilde.team/~ben/blog/./otm.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Thu, 15 Feb 2018 13:33:16 -0500</pubDate></item>
<item><title>
quote of the day
</title><description><![CDATA[
<p>Be Alert! - the world needs more Lerts.</p>
<p>Tags: <a href='tag_quotes.html'>quotes</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/quote-of-the-day.html</link>
<guid>https://tilde.team/~ben/blog/./quote-of-the-day.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Tue, 13 Feb 2018 09:55:06 -0500</pubDate></item>
<item><title>
webassembly
</title><description><![CDATA[
<p>according to <a href="https://hacks.mozilla.org/2018/01/making-webassembly-even-faster-firefoxs-new-streaming-and-tiering-compiler/">this post</a> on the mozilla blog,
we will be able to compile wasm as it streams into the browser in much the same way that images are decoded. this is a huge game changer from the current paradigm
of loading javascript completely before being able to parse and compile it. </p>
<blockquote class="twitter-tweet" data-lang="en"><p lang="en" dir="ltr">JavaScript code is much more expensive, byte for byte, than an image, because of the time spent parsing and compiling it.<br><br>It&#39;s possible to parse and compile wasm as fast as it comes over the network, which makes it much more like an image than JavaScript code.<br><br>Game changer!</p>&mdash; Yehuda Katz (@wycats) <a href="https://twitter.com/wycats/status/942908325775077376?ref_src=twsrc%5Etfw">December 19, 2017</a></blockquote>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<p>this will make <a href="https://github.com/WebAssembly/design/blob/master/UseCases.md">so many things</a> possible in the browser that never were before!</p>
<p>i decided to follow this <a href="http://webassembly.org/getting-started/developers-guide/">tutorial</a> and ended up with <a href="https://tilde.team/~ben/wasm/hello.html">this</a>.</p>
<p>i don't know what to do next. any ideas?</p>
<p>Tags: <a href='tag_wasm.html'>wasm</a>, <a href='tag_dev.html'>dev</a>, <a href='tag_internet.html'>internet</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/webassembly.html</link>
<guid>https://tilde.team/~ben/blog/./webassembly.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Wed, 17 Jan 2018 13:09:13 -0500</pubDate></item>
<item><title>
pop quiz
</title><description><![CDATA[
<p>is this real?</p>
<p><img src="https://bhh.sh/pub/photos/The%20Witcher%203%20Screenshot%202017.09.12%20-%2023.44.17.73.png" alt="4k witcher 3" title="" /></p>
<p>hint: it's not. it's the witcher 3. and it looks like a real place.</p>
<p>Tags: <a href='tag_4k-gaming.html'>4k-gaming</a>, <a href='tag_gaming.html'>gaming</a>, <a href='tag_gtx1080ti.html'>gtx1080ti</a>, <a href='tag_pc-master-race.html'>pc-master-race</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/pop-quiz.html</link>
<guid>https://tilde.team/~ben/blog/./pop-quiz.html</guid>
<dc:creator>~ben</dc:creator>
<pubDate>Tue, 16 Jan 2018 17:26:40 -0500</pubDate></item>
<item><title>
git remotes with ssh aliases
</title><description><![CDATA[
<p>did you know that <code>~/.ssh/config</code> aliases work for git remotes??</p>
<p>~/.ssh/config</p>
<pre>
Host gh
HostName github.com
User git
IdentityFile ~/.ssh/gh_key
</pre>
<p>you can now use <code>gh:username/repo</code> as the remote in place of <code>git@github.com:username/repo</code>, which is much shorter and easier to type many times!</p>
<p><code>git clone gh:benharri/learngit</code></p>
<p>there are many other use cases for the <code>ssh_config</code> file. for example, here is my config for the tilde machine for easy ssh connections.</p>
<pre>
Host tilde
HostName tilde.team
User ben
</pre>
<p>then use <code>ssh tilde</code> to start a new ssh session. this also works with <code>scp</code>: try something like this <code>scp file.txt tilde:workspace/.</code> in place of <code>scp file.txt ben@tilde.team:workspace/.</code></p>
<p>the ssh_config file is super useful. check <code>man ssh_config</code> for a full list of options!</p>
<p>tags: <a href='tag_git.html'>git</a>, <a href='tag_ssh.html'>ssh</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/git-remotes-with-ssh-aliases.html</link>
<guid>https://tilde.team/~ben/blog/./git-remotes-with-ssh-aliases.html</guid>
<dc:creator>ben</dc:creator>
<pubDate>Fri, 12 Jan 2018 13:30:26 -0500</pubDate></item>
<item><title>
cold
</title><description><![CDATA[
<p>why is it so cold</p>
<p><img src="https://bhh.sh/pub/photos/Screenshot_20180105-094720.png" alt="" title="" /></p>
<p>i'm so done with winter</p>
<p>tags: <a href='tag_cold.html'>cold</a>, <a href='tag_weather.html'>weather</a>, <a href='tag_winter.html'>winter</a>, <a href='tag_snow.html'>snow</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/cold.html</link>
<guid>https://tilde.team/~ben/blog/./cold.html</guid>
<dc:creator>ben</dc:creator>
<pubDate>Fri, 05 Jan 2018 09:49:42 -0500</pubDate></item>
<item><title>
8values
</title><description><![CDATA[
<p>not that i'm very surprised by this, but i took the quiz again (after losing my results url) and got these results.</p>
<p><img src="https://bhh.sh/pub/photos/8values.png" alt="" title="" /></p>
<p><a href="https://8values.github.io">take the quiz here</a></p>
<p><a href="https://8values.github.io/results.html?e=95.7&amp;d=92.6&amp;g=78.5&amp;s=92.3">my results again as a link</a></p>
<p>tags: <a href='tag_8values.html'>8values</a>, <a href='tag_ideology.html'>ideology</a>, <a href='tag_politics.html'>politics</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/8values.html</link>
<guid>https://tilde.team/~ben/blog/./8values.html</guid>
<dc:creator>ben</dc:creator>
<pubDate>Wed, 03 Jan 2018 12:41:09 -0500</pubDate></item>
<item><title>
mastodon
</title><description><![CDATA[
<p>hi everyone.</p>
<p>i started hosting a <a href="https://joinmastodon.org">mastodon</a> instance at <a href="https://social.tilde.team">social.tilde.team</a>.</p>
<p>check it out if you want some federated open source social goodness :)</p>
<p>send me a toot <a href="https://social.tilde.team/@ben">@ben@tilde.team</a> (from any mastodon instance!)</p>
<p>thanks!</p>
<p>tags: <a href='tag_social-networks.html'>social-networks</a>, <a href='tag_mastodon.html'>mastodon</a>, <a href='tag_tilde.html'>tilde</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/mastodon.html</link>
<guid>https://tilde.team/~ben/blog/./mastodon.html</guid>
<dc:creator>ben</dc:creator>
<pubDate>Fri, 22 Dec 2017 16:28:45 -0500</pubDate></item>
<item><title>
loading...
</title><description><![CDATA[
<pre style="background-color: #333;">
const loadingmsgs = [
"Proving P=NP...",
"Computing 6 x 9...",
"Mining Bitcoin...",
"Dividing by 0...",
"Initializing Skynet...",
"[REDACTED]",
"Downloading more RAM...",
"Ordering 1s and 0s...",
"Navigating neural network...",
"Importing machine learning...",
"Issuing Alice and Bob one-time pads...",
"Generating random sequence from key inputs while trying to exit vim...",
"for i in range(additional): Pylon()",
"(creating unresolved tension...",
"Symlinking vim to nano and ed...",
];
</pre>
<p><a href="https://twitter.com/0xdade/status/943573845469827072">sauce</a></p>
<p>tags: <a href='tag_jokes.html'>jokes</a>, <a href='tag_humor.html'>humor</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/loading.html</link>
<guid>https://tilde.team/~ben/blog/./loading.html</guid>
<dc:creator>ben</dc:creator>
<pubDate>Thu, 21 Dec 2017 16:09:45 -0500</pubDate></item>
<item><title>
vr
</title><description><![CDATA[
<p>i picked up an oculus rift after my last paycheck :P</p>
<p>it was half christmas present. these are some of the games that i'm most excited for:</p>
<ul>
<li>elite dangerous</li>
<li>lone echo / echo arena</li>
<li>dirt rally</li>
<li>gun club vr</li>
<li>eagle flight</li>
<li>robo recall</li>
</ul>
<p>have you played any other cool vr games lately? are there any that i should check out?</p>
<p>let me know!</p>
<p>Tags: <a href='tag_vr.html'>vr</a>, <a href='tag_virtual-reality.html'>virtual-reality</a>, <a href='tag_gaming.html'>gaming</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/vr.html</link>
<guid>https://tilde.team/~ben/blog/./vr.html</guid>
<dc:creator>ben</dc:creator>
<pubDate>Mon, 18 Dec 2017 13:36:04 -0500</pubDate></item>
<item><title>
net neutrality vote today
</title><description><![CDATA[
<p>Everybody! We only have UNTIL TOMORROW to fight the FCC &amp; the repeal of #NetNeutrality! Repealing Net Nutrality would result in an unequal access to online content including research, social/political organizing, and personal media. It would also allow powerhouse companies providing internet to charge more for regular quality internet, and charge certain users more than others.
HERE'S A WAY TO ACT - takes less than a minute.</p>
<ol>
<li>Go to <a href="http://gofccyourself.com">gofccyourself.com</a>
(the shortcut John Oliver made to the hard-to-find FCC comment page)</li>
<li>Click on the 17-108 link (Restoring Internet Freedom)</li>
<li>Click on "express"</li>
<li>Be sure to hit "ENTER" after you put in your name &amp; info so it registers.</li>
<li>In the comment section write, "I strongly support net neutrality backed by Title 2 oversight of ISPs."</li>
<li>Click to submit, done. - Make sure you hit submit at the end!</li>
</ol>
<p><strong>Copy and paste this into your own status update!</strong>
Seriously, this is simple and so important. Do it.</p>
<p>tags: <a href='tag_net-neutrality.html'>net-neutrality</a>, <a href='tag_internet.html'>internet</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/net-neutrality-vote-today.html</link>
<guid>https://tilde.team/~ben/blog/./net-neutrality-vote-today.html</guid>
<dc:creator>ben</dc:creator>
<pubDate>Thu, 14 Dec 2017 06:26:55 -0500</pubDate></item>
<item><title>
hey dere bub!
</title><description><![CDATA[
<p>if you haven't checked it out yet, give <a href="https://heyderebub.com">my new podcast</a> a listen!</p>
<p><a href="https://heyderebub.com"><img src="https://heyderebub.com/images/itunes_image.jpg" alt="heyderebub logo" title="" /></a></p>
<p><a href="https://heyderebub.com/?name=2017-12-13_hey_dere_bub_ep__5.mp3">episode 5</a> was uploaded today.</p>
<hr />
]]></description><link>https://tilde.team/~ben/blog/hey-dere-bub.html</link>
<guid>https://tilde.team/~ben/blog/./hey-dere-bub.html</guid>
<dc:creator>ben</dc:creator>
<pubDate>Wed, 13 Dec 2017 19:12:51 -0500</pubDate></item>
<item><title>
pan galactic gargle blaster
</title><description><![CDATA[
<p>short's brewery released another batch of their pan galactic gargle blaster imperial IPA. i had one last night and was very excited to have it once again.</p>
<blockquote>
<p>“The Hitch-Hiker's Guide to the Galaxy also mentions alcohol. It says that the best drink in existence is the Pan Galactic Gargle Blaster, the effect of which is like having your brains smashed out with a slice of lemon wrapped round a large gold brick.”</p>
</blockquote>
<p>tags: <a href='tag_beer.html'>beer</a>, <a href='tag_hhgtg.html'>hhgtg</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/pan-galactic-gargle-blaster.html</link>
<guid>https://tilde.team/~ben/blog/./pan-galactic-gargle-blaster.html</guid>
<dc:creator>ben</dc:creator>
<pubDate>Thu, 07 Dec 2017 16:41:40 -0500</pubDate></item>
<item><title>
don't be a coconut
</title><description><![CDATA[
<blockquote>
<p>i've got nothing to say
don't be a coconut</p>
</blockquote>
<p>Ask Me Anything - The Strokes (on First Impressions of Earth)</p>
<p>tags: <a href='tag_music.html'>music</a>, <a href='tag_lyrics.html'>lyrics</a>, <a href='tag_words.html'>words</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/dont-be-a-coconut.html</link>
<guid>https://tilde.team/~ben/blog/./dont-be-a-coconut.html</guid>
<dc:creator>ben</dc:creator>
<pubDate>Tue, 05 Dec 2017 13:25:47 -0500</pubDate></item>
<item><title>
thought of the day
</title><description><![CDATA[
<p>everything in the universe either is or isn't a potato.</p>
<p>Tags: <a href='tag_thought-of-the-day.html'>thought-of-the-day</a>, <a href='tag_words.html'>words</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/thought-of-the-day2227.html</link>
<guid>https://tilde.team/~ben/blog/./thought-of-the-day2227.html</guid>
<dc:creator>ben</dc:creator>
<pubDate>Sun, 03 Dec 2017 13:47:36 -0500</pubDate></item>
<item><title>
where to find me elsewhere on the web
</title><description><![CDATA[
<ul>
<li><a href="mailto:ben@tilde.team">email</a></li>
<li><a href="https://wire.com">wire</a> @bharris</li>
<li><a href="http://riot.im">matrix/riot</a> @benh:matrix.org</li>
<li><a href="https://t.me/bharris">telegram</a></li>
<li><a href="https://twitter.com/nebsirrah">twitter</a></li>
<li><a href="https://keybase.io/bharris">keybase</a></li>
<li><a href="https://benharr.is">my personal site</a></li>
<li><a href="https://github.com/benharri">github</a></li>
<li><a href="https://gitlab.com/benharri">gitlab</a></li>
<li><a href="/~ben/">tilde~ben</a></li>
</ul>
<p>Tags: <a href='tag_social.html'>social</a>, <a href='tag_contact.html'>contact</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/where-to-find-me-elsewhere-on-the-web.html</link>
<guid>https://tilde.team/~ben/blog/./where-to-find-me-elsewhere-on-the-web.html</guid>
<dc:creator>ben</dc:creator>
<pubDate>Tue, 28 Nov 2017 16:22:42 -0500</pubDate></item>
<item><title>
blog update
</title><description><![CDATA[
<p>sorry for the blast of posts. i recreated them from a wordpress blog on <a href="http://motd.org">motd.org</a>.</p>
<p>i plan on posting some random thoughts here from time to time. thanks for checking in.</p>
<p>tags: <a href='tag_blog.html'>blog</a>, <a href='tag_update.html'>update</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/blog-update.html</link>
<guid>https://tilde.team/~ben/blog/./blog-update.html</guid>
<dc:creator>ben</dc:creator>
<pubDate>Mon, 27 Nov 2017 20:48:10 -0500</pubDate></item>
<item><title>
thought of the day
</title><description><![CDATA[
<p>wherever you go, there you are</p>
<p>Tags: <a href='tag_thought-of-the-day.html'>thought-of-the-day</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/thought-of-the-day27904.html</link>
<guid>https://tilde.team/~ben/blog/./thought-of-the-day27904.html</guid>
<dc:creator>ben</dc:creator>
<pubDate>Mon, 27 Nov 2017 16:58:50 -0500</pubDate></item>
<item><title>
antiwitze
</title><description><![CDATA[
<ul>
<li>uebern berg ist schneller als zu fuss sagte der wanderer und schwamm los</li>
<li>Was ist der Unterschied zwischen einem Vogel? Beide Beine sind gleich lang. Besonders das linke.</li>
<li>Nachts ist es kälter als draußen.</li>
<li>Wer später bremst, fährt länger schnell.</li>
<li>Cola schmeckt besser als aus dem Glas!!!</li>
<li>Zu Fuß ist schneller als übern Berg!</li>
<li>Was ist weiss und wandert den Berg hinauf? Eine Lawine mit Heimweh.</li>
</ul>
<p>tags: <a href='tag_german.html'>german</a>, <a href='tag_jokes.html'>jokes</a>, <a href='tag_antiwitze.html'>antiwitze</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/antiwitze.html</link>
<guid>https://tilde.team/~ben/blog/./antiwitze.html</guid>
<dc:creator>ben</dc:creator>
<pubDate>Mon, 27 Nov 2017 16:58:17 -0500</pubDate></item>
<item><title>
thought of the day
</title><description><![CDATA[
<p>why do they tell us to use the stairs in case of fire? shouldn't we be using a fire extinguisher?</p>
<p>Tags: <a href='tag_thought-of-the-day.html'>thought-of-the-day</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/thought-of-the-day14302.html</link>
<guid>https://tilde.team/~ben/blog/./thought-of-the-day14302.html</guid>
<dc:creator>ben</dc:creator>
<pubDate>Mon, 27 Nov 2017 16:56:36 -0500</pubDate></item>
<item><title>
Nonsense
</title><description><![CDATA[
<p>I hole-hardedly agree, but allow me to play doubles advocate here for a moment. For all intensive purposes I think you are wrong. In an age where false morals are a diamond dozen, true virtues are a blessing in the skies. We often put our false morality on a petal stool like a bunch of pre-Madonnas, but you all seem to be taking something very valuable for granite. So I ask of you to mustard up all the strength you can because it is a doggy dog world out there. Although there is some merit to what you are saying it seems like you have a huge ship on your shoulder. In your argument you seem to throw everything in but the kids Nsync, and even though you are having a feel day with this I am here to bring you back into reality. I have a sick sense when it comes to these types of things. It is almost spooky, because I cannot turn a blonde eye to these glaring flaws in your rhetoric. I have zero taller ants when it comes to people spouting out hate in the name of moral righteousness. You just need to remember what comes around is all around, and when supply and command fails you will be the first to go. Make my words, when you get down to brass stacks it doesnt take rocket appliances to get two birds stoned at once. Its clear who makes the pants in this relationship, and sometimes you just have to swallow your prize and accept the facts. You might have to come to this conclusion through denial and error but I swear on my mothers mating name that when you put the petal to the medal you will pass with flying carpets like its a peach of cake.</p>
<p>tags: <a href='tag_nonsense.html'>nonsense</a>, <a href='tag_words.html'>words</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/nonsense.html</link>
<guid>https://tilde.team/~ben/blog/./nonsense.html</guid>
<dc:creator>ben</dc:creator>
<pubDate>Mon, 27 Nov 2017 16:55:29 -0500</pubDate></item>
<item><title>
Thought of the Day
</title><description><![CDATA[
<p>“Arguing with religious people Its like playing chess with a pigeon; no matter how good I am at chess, the pigeon is just going to knock over the pieces, crap on the board and strut around victorious” Anonymous</p>
<p>Tags: <a href='tag_nonsense.html'>nonsense</a>, <a href='tag_quotes.html'>quotes</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/thought-of-the-day22873.html</link>
<guid>https://tilde.team/~ben/blog/./thought-of-the-day22873.html</guid>
<dc:creator>ben</dc:creator>
<pubDate>Mon, 27 Nov 2017 16:54:07 -0500</pubDate></item>
<item><title>
Christian Morgenstern “verkehrte Welt”
</title><description><![CDATA[
<p>Dunkel wars der Mond schien helle,
Schnee bedeckt die grüne Flur
als ein Auto blitzeschnelle,
langsam um die Ecke fuhr.</p>
<p>Drinnen saßen stehend Leute,
schweigend ins Gespräch vertieft,
als ein totgeschossner Hase,
auf der Sandbank Schlittschuh lief.</p>
<p>Und der Wagen fuhr im Trabe,
rückwärts einen Berg hinauf.
Droben zog ein alter Rabe
grade eine Turmuhr auf.</p>
<p>Ringsumher herrscht tiefes schweigen
und mit fürchterlichem Krach,
spielen in des Grases Zweigen
zwei Kamele lautlos Schach.</p>
<p>Und auf einer roten Parkbank,
die blau angestrichen war,
saß ein blondgelockter Jüngling
mit kohlrabenschwarzem Haar.</p>
<p>Neben ihm ne alte Schrulle,
zählte kaum erst 16 Jahr,
In der Hand ne Butterstulle,
die mit Schmalz bestrichen war.</p>
<p>Droben auf dem Apfelbaume,
der sehr süße Birnen trug,
hing des Frühlings letzte Pflaume
und an Nüssen noch genug.</p>
<p>Von der regennassen Straße
wirbelte der Staub empor
und der Junge bei der Hitze
mächtig an den Ohren fror.</p>
<p>Beide Hände in den Taschen
hielt er sich die Augen zu.
Denn er konnte nicht ertragen,
wie nach Veilchen roch die Kuh.</p>
<p>Holder Engel, süßer Bengel,
furchtbar liebes Trampeltier.
Du hast Augen wie Sardellen,
alle Ochsen gleichen Dir.</p>
<p>Und zwei Fische liefen munter,
durch das Blaue Kornfeld hin.
Endlich ging die Sonne unter
und der graue Tag erschien.</p>
<p>Und das alles dichtet Goethe
Als er in der Morgenröte
Liegend auf dem Nachttopf saß
Und dabei die Zeitung las.</p>
<p>tags: <a href='tag_german.html'>german</a>, <a href='tag_words.html'>words</a>, <a href='tag_poetry.html'>poetry</a>, <a href='tag_nonsense.html'>nonsense</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/christian-morgenstern---verkehrte-welt.html</link>
<guid>https://tilde.team/~ben/blog/./christian-morgenstern---verkehrte-welt.html</guid>
<dc:creator>ben</dc:creator>
<pubDate>Mon, 27 Nov 2017 16:52:49 -0500</pubDate></item>
<item><title>
Joe on Sporty-ball-z
</title><description><![CDATA[
<p>For every nerd calling something sportsball there needs to be a jock that walks into a library and yells “WHATS UP WITH ALL THESE WORD BURGERS”</p>
<p>Tags: <a href='tag_thought-of-the-day.html'>thought-of-the-day</a>, <a href='tag_quotes.html'>quotes</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/joe-on-sporty-ball-z.html</link>
<guid>https://tilde.team/~ben/blog/./joe-on-sporty-ball-z.html</guid>
<dc:creator>ben</dc:creator>
<pubDate>Mon, 27 Nov 2017 16:51:42 -0500</pubDate></item>
<item><title>
fun words in german
</title><description><![CDATA[
<ul>
<li>Tschechisches Streichholzschächtelchen</li>
<li>Rindfleischettikettierungsüberwachungsaufgabensübertragungsgesetz</li>
<li>Donaudampfschifffahrtsgesellschaftskapitän</li>
</ul>
<p>tags: <a href='tag_german.html'>german</a>, <a href='tag_words.html'>words</a>, <a href='tag_linguistics.html'>linguistics</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/fun-words-in-german.html</link>
<guid>https://tilde.team/~ben/blog/./fun-words-in-german.html</guid>
<dc:creator>ben</dc:creator>
<pubDate>Mon, 27 Nov 2017 16:50:40 -0500</pubDate></item>
<item><title>
Thought of the day
</title><description><![CDATA[
<p>things are not what they appear to be. nor are they otherwise.</p>
<p>Tags: <a href='tag_thought-of-the-day.html'>thought-of-the-day</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/thought-of-the-day.html</link>
<guid>https://tilde.team/~ben/blog/./thought-of-the-day.html</guid>
<dc:creator>ben</dc:creator>
<pubDate>Mon, 27 Nov 2017 16:49:29 -0500</pubDate></item>
<item><title>
links to save for later
</title><description><![CDATA[
<p><a href="http://novatogatorop.com/gallery/alaska">cool pics</a>
<a href="https://gatsbyjs.org">gatsby ssg</a>
<a href="http://tachyons.io">tachyons</a></p>
<p>tags: <a href='tag_links.html'>links</a>, <a href='tag_bookmarks.html'>bookmarks</a>, <a href='tag_save-for-later.html'>save-for-later</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/links-to-save-for-later.html</link>
<guid>https://tilde.team/~ben/blog/./links-to-save-for-later.html</guid>
<dc:creator>ben</dc:creator>
<pubDate>Fri, 20 Oct 2017 16:18:28 -0400</pubDate></item>
<item><title>
hi there
</title><description><![CDATA[
<p>welcome to my tildeblog</p>
<p>you are here.</p>
<p>i like to mess around with linux sysadmin shtuff.
<a href="https://tilde.team">tilde.team</a> is my baby. let me know if you want to get involved.</p>
<p>thanks for being awesome. keep it up.</p>
<p>tags: <a href='tag_linux.html'>linux</a>, <a href='tag_sysadmin.html'>sysadmin</a>, <a href='tag_ubuntu.html'>ubuntu</a>, <a href='tag_tilde.html'>tilde</a></p>
<!-- text end -->
]]></description><link>https://tilde.team/~ben/blog/hi-there.html</link>
<guid>https://tilde.team/~ben/blog/./hi-there.html</guid>
<dc:creator>tildeman</dc:creator>
<pubDate>Mon, 02 Oct 2017 16:11:13 -0400</pubDate></item>
</channel></rss>