<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Mon pays</title>
	
	<link>http://www.bgcarlisle.com/montreal</link>
	<description>Ce n'est pas un pays, c'est l'hiver</description>
	<lastBuildDate>Mon, 20 May 2013 21:37:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/MonPays" /><feedburner:info uri="monpays" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>How to automatically back up WordPress or ownCloud using cron jobs</title>
		<link>http://feedproxy.google.com/~r/MonPays/~3/NIaQho8QU3g/</link>
		<comments>http://www.bgcarlisle.com/montreal/2013/05/20/how-to-automatically-back-up-wordpress-or-owncloud-using-cron-jobs/#comments</comments>
		<pubDate>Mon, 20 May 2013 19:59:08 +0000</pubDate>
		<dc:creator>Benjamin Gregory Carlisle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Bioethics]]></category>
		<category><![CDATA[McGill]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Yintewang]]></category>

		<guid isPermaLink="false">http://www.bgcarlisle.com/montreal/?p=3552</guid>
		<description><![CDATA[Recently I set up WordPress for my research group in the Medical Ethics Unit. We will be blogging our journal clubs, posting links to our publications and upcoming events. In related news, my research group has been using DropBox to coordinate papers in progress, sharing of raw data, citations, and all manner of other information. [...]]]></description>
				<content:encoded><![CDATA[<p>Recently I set up WordPress for my research group in the Medical Ethics Unit. We will be blogging our journal clubs, posting links to our publications and upcoming events. In related news, my research group has been using DropBox to coordinate papers in progress, sharing of raw data, citations, and all manner of other information. This was working pretty well, but we have been bumping up against the upper limit of our capacity on DropBox for a while, so I installed ownCloud on the web host we got for the research group blog. I&#8217;m pretty happy with how nice it is to use and administer.</p>
<p>Of course one of our concerns is making sure that we don&#8217;t lose any data in the case of the failure of our web host. This is unlikely, but it does happen, and we don&#8217;t want to run into a situation where we try to log in to our cloud-based file storage / sharing service and find that months&#8217; worth of research is gone forever.</p>
<p>For a few weeks, the following was more-or-less my workflow for making backups:</p>
<ol>
<li><span style="line-height: 13px;">Log in to phpMyAdmin</span></li>
<li><span style="line-height: 13px;">Make a dump file of the WP database (choose database &gt; Export &gt; Save as file &#8230; )</span></li>
<li><span style="line-height: 13px;">Make a dump file of the ownCloud database</span></li>
<li><span style="line-height: 13px;">Save to computer and label with appropriate date</span></li>
<li>Log in to web server using FTP</li>
<li>Copy contents of WP&#8217;s /wp-content/ to a date-labelled folder on my computer</li>
<li>Copy contents of ownCloud&#8217;s /data/ to a date-labelled folder on my computer</li>
</ol>
<p>This worked pretty well, except that it was a pain for me to have to do this every day, and I know that if I ever forgot to do it, that would be when something terrible happened. Fortunately for me, my boss mentioned that he had an old but still serviceable iMac sitting in his office that he wanted to put to some good purpose.</p>
<p>I decided to make a fully automatic setup that would make backups of our remotely hosted data and save it locally without any input on my part, so I can just forget about it. I made it with cron jobs.</p>
<h3>Server side cron jobs</h3>
<p>First, I set up some cron jobs on the server side. The first one waits until midnight every day, then dumps all the MySQL databases into a gzipped file on my web host, then zips up the WordPress /wp-content/ and ownCloud /data/ folders and puts them in the backup folder as well. The second server-side cron job empties the backup folder every day at 23h00.</p>
<ul>
<li><span style="line-height: 13px;">0 0 * * * PREFIX=`date +%y-%m-%d`; mysqldump -u USERNAME -h HOSTNAME -pPASSWORD &#8211;all-databases | gzip &gt; /path/to/backup/folder/${PREFIX}-DBNAME-db.sql.gz; zip -r /path/to/backup/folder/${PREFIX}-wordpress-files.zip /path/to/wordpress/wp-content/; zip -r /path/to/backup/folder/${PREFIX}-owncloud-files.zip /path/to/owncloud/data/;</span></li>
<li>0 23 * * * rm -r /path/to/backup/folder/*</li>
</ul>
<h3>A few notes for someone trying to copy this set-up</h3>
<ul>
<li><span style="line-height: 13px;">Your web host might be in a different time zone, so you might need to keep that in mind when coordinating cron jobs on your web host with ones on a local machine.</span></li>
<li>My web host provided a cron job editor that automatically escapes special characters like %, but you might have to add back-slashes to make yours work if you&#8217;re manually editing with <em>crontab -e</em>.</li>
<li>You might want to put a .htaccess file in your backup directory with the following in it: &#8220;Options -Indexes&#8221; (remove the quotes of course). This stops other people from going to your backup directory in a browser and helping themselves to your files. You could also name your backup directory with a random hash of letters and numbers if you wanted to make it difficult for people to steal your backed-up data.</li>
</ul>
<h3>Local cron job</h3>
<p>Then on the local machine, the old iMac, I set up the following cron job. It downloads the files and saves them to a folder on an external hard disc every day at 6h00.</p>
<ul>
<li><span style="line-height: 13px;">0 6 * * * PREFIX=`date +%y-%m-%d`; curl http://www.your-web-site.com/back-up/${PREFIX}-DBNAME-db.sql.gz &gt; /Volumes/External HD/Back-ups/${PREFIX}-DBNAME-db.sql.gz; curl http://www.your-web-site.com/back-up/${PREFIX}-wordpress-files.zip &gt; /Volumes/External HD/Back-ups/${PREFIX}-wordpress-files.zip; curl http://www.your-web-site.com/back-up/${PREFIX}-owncloud-files.zip &gt; /Volumes/External HD/Back-ups/${PREFIX}-owncloud-files.zip;</span></li>
</ul>
<p>If you were super-paranoid about losing data, you could install this on multiple local machines, or you change the timing so that the cron jobs run twice a day, or as often as you liked, really. As long as they&#8217;re always turned on, connected to the internet and they have access to the folder where the backups will go, they should work fine.</p>
<h3>Stoop-n-scoop</h3>
<p>This isn&#8217;t a super-secure way to back up your files, but then we&#8217;re more worried about losing data accidentally than having it stolen maliciously. I don&#8217;t think the world of medical ethics is cut-throat enough that our academic rivals would stoop to stealing our data in an effort to scoop our papers before we can publish them. That said, I&#8217;m not about to give away the exact URL where our backups are stored, either.</p>
<p>The practical upshot of all this is that now we have at least three copies of any file we&#8217;re working on. There&#8217;s one on the computer being used to edit the document, there&#8217;s one stored remotely on our web host, and there&#8217;s a copy of all our files backed up once a day on the old iMac at the Medical Ethics Unit.</p>
<img src="http://feeds.feedburner.com/~r/MonPays/~4/NIaQho8QU3g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bgcarlisle.com/montreal/2013/05/20/how-to-automatically-back-up-wordpress-or-owncloud-using-cron-jobs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bgcarlisle.com/montreal/2013/05/20/how-to-automatically-back-up-wordpress-or-owncloud-using-cron-jobs/</feedburner:origLink></item>
		<item>
		<title>Solutions to some two-mover chess problems by W T Pierce and J Pierce</title>
		<link>http://feedproxy.google.com/~r/MonPays/~3/eTdUA70Kewo/</link>
		<comments>http://www.bgcarlisle.com/montreal/2013/05/14/solutions-to-some-two-mover-chess-problems-by-w-t-pierce-and-j-pierce/#comments</comments>
		<pubDate>Tue, 14 May 2013 20:05:57 +0000</pubDate>
		<dc:creator>Benjamin Gregory Carlisle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Chess]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[Memories]]></category>

		<guid isPermaLink="false">http://www.bgcarlisle.com/montreal/?p=3516</guid>
		<description><![CDATA[My grandfather taught me how to play chess when I was very young. He made a huge, beautiful chess set out of wood in his basement, and over the course of my childhood, he gave me books with little mathematical puzzles and chess problems in them. Later on in life he denied having taught me how to [...]]]></description>
				<content:encoded><![CDATA[<div id="attachment_3521" class="wp-caption alignleft" style="width: 160px"><a href="http://www.bgcarlisle.com/montreal/wp-content/uploads/2013/05/Chess-Problem-Example.png"><img class="size-thumbnail wp-image-3521" alt="Chess Problem Example" src="http://www.bgcarlisle.com/montreal/wp-content/uploads/2013/05/Chess-Problem-Example-150x150.png" width="150" height="150" /></a><p class="wp-caption-text">Chess Problem Example</p></div>
<p>My grandfather taught me how to play chess when I was very young. He made a huge, beautiful chess set out of wood in his basement, and over the course of my childhood, he gave me books with little mathematical puzzles and chess problems in them. Later on in life he denied having taught me how to play, and I don&#8217;t know if it was because of modesty or Alzheimer&#8217;s.</p>
<p>This past weekend, I found <a title="Chess Problems" href="http://www.kobobooks.com/ebook/Chess-Problems/book-tW3WvrGyHkOv2fDgh_6nVw/page1.html" target="_blank">a book of public domain chess problems</a> (download the PDF, not the epub, if you&#8217;re interested). It reminds me of Grandpa Searles. I&#8217;ve been working through them for pleasure. They are surprisingly challenging, and doubly so if you&#8217;re tired. I probably spent a solid two hours trying to figure out #4 on Sunday afternoon, without success. I must have been tired though—Monday morning on the metro, it took less than 5 minutes. In fact, the solution turned out to be one that I considered multiple times on Sunday. Go figure.</p>
<h3>What are &#8220;chess problems?&#8221;</h3>
<p>A chess problem is a puzzle, somewhat akin to a Sudoku. You are given a chess board illustrating a game already in progress—nearly done, even. You are told which side you are playing and you are told how many moves to checkmate. See the image attached at the beginning of this post for an example of a very difficult five-mover chess problem.</p>
<h3>Why I like chess problems, but I&#8217;m not that good at chess</h3>
<p>In a chess game, there is no easy way for you to tell how many moves you are away from checkmate. The only way to know is to think through all the possibilities. In some cases there will be constraints on the number of possible moves by a player which make it easier to calculate. In most cases, there will be a staggering number of possible moves, and depending on the other player&#8217;s actions, you might be further away from or closer to checkmate.</p>
<div id="attachment_3525" class="wp-caption alignright" style="width: 160px"><a href="http://www.bgcarlisle.com/montreal/wp-content/uploads/2013/05/Why-I-am-bad-at-chess.pdf" target="_blank"><img class="size-thumbnail wp-image-3525" alt="Why I am bad at chess" src="http://www.bgcarlisle.com/montreal/wp-content/uploads/2013/05/Why-I-am-bad-at-chess-150x150.png" width="150" height="150" /></a><p class="wp-caption-text">Why I am bad at chess</p></div>
<p>So faced with a complex problem with this, my brain usually resorts to the strategy as illustrated in the image attached to this paragraph. I probably use such a simplistic algorithm because for almost every move, the likelihood that I will notice that there is a way to force a checkmate more than one move in advance is vanishingly small, and so I focus on intermediate goals instead. I&#8217;m sure a real chess player has the goal of checkmate in mind from the first move. I don&#8217;t think about forcing a checkmate until it&#8217;s already inevitable.</p>
<p>This is why I suck at real chess games: My estimation of the value of forethought is outweighed by my pessimism regarding how much effort it would actually take to get anything meaningful out of it.</p>
<p>In a chess problem, on the other hand, I know there&#8217;s a solution to be had in a certain number of moves (unless there&#8217;s a typo or something), and so I will take the time to work through all the possibilities. It&#8217;s something both frustrating and satisfying. It is immensely gratifying when you find the solution, and the more frustrating it is to find it, the better it is when you write down the solution and get to smugly declare, &#8220;checkmate.&#8221;</p>
<p>When you &#8220;beat&#8221; a chess problem, it&#8217;s much better than beating a human opponent, because you know that the chess problem is not &#8220;having an off-day,&#8221; and it can&#8217;t say after the fact, &#8220;I let you win&#8221; or anything like that. I also like chess problems because you can feel really good about solving one. In a chess game, you have to be careful about taking too much pleasure in winning, or you come across as a jerk.</p>
<h3>Solutions to some two-mover problems</h3>
<p>As promised, here are some solutions to the problems in the book, <em>Chess Problems</em>, by W T Pierce and J Pierce. I&#8217;m not going to list all the solutions. That would ruin the fun for you! Also, I haven&#8217;t finished them all yet. I may or may not post more solutions when I have them. I&#8217;m pretty sure that these ones are correct, although when I copied #1 from my notebook to my blog, I noticed that it wasn&#8217;t correct. (I have since fixed it, I believe.)</p>
<ol>
<li>Ng3+ Kxe6; Bc8#</li>
<li><span style="line-height: 13px;">Nc4+ Kxc6; b5#</span></li>
<li>d3+ Kxd4; Rb3#</li>
</ol>
<p>Let me know if you find problems with these solutions (very possible), or if you want to add your own solutions to later problems. Do you have other public domain collections of chess problems to share?</p>
<img src="http://feeds.feedburner.com/~r/MonPays/~4/eTdUA70Kewo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bgcarlisle.com/montreal/2013/05/14/solutions-to-some-two-mover-chess-problems-by-w-t-pierce-and-j-pierce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bgcarlisle.com/montreal/2013/05/14/solutions-to-some-two-mover-chess-problems-by-w-t-pierce-and-j-pierce/</feedburner:origLink></item>
		<item>
		<title>Carrying suspicious-looking quidditch equipment on the metro</title>
		<link>http://feedproxy.google.com/~r/MonPays/~3/7yUf0eA5G40/</link>
		<comments>http://www.bgcarlisle.com/montreal/2013/05/06/carrying-suspicious-looking-quidditch-equipment-on-the-metro/#comments</comments>
		<pubDate>Mon, 06 May 2013 16:12:42 +0000</pubDate>
		<dc:creator>Benjamin Gregory Carlisle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Métro]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Quidditch]]></category>
		<category><![CDATA[Sketchy]]></category>

		<guid isPermaLink="false">http://www.bgcarlisle.com/montreal/?p=3499</guid>
		<description><![CDATA[This morning, I brought two brand new Mark 3 quidditch hoop bases to campus via the métro. The McGill Quidditch Team now has a full set of 6 freestanding quidditch hoops! They are reasonably easy to carry and just the right weight to prevent tipping. They are also made of ABS pipes, joints and couplings, and [...]]]></description>
				<content:encoded><![CDATA[<div id="attachment_3508" class="wp-caption alignleft" style="width: 160px"><a href="http://www.bgcarlisle.com/montreal/wp-content/uploads/2013/05/Mark-3-quidditch-hoop-base.png"><img class="size-thumbnail wp-image-3508" alt="Mark-3-quidditch-hoop-base" src="http://www.bgcarlisle.com/montreal/wp-content/uploads/2013/05/Mark-3-quidditch-hoop-base-150x150.png" width="150" height="150" /></a><p class="wp-caption-text">Mark-3-quidditch-hoop-base</p></div>
<p>This morning, I brought two brand new Mark 3 quidditch hoop bases to campus via the métro. The McGill Quidditch Team now has a full set of 6 freestanding quidditch hoops! They are reasonably easy to carry and just the right weight to prevent tipping. They are also made of ABS pipes, joints and couplings, and so they look awfully suspicious.</p>
<p>I&#8217;m still working on updating the construction manual so that it reflects the most up-to-date version of the base.</p>
<p>I got off the métro at station Peel and crossed the path of two uniformed police officers. They looked at me, they looked at the mess of ABS pipes in my hands, and they looked up at me again. Although they didn&#8217;t say anything, I could tell from their expression that they were thinking something like, &#8220;If this guy wasn&#8217;t blond with blue eyes, we would totally preemptively arrest him under the brave new anti-terrorism legislation that just passed.&#8221;</p>
<p>I just tried to look casual.</p>
<img src="http://feeds.feedburner.com/~r/MonPays/~4/7yUf0eA5G40" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bgcarlisle.com/montreal/2013/05/06/carrying-suspicious-looking-quidditch-equipment-on-the-metro/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.bgcarlisle.com/montreal/2013/05/06/carrying-suspicious-looking-quidditch-equipment-on-the-metro/</feedburner:origLink></item>
		<item>
		<title>How to play “Dave’s Famous Chinese Telephone Charades”</title>
		<link>http://feedproxy.google.com/~r/MonPays/~3/eXAYc9XGaj0/</link>
		<comments>http://www.bgcarlisle.com/montreal/2013/04/07/how-to-play-daves-famous-chinese-telephone-charades/#comments</comments>
		<pubDate>Mon, 08 Apr 2013 03:30:44 +0000</pubDate>
		<dc:creator>Benjamin Gregory Carlisle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[I have a great idea]]></category>
		<category><![CDATA[Making friends]]></category>

		<guid isPermaLink="false">http://www.bgcarlisle.com/montreal/?p=3471</guid>
		<description><![CDATA[Dave&#8217;s Famous Chinese Telephone Charades is a party game that requires a minimum of 4 &#8220;participants,&#8221; as well as a certain critical mass of reasonably creative &#8220;audience members,&#8221; probably no less than 4. It was a perennial favourite of my circle of friends when I was an undergrad at Western. Here&#8217;s how it works: Players [...]]]></description>
				<content:encoded><![CDATA[<p><em>Dave&#8217;s Famous Chinese Telephone Charades</em> is a party game that requires a minimum of 4 &#8220;participants,&#8221; as well as a certain critical mass of reasonably creative &#8220;audience members,&#8221; probably no less than 4. It was a perennial favourite of my circle of friends when I was an undergrad at Western.</p>
<p>Here&#8217;s how it works:</p>
<ol>
<li>Players 1–4 go to a separate room where they can&#8217;t see or hear the audience members talking.</li>
<li>The audience members choose a scene to be acted out silently by the players.
<ul>
<li>The instructions for the scene to be acted out should be simple—aim for 1 sentence.</li>
<li>The scene should lend itself easily to physical movement and interpretation.</li>
<li>The scene must be something that can be acted out silently.</li>
<li>Examples include: &#8220;washing the dishes,&#8221; &#8220;an otter in its natural habitat,&#8221; &#8220;a day in the life of a &#8230;&#8221;</li>
</ul>
</li>
<li>Player 1 comes back to the room with the audience, where he is told the scene to be acted out. He is given 10 seconds to think about what exactly he will do.</li>
<li>Player 2 comes into the room and watches player 1 silently act out the scene given to him. The scene should be about 30 seconds long, tops. To be clear: no one tells players 2–4 what the scene is until after the game is finished.</li>
<li>Player 3 enters and player 2 acts out the scene from memory, not knowing the instructions that were given to player 1.</li>
<li>Player 4 enters and player 3 acts out the scene from memory.</li>
<li>Player 4 acts out the scene as best he can from memory, narrating what it is she thinks she is acting out.</li>
<li>Player 3 corrects player 4.</li>
<li>Player 2 corrects player 3.</li>
<li>Player 1 reveals the instructions she was given in the first place.</li>
</ol>
<p>This sort of game only works with certain kinds of people in the right sort of mood, but when you have the right combination of people with the right sort of energy all together in the same place, it can be hilarious.</p>
<img src="http://feeds.feedburner.com/~r/MonPays/~4/eXAYc9XGaj0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bgcarlisle.com/montreal/2013/04/07/how-to-play-daves-famous-chinese-telephone-charades/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bgcarlisle.com/montreal/2013/04/07/how-to-play-daves-famous-chinese-telephone-charades/</feedburner:origLink></item>
		<item>
		<title>Internet vigilante justice against the police in Montréal through social media</title>
		<link>http://feedproxy.google.com/~r/MonPays/~3/6_cxhuFZKyg/</link>
		<comments>http://www.bgcarlisle.com/montreal/2013/04/06/internet-vigilante-justice-against-the-police-in-montreal-through-social-media/#comments</comments>
		<pubDate>Sat, 06 Apr 2013 19:10:34 +0000</pubDate>
		<dc:creator>Benjamin Gregory Carlisle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Culture]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Quebec]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[The city]]></category>

		<guid isPermaLink="false">http://www.bgcarlisle.com/montreal/?p=3454</guid>
		<description><![CDATA[It&#8217;s hard to trust the police in Montréal these days. &#8220;Officer 728&#8243; is a household name, known for her abuse of power, which was caught on video. There was also a famous CCTV video of a prostrate man being brutally kicked repeatedly by the Montréal police. This problem isn&#8217;t restricted to Montréal either. Recently a police [...]]]></description>
				<content:encoded><![CDATA[<div id="attachment_3465" class="wp-caption alignleft" style="width: 160px"><a href="http://www.bgcarlisle.com/montreal/wp-content/uploads/2013/04/I-hate-Instagram-too-but-this-is-ridiculous.jpg"><img class="size-thumbnail wp-image-3465 " alt="I hate Instagram too, but arresting someone for using it is ridiculous" src="http://www.bgcarlisle.com/montreal/wp-content/uploads/2013/04/I-hate-Instagram-too-but-this-is-ridiculous-150x150.jpg" width="150" height="150" /></a><p class="wp-caption-text">I hate Instagram too, but arresting someone for using it is ridiculous</p></div>
<p>It&#8217;s hard to trust the police in Montréal these days. <a title="Officer 728" href="http://news.nationalpost.com/2013/02/20/montreal-cop-nicknamed-officer-728-in-viral-video-of-alleged-police-brutrality-ordered-to-undergo-psychiatric-treatment/" target="_blank">&#8220;Officer 728&#8243; is a household name, known for her abuse of power, which was caught on video.</a> There was also a famous <a title="CCTV police brutality" href="http://www.youtube.com/watch?v=Hv1aKU608wg" target="_blank">CCTV video of a prostrate man being brutally kicked repeatedly by the Montréal police</a>. This problem isn&#8217;t restricted to Montréal either. Recently <a title="Punchy Vancouver policeman" href="http://www.theprovince.com/news/Westminster+police+investigate+Vancouver+officer+punched/8185244/story.html" target="_blank">a police officer in Vancouver was caught on video punching a cyclist in the face while putting him in handcuffs</a>.</p>
<h3>Technology and the abuse of police power</h3>
<p>I used to largely dismiss reports of police abuses of power. When I saw graffiti saying, &#8220;eff the police&#8221; or something to that effect, I used to chalk it up to conspiracy theorists and delinquent youths. Now that it&#8217;s all on Youtube, it&#8217;s harder to ignore the problem.</p>
<p>(I also used to dismiss those who spray-painted &#8220;burn the banks&#8221; in a number of parts of Montréal as conspiracy theorists, but since 2008, I can kind of see where they&#8217;re coming from.)</p>
<p>We&#8217;re entering into an age when abuses of power by police are being caught on tape more and more often. I don&#8217;t think that police abusing their power is a new thing, or even that the rates have changed recently. I&#8217;m of the position that it might just be more visible because of the recent development that nearly everyone is carrying around a camera in their pocket that can instantly upload video of police brutality to Youtube. The Google Glass project (and the clones that are sure to follow) may make this even more common.</p>
<p>This is unsettling to me, partly because it might mean that a lot of the times I dismissed claims of police abuse, I was in the wrong.</p>
<h3>We should all be legitimately outraged by this</h3>
<p>More importantly though, this should make us all angry because this is not how justice works in Canada. Even if the robbery suspect was completely guilty of every crime the police suspected, we don&#8217;t allow individual police officers to dole out their own personal vengeance in the form of physical beatings. We certainly don&#8217;t allow groups of police officers to do so against suspected criminals as they lie helpless in the snow, and most emphatically, there is no place in Canadian justice for criminals to be punished in this way (or any other) without due process or without even having been formally charged with a crime.</p>
<p>A police officer punching a restrained person is much worse than a regular citizen punching another citizen. This is because the police are, so to speak, the final guarantee that the government has power over its citizens and that there is the rule of law in a country. The most basic reason for others not to steal your stuff is that if they do, there&#8217;s a good chance that the police will come and take away their freedom in such a way that it&#8217;s not worth it for most people to engage in that behaviour. All laws largely work on the same principle. Sure, there&#8217;s other sanctions that a government can use, like taxation, but even that is underwritten by the threat of police coming and putting you in prison if you break the tax laws.</p>
<p>So, when a police officer physically abuses a citizen, he shakes our faith in the proper functioning of the machinery of government. This makes the issue not just one of bad PR for a particular police department, but one of general faith in our country to work in a just and equitable way. Further, if the police are vigilantes and there is no recourse, it legitimizes vigilante justice by the people against the police.</p>
<p>This means that when a police officer abuses his power, there must be some recourse that is transparent, timely and just. There can&#8217;t even be the appearance that the police are above the law, otherwise what you will see is ordinary citizens taking the law into their own hands to bring the police to justice, which is a very scary prospect.</p>
<h3>Ordinary citizens are taking the law into their own hands to bring the police to justice</h3>
<p>In response to the issues I have described above, as well as a number of much less famous examples of abuse of police power during the protests in Montréal, there has been a movement toward the <a title="Thanks, Dropbox" href="http://www.cbc.ca/news/canada/montreal/story/2013/03/20/montreal-police-spvm-website-hacked.html" target="_blank">use of social media to identify the police who are abusing their power</a>. This is being done by citizens who believe that there has been abuse of power by police in Montréal, and that the normal channels of addressing these abuses have been of no avail.</p>
<p>They are collecting photos, videos, identification numbers, names and addresses of police officers, cataloguing their transgressions and calling for retribution.</p>
<p>The police are calling this &#8220;intimidation.&#8221; They are calling for it to be taken down. They&#8217;re (rightly) complaining that there is no way for a police officer who is wrongly accused in this way to clear his name, and that the police, and even some non-police are being put in danger because of this.</p>
<h3>What needs to happen</h3>
<p>I have not been involved in the student protests in Montréal. I have never been beaten by the police. I generally believe that if I call 911, it will be the &#8220;good guys&#8221; who show up at my door. That said, I can understand why someone who was abused by a police officer might be tempted to post this information out of frustration at the ineffectiveness of the official recourse against such abuse.</p>
<p>In some ways, the police have been implicitly training us to use these methods if we want anything to get done: Likely the police officer from Vancouver would have gotten away with punching the cyclist in the face if the cyclist&#8217;s friend hadn&#8217;t caught it on video and posted it to Youtube.</p>
<p>If the police want us to use official channels to address police abuses, they have to give us reason to think that it&#8217;s better to do that than to just appeal to the Internet for justice. <a title="I hate Instagram too, but this is ridiculous" href="http://www.cbc.ca/news/canada/montreal/story/2013/04/04/montreal-police-graffiti-arrest-instagram.html" target="_blank">Politically-motivated arrests of people for posting &#8220;intimidating&#8221; things online won&#8217;t cut it.</a></p>
<p>I think we will only see a real change in public attitudes toward police brutality given the following three conditions.</p>
<ol>
<li>The official channels must be <strong>transparent</strong>. It must be clear to everyone that something is being done, and we have to see that officers who abuse their power are appropriately punished. Confidence in the relationship between the state and its citizens is what&#8217;s at stake, and so the solution must be one that publicly restores confidence.</li>
<li>Official channels must be <strong>timely</strong>. The old adage, &#8220;justice delayed is justice denied&#8221; applies here. If citizens get impatient waiting for justice to be applied, they may be tempted to take it into their own hands.</li>
<li>Finally, official recourse against police abuse must be <strong>just</strong>. This is where an official means of recourse against police brutality could actually outdo Internet vigilantes. Internet vigilante justice will always be faster and more transparent than anything official could ever be, but an official channel can enforce punishments fitting to the crime, and can claim legitimacy in a way that vigilantes never can.</li>
</ol>
<p>If a police officer publicly faced criminal charges, rather than just a &#8220;paid leave of absence&#8221; followed by &#8220;counselling&#8221; and this happened in short order after an accusation of abuse, this would do a lot to restore faith in official channels. The people of Montréal might even learn that the legitimate checks and balances are preferable to pursuing vigilante justice through social media.</p>
<img src="http://feeds.feedburner.com/~r/MonPays/~4/6_cxhuFZKyg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bgcarlisle.com/montreal/2013/04/06/internet-vigilante-justice-against-the-police-in-montreal-through-social-media/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bgcarlisle.com/montreal/2013/04/06/internet-vigilante-justice-against-the-police-in-montreal-through-social-media/</feedburner:origLink></item>
		<item>
		<title>Conventional computing vs the corporate cloud vs the “personal” cloud</title>
		<link>http://feedproxy.google.com/~r/MonPays/~3/mJrJoosNifs/</link>
		<comments>http://www.bgcarlisle.com/montreal/2013/04/05/conventional-computing-vs-the-corporate-cloud-vs-the-personal-cloud/#comments</comments>
		<pubDate>Fri, 05 Apr 2013 22:00:15 +0000</pubDate>
		<dc:creator>Benjamin Gregory Carlisle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Cash money]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Yintewang]]></category>

		<guid isPermaLink="false">http://www.bgcarlisle.com/montreal/?p=3432</guid>
		<description><![CDATA[Everyone loves cloud computing. Users love it, tech blogs love it, and tech companies are all trying their hand at it—even ones who have no concept of how to provide a half-decent web service. And yes, I&#8217;m talking about Apple&#8217;s iTools. I mean, dot-Mac. Oh sorry, it&#8217;s called iCloud now. Whatever it&#8217;s called, it&#8217;s still [...]]]></description>
				<content:encoded><![CDATA[<style type="text/css"><!--
td.good { background: #ccffcc; } td.bad { background: #ffcccc; }
--></style>
<p>Everyone loves cloud computing. Users love it, tech blogs love it, and tech companies are all trying their hand at it—even ones who have no concept of how to provide a half-decent web service. And yes, I&#8217;m talking about Apple&#8217;s iTools. I mean, dot-Mac. Oh sorry, it&#8217;s called iCloud now. Whatever it&#8217;s called, it&#8217;s still terrible.</p>
<p>More interesting to me than the corporate offerings of cloud-based services (and in some cases withdrawals of those offerings, e.g. Google Reader) is all the new open-source cloud-based software available for anyone to install on their own web host of choice. To clarify, I&#8217;m talking about pieces of software that are more like WordPress than Microsoft Word—this is software that you install on a web server, and that you access through a browser, not software that you install on your own home computer. I will refer to this type of software as &#8220;personal&#8221; cloud software.</p>
<p>Here are a few examples of different categories of software, and rough equivalents for conventional computing, corporate cloud offerings and &#8220;personal&#8221; cloud alternatives. This is not meant to be a comprehensive list of such services, just a list of examples. Also, the examples given here aren&#8217;t meant to be endorsements of the services either.</p>
<table class="fancy" border="0">
<tbody>
<tr valign="top">
<td></td>
<td>Conventional computing</td>
<td>Corporate cloud</td>
<td>&#8220;Personal&#8221; cloud</td>
</tr>
<tr valign="top">
<td>Document editors</td>
<td>Microsoft Word<br />
<span style="line-height: 19px;">OpenOffice<br />
Pages</span></td>
<td>Google Docs<br />
Microsoft Web Office</td>
<td>OX Documents?<br />
WordPress (sort of?)</td>
</tr>
<tr valign="top">
<td>Email</td>
<td>Outlook<br />
Thunderbird<br />
Mail.app</td>
<td>Gmail<br />
Hotmail<br />
Yahoo Mail</td>
<td>Squirrelmail, etc.</td>
</tr>
<tr valign="top">
<td>Note-keeping</td>
<td>Any text editor, really</td>
<td>Evernote<br />
Notes.app<br />
Google Keep</td>
<td>OwnCloud</td>
</tr>
<tr valign="top">
<td>Photos</td>
<td>iPhoto<br />
Lightroom<br />
Aperture</td>
<td>Flickr<br />
G+ / FB</td>
<td>OpenPhoto</td>
</tr>
<tr valign="top">
<td>File storage</td>
<td>Hard disc</td>
<td>Dropbox<br />
Google Drive</td>
<td>OwnCloud</td>
</tr>
<tr valign="top">
<td>Music</td>
<td>iTunes / iPod</td>
<td>Your favourite music streaming service<br />
Youtube</td>
<td>OwnCloud</td>
</tr>
<tr valign="top">
<td>RSS reader</td>
<td>Newsfire, etc.</td>
<td>Google Reader (hahaha)<br />
Feedly</td>
<td>Selfoss</td>
</tr>
<tr valign="top">
<td>Bitcoin wallets</td>
<td>Wallet on hard disc</td>
<td>Blockchain.info</td>
<td>May not exist?</td>
</tr>
</tbody>
</table>
<p>Usually the debate is framed as being between conventional computing and corporate cloud computing. Sometimes a very nuanced look into these different services will compare different corporate cloud-based services, but rarely does anyone compare the pros and cons of conventional vs corporate cloud vs &#8220;personal&#8221; cloud services. So, as far I see them, the following are the major issues to consider. Depending on your own level of technical expertise, your priorities, budget and the level of importance that you assign to a particular task that you wish to perform, you may weight these differently. For simplicity, I assigned each category a value of +1 (this is good), -1 (this is bad) or 0 (this isn&#8217;t very good or very bad).</p>
<table class="fancy" border="0">
<tbody>
<tr>
<td></td>
<td>Conventional computing</td>
<td>Corporate cloud</td>
<td>&#8220;Personal&#8221; cloud</td>
</tr>
<tr>
<td>Who has access to your files?</td>
<td class="good">Only you (+1)</td>
<td class="bad">You, corporation (-1)</td>
<td>You, web host (0)</td>
</tr>
<tr>
<td>Who owns the software?</td>
<td>You own a licence (0)</td>
<td class="bad">Corporation (-1)</td>
<td class="good">Often open source (+1)</td>
</tr>
<tr>
<td>When do you pay?</td>
<td>Only once—when you buy the software (0)</td>
<td class="good">Never (+1)</td>
<td class="bad">Every month (-1)</td>
</tr>
<tr>
<td>Can a company mine your data for advertising info?</td>
<td class="good">No (+1)</td>
<td class="bad">Yes (-1)</td>
<td class="good">No (+1)</td>
</tr>
<tr>
<td>Are there advertisements?</td>
<td class="good">No (+1)</td>
<td class="bad">Often, yes (-1)</td>
<td class="good">No (+1)</td>
</tr>
<tr>
<td>Accidentally losing files?</td>
<td class="bad">Very possible (-1)</td>
<td class="good">Unlikely (+1)</td>
<td class="good">Unlikely (+1)</td>
</tr>
<tr>
<td>Rolling back to previous versions?</td>
<td>Only if you make backups (0)</td>
<td class="good">Often yes (+1)</td>
<td class="good">Often yes (+1)</td>
</tr>
<tr>
<td>Open source software?</td>
<td>Sometimes (0)</td>
<td class="bad">No (-1)</td>
<td class="good">Almost always (+1)</td>
</tr>
<tr>
<td>Level of technical expertise required to install software?</td>
<td>Medium (0)</td>
<td class="good">Low (+1)</td>
<td class="bad">High (-1)</td>
</tr>
<tr>
<td>Can the whole service be &#8220;Google Reader-ed&#8221;?</td>
<td>No, but development of your app might be cancelled (0)</td>
<td class="bad">Yes (-1)</td>
<td class="good">No (+1)</td>
</tr>
<tr>
<td>Whose computer must be working for you to access your files, etc.?</td>
<td class="good">Only yours (+1)</td>
<td class="bad">The corporation&#8217;s (-1)</td>
<td class="bad">Your web host&#8217;s (-1)</td>
</tr>
<tr>
<td>Can you collaborate with other users?</td>
<td class="bad">Not really (unless you count &#8220;track changes&#8221;) (-1)</td>
<td class="good">Yes (+1)</td>
<td class="good">Yes (+1)</td>
</tr>
<tr>
<td>Accessing / syncing content across multiple devices</td>
<td class="bad">No (-1)</td>
<td class="good">Yes (+1)</td>
<td class="good">Yes (+1)</td>
</tr>
<tr>
<td>Security depends on whom?</td>
<td class="good">You (+1)</td>
<td class="bad">Corporation (-1)</td>
<td class="bad">You + web host + software developer (-1)</td>
</tr>
<tr>
<td>Is your work available when the internet goes down?</td>
<td class="good">Yes (+1)</td>
<td class="bad">No (-1)</td>
<td class="bad">No (-1)</td>
</tr>
</tbody>
</table>
<p>If you aren&#8217;t scared off by MySQL databases or PHP, the &#8220;level of technical expertise&#8221; row might be scored differently, or if you doubt your own ability to keep your files secure, you might think that your work&#8217;s security depending on Google is a good thing. Haggling over the pros and cons aside, it&#8217;s a kind of an interesting result of this exercise that unless you&#8217;re really scared of losing work, or unless multi-user collaboration is very important to you, you might be better off avoiding cloud services entirely.</p>
<p>Another interesting result: if it comes down to a choice between a corporate cloud service and a &#8220;personal&#8221; cloud service, it looks like the &#8220;personal&#8221; cloud is the way to go—it beats the corporate cloud on every category except price and ease of installation. (And also possibly security.)</p>
<p>Edit (2013 Apr 6): I have added a row for &#8220;accessing content across multiple devices.&#8221; (Thanks Morty!)</p>
<img src="http://feeds.feedburner.com/~r/MonPays/~4/mJrJoosNifs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bgcarlisle.com/montreal/2013/04/05/conventional-computing-vs-the-corporate-cloud-vs-the-personal-cloud/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.bgcarlisle.com/montreal/2013/04/05/conventional-computing-vs-the-corporate-cloud-vs-the-personal-cloud/</feedburner:origLink></item>
		<item>
		<title>Recommended reading—”when people are crazy and cause trouble”</title>
		<link>http://feedproxy.google.com/~r/MonPays/~3/ACcKJDYRSUc/</link>
		<comments>http://www.bgcarlisle.com/montreal/2013/03/31/recommended-reading-when-people-are-crazy-and-cause-trouble/#comments</comments>
		<pubDate>Sun, 31 Mar 2013 18:18:46 +0000</pubDate>
		<dc:creator>Benjamin Gregory Carlisle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Family]]></category>
		<category><![CDATA[Reading]]></category>

		<guid isPermaLink="false">http://www.bgcarlisle.com/montreal/?p=3385</guid>
		<description><![CDATA[I have unconsciously been reading books with a common theme recently. I didn&#8217;t mean to do this. I just picked the books that look interesting from the library website. The theme seems to be &#8220;when people are crazy and cause a lot of trouble, often due to the positions of power they hold.&#8221; This may [...]]]></description>
				<content:encoded><![CDATA[<p>I have unconsciously been reading books with a common theme recently. I didn&#8217;t mean to do this. I just picked the books that look interesting from the library website. The theme seems to be &#8220;when people are crazy and cause a lot of trouble, often due to the positions of power they hold.&#8221; This may be auto-biographical, in that my family is still going through something of a crisis with regard to my dad&#8217;s mental illness. All these titles are available for download as ebooks from the Bibliothèque Nationale, if you&#8217;re interested. The following has been my reading list over the past few weeks:</p>
<ul>
<li><em>The End of Wall Street</em> (2010), by Roger Lowenstein</li>
<li><em>The Psychopath Test</em> (2011), by Jon Ronson</li>
<li><em>Harperland</em> (2010), by Lawrence Martin</li>
<li><em>Inside Wikileaks</em> (2011), by Daniel Domscheit-Berg</li>
<li><em>Denialism</em> (2009), by Michael Specter</li>
</ul>
<p>Fair warning about <em>Inside Wikileaks</em>: after reading this book (and partly due to <a title="That's it. I'm putting a code on my phone." href="http://www.cbc.ca/news/canada/toronto/story/2013/02/20/toronto-cellphone-search.html" target="_blank">things like this in the news</a>) I started putting passwords on my phone / computer / hard drives. I know this is irrational. I haven&#8217;t murdered anyone and I don&#8217;t possess any files that the government would find interesting. Paranoia is contagious, I guess.</p>
<p>Come to think of it, in the aftermath of my dad&#8217;s release from the hospital on extremely sketchy terms, even the more mentally stable members of my family noticed that we were thinking the sorts of things that crazy people think: &#8220;Did dad put a bug in the house?&#8221; That sort of thing. That said, it wouldn&#8217;t be the first time dad has tried planting a listening device somewhere.</p>
<p>Anyway, I commend these books to you. They&#8217;re all excellent, short, and relatively light reading.</p>
<img src="http://feeds.feedburner.com/~r/MonPays/~4/ACcKJDYRSUc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bgcarlisle.com/montreal/2013/03/31/recommended-reading-when-people-are-crazy-and-cause-trouble/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bgcarlisle.com/montreal/2013/03/31/recommended-reading-when-people-are-crazy-and-cause-trouble/</feedburner:origLink></item>
		<item>
		<title>Absentee Trudeau and counter for attendance</title>
		<link>http://feedproxy.google.com/~r/MonPays/~3/mL9hStIRG0c/</link>
		<comments>http://www.bgcarlisle.com/montreal/2013/03/23/absentee-trudeau-and-counter-for-attendance/#comments</comments>
		<pubDate>Sat, 23 Mar 2013 19:19:10 +0000</pubDate>
		<dc:creator>Benjamin Gregory Carlisle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Yintewang]]></category>

		<guid isPermaLink="false">http://www.bgcarlisle.com/montreal/?p=3381</guid>
		<description><![CDATA[Since it looks like Trudeau will be the leader of the Liberal Party, I made him a Twitter bot! You can follow him here! Also, I realised that for technical reasons, the Twitter bots don&#8217;t tweet every single time a vote is missed. For example, Twitter doesn&#8217;t allow two tweets of the same thing in [...]]]></description>
				<content:encoded><![CDATA[<p>Since it looks like Trudeau will be the leader of the Liberal Party, I made him a Twitter bot! You can follow him <a title="Absentee Trudeau" href="https://twitter.com/absenteetrudeau" target="_blank">here</a>!</p>
<p>Also, I realised that for technical reasons, the Twitter bots don&#8217;t tweet every single time a vote is missed. For example, Twitter doesn&#8217;t allow two tweets of the same thing in a row. So, I made a <a title="Parliament attendance" href="http://www.bgcarlisle.com/parliament/" target="_blank">simple little counter page</a> that will keep track of the actual numbers of missed votes. The Twitter bots are still fun, though. :)</p>
<img src="http://feeds.feedburner.com/~r/MonPays/~4/mL9hStIRG0c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bgcarlisle.com/montreal/2013/03/23/absentee-trudeau-and-counter-for-attendance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bgcarlisle.com/montreal/2013/03/23/absentee-trudeau-and-counter-for-attendance/</feedburner:origLink></item>
		<item>
		<title>Lettre ouverte à Marjolaine Boutin-Sweet MP</title>
		<link>http://feedproxy.google.com/~r/MonPays/~3/qjLIoxQk0Vg/</link>
		<comments>http://www.bgcarlisle.com/montreal/2013/03/15/lettre-ouverte-a-marjolaine-boutin-sweet-mp/#comments</comments>
		<pubDate>Fri, 15 Mar 2013 22:55:46 +0000</pubDate>
		<dc:creator>Benjamin Gregory Carlisle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Disappointing]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.bgcarlisle.com/montreal/?p=3367</guid>
		<description><![CDATA[(An English version that is more-or-less the same is available here.) À Marjolaine Boutin-Sweet MP, Le 9 février 2013, j’ai créé deux bots Twitter—le premier fait un tweet chaque fois que Stephen Harper manque un vote dans le Chambre des communes (@absenteeharper), et l’autre fait un tweet chaque fois que Thomas Mulcair manque un vote [...]]]></description>
				<content:encoded><![CDATA[<p><a title="On parliamentary accountability: An open letter to Thomas Mulcair and the NDP" href="http://www.bgcarlisle.com/montreal/2013/03/07/on-parliamentary-accountability-an-open-letter-to-thomas-mulcair-and-the-ndp/" target="_blank">(An English version that is more-or-less the same is available here.)</a></p>
<p>À Marjolaine Boutin-Sweet MP,</p>
<p>Le 9 février 2013, j’ai créé deux bots Twitter—le premier fait un tweet chaque fois que Stephen Harper manque un vote dans le Chambre des communes (@absenteeharper), et l’autre fait un tweet chaque fois que Thomas Mulcair manque un vote dans le Chambre des communes (@absenteemulcair). Pendant le mois de février, ils marchaient parfaitement, mais le 7 mars 2013, j’ai reçu un message qui dit, «Votre compte Twitter, @absenteemulcair, est suspendu.»</p>
<p>J’avais peur que Harper demanderait que je ferme mon bot Twitter, mais je n’aurais jamais pensé que ça serait le bot pour Mulcair qui serait fermé.</p>
<p>J’ai coopéré avec Twitter, et j’ai fait tous les changes qu’ils m’ont demandés et malgré les changements je ne peux toujours pas réactiver mon compte.</p>
<p>Je sais que mes bots Twitter ne sont très importants dans le monde de la politique Canadienne, mais quand même, je pense que c’est une expression valide de mes droits dans un pays démocratique comme le Canada. Les tweets publie de l’information publique, obtenue par les chemins publique, et ils sont au sujet d’un représentant du parlement en sa capacité officielle comme représentant du parlement.</p>
<p>Je crois d&#8217;ailleurs que ma démarche est tout à fait légitime.</p>
<p>Ma question est, <i>Qui a demandé que mon bot Twitter soit suspendu?</i> Si c’était un membre de l’NPD, je demande que vous ayez le courage de l’admettre.</p>
<p>Dans l’attente de votre réponse,<br />
Benjamin Carlisle</p>
<img src="http://feeds.feedburner.com/~r/MonPays/~4/qjLIoxQk0Vg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bgcarlisle.com/montreal/2013/03/15/lettre-ouverte-a-marjolaine-boutin-sweet-mp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bgcarlisle.com/montreal/2013/03/15/lettre-ouverte-a-marjolaine-boutin-sweet-mp/</feedburner:origLink></item>
		<item>
		<title>The Kübler-Ross stages of grief and an open-source solution to the death of Google Reader</title>
		<link>http://feedproxy.google.com/~r/MonPays/~3/WIxB00qtUwQ/</link>
		<comments>http://www.bgcarlisle.com/montreal/2013/03/14/the-kubler-ross-stages-of-grief-and-an-open-source-solution-to-the-death-of-google-reader/#comments</comments>
		<pubDate>Fri, 15 Mar 2013 01:27:11 +0000</pubDate>
		<dc:creator>Benjamin Gregory Carlisle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Frustrating]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Yintewang]]></category>

		<guid isPermaLink="false">http://www.bgcarlisle.com/montreal/?p=3362</guid>
		<description><![CDATA[Over the past week, I was actually in the middle of writing a blog post about how I sometimes toy with the idea of switching to Ubuntu, just so that my technological life is not entirely beholden to any particular company&#8217;s corporate whims. I didn&#8217;t quite finish that post before Google very famously killed off its [...]]]></description>
				<content:encoded><![CDATA[<p>Over the past week, I was actually in the middle of writing a blog post about how I sometimes toy with the idea of switching to Ubuntu, just so that my technological life is not entirely beholden to any particular company&#8217;s corporate whims. I didn&#8217;t quite finish that post before Google very famously killed off its well-loved news aggregator, Google Reader. Most users of Google Reader are going through the classic <a title="Stages of grief" href="http://en.wikipedia.org/wiki/K%C3%BCbler-Ross_model" target="_blank">Kübler-Ross stages of grief</a>:</p>
<ol>
<li>We all experienced the initial shock and denial. (&#8220;What? There is no way they&#8217;re shutting Google Reader down.&#8221;)</li>
<li><a title="Best RSS reader?" href="http://gizmodo.com/5990464/whats-the-best-rss-reader-not-named-google-reader?post=58262601" target="_blank">Anger followed.</a></li>
<li><a title="Petition" href="http://www.businessinsider.com/petition-to-save-google-reader-2013-3" target="_blank">Then the bargaining.</a></li>
<li>Next people will get sad about it. They probably won&#8217;t blog sad things about Google Reader, though, out of fear of looking pathetic.</li>
<li>As far as acceptance goes, lots of people are now trying to profit from this, by selling their own alternatives to Google Reader. <a title="Digg reader?" href="http://blog.digg.com/post/45355701332/were-building-a-reader" target="_blank">Digg has decided to make building a new aggregator a priority.</a> Users are largely scrambling to find another reader.</li>
</ol>
<h3>My solution to the Google Reader problem</h3>
<p>I used to use Newsfire before I switched to Google Reader, but in the time that has elapsed since then, they started charging $5 for it. That&#8217;s not a lot, but then I was getting Google Reader for free, so I kept looking. Besides, Newsfire is a newsreader that&#8217;s all stored locally on my computer, and my ideal solution would be cloud-based.</p>
<p>I looked around at the currently-available web offerings, and I couldn&#8217;t find any that were very appealing. I nearly despaired myself, when I found an open-source web-based solution.</p>
<p>This won&#8217;t work for everyone, but it will work for anyone who already has access to a web server with the following capabilities:</p>
<ul>
<li><span style="line-height: 13px;">Apache</span></li>
<li>MySQL</li>
<li>PHP</li>
<li>Cron jobs</li>
</ul>
<p>I installed a copy of the open-source RSS reader, <a title="Selfoss" href="http://selfoss.aditu.de/" target="_blank">selfoss</a> on my web server, and I have been using it instead of Google Reader. I&#8217;m pretty happy with it. I&#8217;ve had to make a few changes already, but it seems like a good solution to the problem. Here are the advantages, as I see it:</p>
<ul>
<li><span style="line-height: 13px;">Web-based, so it will work on all my devices</span></li>
<li>It&#8217;s hosted on my own server, so it will work as long as I keep paying my hosting bill</li>
<li>The software won&#8217;t be &#8220;updated&#8221; (read: altered arbitrarily) unless I want it to be</li>
<li>No one will decide later that there needs to be ads on my news reader</li>
</ul>
<p>Good luck in finding a solution to your Google Reader problem!</p>
<img src="http://feeds.feedburner.com/~r/MonPays/~4/WIxB00qtUwQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.bgcarlisle.com/montreal/2013/03/14/the-kubler-ross-stages-of-grief-and-an-open-source-solution-to-the-death-of-google-reader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.bgcarlisle.com/montreal/2013/03/14/the-kubler-ross-stages-of-grief-and-an-open-source-solution-to-the-death-of-google-reader/</feedburner:origLink></item>
	</channel>
</rss>
