<?xml version="1.0" encoding="utf-8"?>

<feed xmlns="http://www.w3.org/2005/Atom">
<title>Tyler Cipriani: pages tagged administravia</title>
<link href="https://tylercipriani.com/tags/administravia/"/>
<link href="https://tylercipriani.com/tags/administravia/index.atom" rel="self" type="application/atom+xml"/>
<author>

<name>Tyler Cipriani</name>

</author>




<id>https://tylercipriani.com/tags/administravia/</id>

<subtitle type="html">Tyler Cipriani</subtitle>
<generator uri="http://ikiwiki.info/">ikiwiki</generator>
<updated>2017-07-01T00:49:09Z</updated>
<entry>
	<title>Lowering the Barrier to Blogging</title>

	<id>https://tylercipriani.com/blog/2016/09/02/lowering-the-barrier-to-blogging/</id>

	<link href="https://tylercipriani.com/blog/2016/09/02/lowering-the-barrier-to-blogging/"/>

	<author><name>Tyler Cipriani</name></author>


	<rights type="html" xml:lang="en">

		Creative Commons Attribution-ShareAlike License
		Copyright © 2017 Tyler Cipriani

	</rights>



	<category term="administravia" />

	<category term="computing" />


	<updated>2017-02-14T15:11:05Z</updated>
	<published>2016-09-02T16:00:28Z</published>


	<content type="html" xml:lang="en">
	&lt;p&gt;I really want to blog more. The problem is that most of the posts to this blog are fairly long-form. This will probably change as I do blog more.&lt;/p&gt;
&lt;p&gt;I&#39;ve also moved to Pandoc for rendering posts via &lt;a href=&quot;https://github.com/sciunto-org/ikiwiki-pandoc&quot;&gt;ikiwiki-pandoc&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;In that process, I&#39;ve also come to realize that pandoc handles &lt;a href=&quot;https://orgmode.org&quot;&gt;org-mode&lt;/a&gt; files almost completely unambiguously—which is not actually something you get in most markup languages/markup language interpreters. BONUS: I enjoy writing in org-mode.&lt;/p&gt;
&lt;p&gt;As is my wont, I&#39;ve also created some (not-so) fancy scripts to help me:&lt;/p&gt;
&lt;div class=&quot;sourceCode&quot; id=&quot;~/bin/blog&quot; data-org-language=&quot;sh&quot;&gt;&lt;pre class=&quot;sourceCode bash&quot;&gt;&lt;code class=&quot;sourceCode bash&quot;&gt;&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-1&quot; title=&quot;1&quot;&gt;&lt;span class=&quot;co&quot;&gt;#!/usr/bin/env bash&lt;/span&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-2&quot; title=&quot;2&quot;&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-3&quot; title=&quot;3&quot;&gt;&lt;span class=&quot;kw&quot;&gt;set&lt;/span&gt; &lt;span class=&quot;ex&quot;&gt;-eu&lt;/span&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-4&quot; title=&quot;4&quot;&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-5&quot; title=&quot;5&quot;&gt;&lt;span class=&quot;va&quot;&gt;POST=$*&lt;/span&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-6&quot; title=&quot;6&quot;&gt;&lt;span class=&quot;va&quot;&gt;BLOG_DIR=$(&lt;/span&gt;&lt;span class=&quot;fu&quot;&gt;grep&lt;/span&gt; &lt;span class=&quot;st&quot;&gt;&amp;#39;^srcdir&amp;#39;&lt;/span&gt; ~/ikiwiki.setup &lt;span class=&quot;kw&quot;&gt;|&lt;/span&gt; &lt;span class=&quot;fu&quot;&gt;cut&lt;/span&gt; -d&lt;span class=&quot;st&quot;&gt;&amp;#39;:&amp;#39;&lt;/span&gt; -f2 &lt;span class=&quot;kw&quot;&gt;|&lt;/span&gt; &lt;span class=&quot;fu&quot;&gt;xargs&lt;/span&gt;&lt;span class=&quot;va&quot;&gt;)&lt;/span&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-7&quot; title=&quot;7&quot;&gt;&lt;span class=&quot;va&quot;&gt;DATE=$(&lt;/span&gt;&lt;span class=&quot;fu&quot;&gt;date&lt;/span&gt; -Ins&lt;span class=&quot;va&quot;&gt;)&lt;/span&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-8&quot; title=&quot;8&quot;&gt;&lt;span class=&quot;va&quot;&gt;BLOG_PATH=$(&lt;/span&gt;&lt;span class=&quot;fu&quot;&gt;date&lt;/span&gt; +&lt;span class=&quot;st&quot;&gt;&amp;#39;blog/%Y/%m/%d&amp;#39;&lt;/span&gt;&lt;span class=&quot;va&quot;&gt;)&lt;/span&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-9&quot; title=&quot;9&quot;&gt;&lt;span class=&quot;va&quot;&gt;EXT=&lt;/span&gt;&lt;span class=&quot;st&quot;&gt;&amp;#39;.org&amp;#39;&lt;/span&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-10&quot; title=&quot;10&quot;&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-11&quot; title=&quot;11&quot;&gt;&lt;span class=&quot;va&quot;&gt;SAFE_POST=$(&lt;/span&gt;&lt;span class=&quot;bu&quot;&gt;echo&lt;/span&gt; &lt;span class=&quot;st&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;va&quot;&gt;$POST&lt;/span&gt;&lt;span class=&quot;st&quot;&gt;&amp;quot;&lt;/span&gt; &lt;span class=&quot;kw&quot;&gt;|&lt;/span&gt; &lt;span class=&quot;kw&quot;&gt;\&lt;/span&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-12&quot; title=&quot;12&quot;&gt;    &lt;span class=&quot;fu&quot;&gt;tr&lt;/span&gt; &lt;span class=&quot;st&quot;&gt;&amp;#39;[:upper:]&amp;#39;&lt;/span&gt; &lt;span class=&quot;st&quot;&gt;&amp;#39;[:lower:]&amp;#39;&lt;/span&gt; &lt;span class=&quot;kw&quot;&gt;|&lt;/span&gt; &lt;span class=&quot;kw&quot;&gt;\&lt;/span&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-13&quot; title=&quot;13&quot;&gt;    &lt;span class=&quot;fu&quot;&gt;sed&lt;/span&gt; -e &lt;span class=&quot;st&quot;&gt;&amp;#39;s/\W/-/g&amp;#39;&lt;/span&gt;&lt;span class=&quot;va&quot;&gt;)&lt;/span&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-14&quot; title=&quot;14&quot;&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-15&quot; title=&quot;15&quot;&gt;&lt;span class=&quot;va&quot;&gt;OUT=&lt;/span&gt;&lt;span class=&quot;st&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;va&quot;&gt;${BLOG_DIR}&lt;/span&gt;&lt;span class=&quot;st&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;va&quot;&gt;${BLOG_PATH}&lt;/span&gt;&lt;span class=&quot;st&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;va&quot;&gt;${SAFE_POST}${EXT}&lt;/span&gt;&lt;span class=&quot;st&quot;&gt;&amp;quot;&lt;/span&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-16&quot; title=&quot;16&quot;&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-17&quot; title=&quot;17&quot;&gt;&lt;span class=&quot;fu&quot;&gt;mkdir&lt;/span&gt; -p &lt;span class=&quot;st&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;va&quot;&gt;$(&lt;/span&gt;&lt;span class=&quot;fu&quot;&gt;dirname&lt;/span&gt; &lt;span class=&quot;st&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;va&quot;&gt;$OUT&lt;/span&gt;&lt;span class=&quot;st&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;va&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;st&quot;&gt;&amp;quot;&lt;/span&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-18&quot; title=&quot;18&quot;&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-19&quot; title=&quot;19&quot;&gt;&lt;span class=&quot;kw&quot;&gt;{&lt;/span&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-20&quot; title=&quot;20&quot;&gt;    &lt;span class=&quot;bu&quot;&gt;printf&lt;/span&gt; &lt;span class=&quot;st&quot;&gt;&amp;#39;#+TITLE: %b\n&amp;#39;&lt;/span&gt; &lt;span class=&quot;st&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;va&quot;&gt;$POST&lt;/span&gt;&lt;span class=&quot;st&quot;&gt;&amp;quot;&lt;/span&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-21&quot; title=&quot;21&quot;&gt;    &lt;span class=&quot;bu&quot;&gt;printf&lt;/span&gt; &lt;span class=&quot;st&quot;&gt;&amp;#39;\n&amp;#39;&lt;/span&gt; &lt;span class=&quot;st&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;va&quot;&gt;$POST&lt;/span&gt;&lt;span class=&quot;st&quot;&gt;&amp;quot;&lt;/span&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-22&quot; title=&quot;22&quot;&gt;    &lt;span class=&quot;bu&quot;&gt;printf&lt;/span&gt; &lt;span class=&quot;st&quot;&gt;&amp;#39;[[!meta &amp;lt;span class=&amp;quot;error&amp;quot;&amp;gt;Error: cannot parse date/time: &amp;amp;#37;b&amp;lt;/span&amp;gt;]]\n\n&amp;#39;&lt;/span&gt; &lt;span class=&quot;st&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;va&quot;&gt;$DATE&lt;/span&gt;&lt;span class=&quot;st&quot;&gt;&amp;quot;&lt;/span&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-23&quot; title=&quot;23&quot;&gt;&lt;span class=&quot;kw&quot;&gt;}&lt;/span&gt; &lt;span class=&quot;op&quot;&gt;&amp;gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;st&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;va&quot;&gt;$OUT&lt;/span&gt;&lt;span class=&quot;st&quot;&gt;&amp;quot;&lt;/span&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-24&quot; title=&quot;24&quot;&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-25&quot; title=&quot;25&quot;&gt;&lt;span class=&quot;co&quot;&gt;# http://www.emacswiki.org/emacs/EmacsClient&lt;/span&gt;&lt;/a&gt;
&lt;a class=&quot;sourceLine&quot; id=&quot;~/bin/blog-26&quot; title=&quot;26&quot;&gt;&lt;span class=&quot;bu&quot;&gt;exec&lt;/span&gt; emacsclient --no-wait --alternate-editor=&lt;span class=&quot;st&quot;&gt;&amp;quot;&amp;quot;&lt;/span&gt; --create-frame &lt;span class=&quot;st&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;va&quot;&gt;$OUT&lt;/span&gt;&lt;span class=&quot;st&quot;&gt;&amp;quot;&lt;/span&gt;&lt;/a&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

	</content>


	<link rel="comments" href="//tylercipriani.com/blog/2016/09/02/lowering-the-barrier-to-blogging/#comments" type="text/html" />


	<link rel="comments" href="//tylercipriani.com/blog/2016/09/02/lowering-the-barrier-to-blogging/comments.atom" type="application/atom+xml" />

</entry>
<entry>
	<title>Updates around here</title>

	<id>https://tylercipriani.com/blog/2016/08/23/updates-around-here/</id>

	<link href="https://tylercipriani.com/blog/2016/08/23/updates-around-here/"/>

	<author><name>Tyler Cipriani</name></author>


	<rights type="html" xml:lang="en">

		&lt;a href=&quot;https://creativecommons.org/licenses/by-sa/4.0/&quot;&gt;Creative Commons Attribution-ShareAlike License&lt;/a&gt;
		Copyright © 2017 Tyler Cipriani

	</rights>



	<category term="administravia" />

	<category term="computing" />


	<updated>2017-07-01T00:49:09Z</updated>
	<published>2016-08-23T23:28:00Z</published>


	<content type="html" xml:lang="en">
	&lt;p&gt;I’ve (mostly) finished moving my blog off of Jekyll and over to &lt;a href=&quot;https://ikiwiki.info/&quot;&gt;IkiWiki&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The source for my posts is still on github. My Jekyll stuff is still in &lt;a href=&quot;https://github.com/thcipriani/blog_src&quot;&gt;thcipriani/blog_src&lt;/a&gt;. My IkiWiki stuff can be found in &lt;a href=&quot;https://tylercipriani.com/tags/administravia/thcipriani/wikihttps://github.com/thcipriani/wiki&quot;&gt;thcipriani/wiki&lt;/a&gt;. I’ve also made a couple of plugins for IkiWiki—one to use &lt;a href=&quot;http://pygments.org/&quot;&gt;Pygments&lt;/a&gt; for syntax highlighting, another to use &lt;a href=&quot;http://s3tools.org/s3cmd&quot;&gt;s3cmd&lt;/a&gt; to do my publishing. I’ll get around to publishing those plugins Soon™. For whatever reason the &lt;a href=&quot;https://ikiwiki.info/plugins/amazon_s3/&quot;&gt;amazon_s3&lt;/a&gt; plugin for IkiWiki failed in strange ways for me.&lt;/p&gt;
&lt;section id=&quot;content-ownership&quot; class=&quot;level2&quot;&gt;
&lt;h2&gt;Content Ownership &lt;a href=&quot;https://tylercipriani.com/tags/administravia/#content-ownership&quot;&gt;¶&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;This move was prompted mostly by content ownership and licensing issues.&lt;/p&gt;
&lt;p&gt;On the previous iteration of this site, I used the &lt;a href=&quot;https://disqus.com/&quot;&gt;Disqus&lt;/a&gt; service (which is really good) for comments—but I really wanted to own the comments on my blog! I wanted to be certain that the comments made here were owned by the folks that made them and licensed in a Free way. To that end, I exported all comments from Disqus (which is an awesome feature) and imported them into a service that I hosted on a tiny platform called &lt;a href=&quot;https://posativ.org/isso/&quot;&gt;Isso&lt;/a&gt;. Isso seems like good software, and everything worked out of the box.&lt;/p&gt;
&lt;/section&gt;
&lt;section id=&quot;copyleft&quot; class=&quot;level2&quot;&gt;
&lt;h2&gt;Copyleft &lt;a href=&quot;https://tylercipriani.com/tags/administravia/#copyleft&quot;&gt;¶&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;So after a lot of yak shaving, I was running on Jekyll and Isso which are both &lt;a href=&quot;https://en.wikipedia.org/wiki/MIT_License&quot;&gt;MIT Licensed&lt;/a&gt; projects. For my personal blog, I really wanted to use something with a Copyleft license. The criteria of a statically-generated blog and comment system with a Copyleft license was surprisingly limiting.&lt;/p&gt;
&lt;p&gt;I looked at using &lt;a href=&quot;http://blog.getpelican.com/&quot;&gt;Pelican&lt;/a&gt; and IkiWiki. Ultimately, IkiWiki just seemed more flexible and extensible to me. Plus, I’m writing this via the CGI and it will be built statically and uploaded to s3 which is kind of neat.&lt;/p&gt;
&lt;/section&gt;
&lt;section id=&quot;administravia&quot; class=&quot;level2&quot;&gt;
&lt;h2&gt;Administravia &lt;a href=&quot;https://tylercipriani.com/tags/administravia/#administravia&quot;&gt;¶&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;I’ve made some effort to ensure that RSS feeds don’t break. This effort consists of a single 301 redirect.&lt;/p&gt;
&lt;p&gt;I’ve also written a new &lt;a href=&quot;https://tylercipriani.com/comment-policy/&quot;&gt;comment policy&lt;/a&gt; for this site.&lt;/p&gt;
&lt;p&gt;Sorry if I’ve broken things. Let me know if I’ve broken things badly.&lt;/p&gt;
&lt;/section&gt;

	</content>


	<link rel="comments" href="//tylercipriani.com/blog/2016/08/23/updates-around-here/#comments" type="text/html" />


	<link rel="comments" href="//tylercipriani.com/blog/2016/08/23/updates-around-here/comments.atom" type="application/atom+xml" />

</entry>

</feed>
