<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>mispy.me - Latest Comments</title><link>http://mispy.disqus.com/</link><description></description><atom:link href="https://mispy.disqus.com/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Sun, 21 Dec 2014 17:39:11 -0000</lastBuildDate><item><title>Re: Looking for work</title><link>https://mispy.me/looking-for-work/#comment-1753398469</link><description>&lt;p&gt;Ooh comments. I have nothing useful to say. Sorry. *walks away randomly*&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">闇狼</dc:creator><pubDate>Sun, 21 Dec 2014 17:39:11 -0000</pubDate></item><item><title>Re: Modding provinces.bmp in Crusader Kings II</title><link>https://mispy.me/ck2-province-modding/#comment-1735884846</link><description>&lt;p&gt;Hey, totally off topic, but you should update your Pokemon syn. tool. It's really good but we're well into Gen VI now a days.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ghuest</dc:creator><pubDate>Wed, 10 Dec 2014 17:42:32 -0000</pubDate></item><item><title>Re: The mysterious nature of bots</title><link>https://mispy.me/2014/05/the-mysterious-nature-of-bots/#comment-1370677745</link><description>&lt;p&gt;This is a great point. Any successful bot relies on finessing certain aspects of interaction or language use in general (aka cheating). Twitter makes it much easier to do that.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">johndburger</dc:creator><pubDate>Mon, 05 May 2014 14:13:01 -0000</pubDate></item><item><title>Re: The mysterious nature of bots</title><link>https://mispy.me/2014/05/the-mysterious-nature-of-bots/#comment-1368062305</link><description>&lt;p&gt;As much as I appreciate this story and think the interactions are often hilarious, we have to acknowledge that Twitter's great 140-character limitation commonly breaks human interaction down and makes it very bot-like.  Part of the success of these simple programs is due to the limited environment they're interacting with.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">kaelef</dc:creator><pubDate>Sat, 03 May 2014 11:55:24 -0000</pubDate></item><item><title>Re: Beldum Labs</title><link>https://mispy.me/2011/04/beldum-labs/#comment-854355093</link><description>&lt;p&gt;First i want to thank you for putting your effort in creating this awesome tool for the use of the pokémon community. I pass this page to all of my friends so they can make new teams with better synergy instead of wasting time thinking way too much on which partners to choose for a team. Even so i think this could be improved so much more. I would love to see this experiment of yours turning into a program you could download and maybe do this for the whole team in a similar way the marriland´s team builder works but better. Anyways thanks a lot again for this incredible tool, its been really useful.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Wyndamn</dc:creator><pubDate>Sat, 06 Apr 2013 11:07:23 -0000</pubDate></item><item><title>Re: ~mispy</title><link>https://mispy.me/2012/07/word/#comment-586042704</link><description>&lt;p&gt;Here, then: &lt;a href="http://pastebin.com/FXiTNKPY" rel="nofollow noopener" target="_blank" title="http://pastebin.com/FXiTNKPY"&gt;http://pastebin.com/FXiTNKPY&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Quick C program I just wrote that does it better. I won't paste it here and take up half the page, you may copy it here for redundancy if you wish. Just give it a file (don't pipe stuff into it).&lt;/p&gt;&lt;p&gt;Benchmarks:&lt;/p&gt;&lt;p&gt;For the long-ass command:&lt;/p&gt;&lt;p&gt;( for i in {1..100}; do; echo [...] | bc | sed 's/-//g' | xargs -I % head -n %  | tail -n 1 &amp;gt;/dev/null; done;)  1.84s user 0.86s system 96% cpu 2.793 total &lt;/p&gt;&lt;p&gt;For the C program:&lt;br&gt;( for i in {1..100}; do; ./main /usr/share/dict/words &amp;gt; /dev/null; done; )  0.69s user 0.21s system 95% cpu 0.940 total&lt;/p&gt;&lt;p&gt;3 times faster, less disk access. There's a time when its saner to just write a quick C program than have a chain of program read the same file over and over and parse things in awkward ways.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 12 Jul 2012 17:24:47 -0000</pubDate></item><item><title>Re: ~mispy</title><link>https://mispy.me/2012/07/word/#comment-584729080</link><description>&lt;p&gt;Afraid not! As I understand it, the output of $RANDOM is constrained to the range 0 - 32767, whereas /usr/share/dict/words contains (on my system) 98569 lines. You'll only get about a third of the possible words that way.&lt;/p&gt;&lt;p&gt;The latter solution is pretty and functional, but not performant. Compare:&lt;/p&gt;&lt;p&gt;&lt;code&gt;[~]$ time sort -R &amp;lt; /usr/share/dict/words | head -n 1 &lt;br&gt;rheas&lt;br&gt;sort -R &amp;lt; /usr/share/dict/words  1.45s user 0.01s system 99% cpu 1.461 total&lt;br&gt;head -n 1  0.00s user 0.00s system 0% cpu 1.460 total&lt;/code&gt;&lt;/p&gt;&lt;p&gt;&lt;code&gt;[~]$ time echo `cat /dev/urandom | od -N4 -An -i `' % '`wc -l &amp;lt; /usr/share/dict/words` | bc | sed 's/-//g' | xargs -I % head -n % /usr/share/dict/words | tail -n 1&lt;br&gt;plastering&lt;br&gt;echo `cat /dev/urandom | od -N4 -An -i `' % '`wc -l &amp;lt; /usr/share/dict/words`  0.00s user 0.00s system 0% cpu 0.005 total&lt;br&gt;bc  0.00s user 0.00s system 0% cpu 0.005 total&lt;br&gt;sed 's/-//g'  0.00s user 0.00s system 0% cpu 0.004 total&lt;br&gt;xargs -I % head -n % /usr/share/dict/words  0.00s user 0.00s system 33% cpu 0.012 total&lt;br&gt;tail -n 1  0.00s user 0.00s system 37% cpu 0.011 total&lt;/code&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">mispy</dc:creator><pubDate>Wed, 11 Jul 2012 20:35:43 -0000</pubDate></item><item><title>Re: ~mispy</title><link>https://mispy.me/2012/07/word/#comment-582966734</link><description>&lt;p&gt;You don't need to use urandom here, just use $RANDOM:&lt;/p&gt;&lt;p&gt;echo "$RANDOM % `wc -l &amp;lt; /usr/share/dict/words`" | bc | xargs -I % head -n % /usr/share/dict/words | tail -n 1&lt;/p&gt;&lt;p&gt;This will also work:&lt;/p&gt;&lt;p&gt;sort -R &amp;lt; /usr/share/dict/words | head -n 1 &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Tue, 10 Jul 2012 04:46:10 -0000</pubDate></item><item><title>Re: This is what happens when people ignore me!</title><link>https://mispy.me/2011/10/this-is-what-happens-when-people-ignore-me/#comment-577797201</link><description>&lt;p&gt;Fantastic!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">sa</dc:creator><pubDate>Fri, 06 Jul 2012 01:02:49 -0000</pubDate></item><item><title>Re: The DHS reads ~2% of all your tweets</title><link>https://mispy.me/2012/06/the-dhs-reads-2-percent-of-all-your-tweets/#comment-554878082</link><description>&lt;p&gt;Certainly. If anything, this post is an argument for exactly that. Your ability to be "hidden in the crowd" diminishes as mass data analysis grows more widespread and sophisticated.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">mispy</dc:creator><pubDate>Mon, 11 Jun 2012 21:56:31 -0000</pubDate></item><item><title>Re: The DHS reads ~2% of all your tweets</title><link>https://mispy.me/2012/06/the-dhs-reads-2-percent-of-all-your-tweets/#comment-554787734</link><description>&lt;p&gt;Your public tweets are getting read by agencies that specialize in data collection / intelligence and predictive analysis? Stop the presses.&lt;/p&gt;&lt;p&gt;If you don't want your data to become part of the ethereal entity that  is the public internet, then don't post it publicly. Once you do it  might as well no longer belong to you.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Mon, 11 Jun 2012 19:12:02 -0000</pubDate></item><item><title>Re: Culture shock</title><link>https://mispy.me/2011/04/culture-shock/#comment-518849513</link><description>&lt;p&gt;Okay you can keep this one, it made me laugh much too hard.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">mispy</dc:creator><pubDate>Sun, 30 Oct 2011 00:13:40 -0000</pubDate></item><item><title>Re: Culture shock</title><link>https://mispy.me/2011/04/culture-shock/#comment-518569628</link><description>&lt;p&gt;What's it take to become a sublime epxoudner of prose like yourself?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Danice</dc:creator><pubDate>Sat, 29 Oct 2011 23:38:17 -0000</pubDate></item><item><title>Re: Minecraft: Collage World</title><link>https://mispy.me/2011/08/minecraft-collage-world/#comment-518849504</link><description>&lt;p&gt;Right you are, fixed!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">mispy</dc:creator><pubDate>Wed, 26 Oct 2011 18:25:01 -0000</pubDate></item><item><title>Re: Minecraft: Collage World</title><link>https://mispy.me/2011/08/minecraft-collage-world/#comment-518569599</link><description>&lt;p&gt;Looks like the converter is moved: &lt;a href="https://github.com/anneli/sch2bob" rel="nofollow noopener" target="_blank" title="https://github.com/anneli/sch2bob"&gt;https://github.com/anneli/s...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Person</dc:creator><pubDate>Wed, 26 Oct 2011 11:31:35 -0000</pubDate></item><item><title>Re: Empty sessions in Rails 3 when using jQuery AJAX requests</title><link>https://mispy.me/2011/04/empty-sessions-in-rails-3-when-using-jquery-ajax-requests/#comment-518569657</link><description>&lt;p&gt;You saved my day Thank!!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">joselo</dc:creator><pubDate>Mon, 10 Oct 2011 02:34:49 -0000</pubDate></item><item><title>Re: Empty sessions in Rails 3 when using jQuery AJAX requests</title><link>https://mispy.me/2011/04/empty-sessions-in-rails-3-when-using-jquery-ajax-requests/#comment-518569658</link><description>&lt;p&gt;Thanks! It solved my problem too! XD&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">José Chávez</dc:creator><pubDate>Thu, 22 Sep 2011 20:51:48 -0000</pubDate></item><item><title>Re: Empty sessions in Rails 3 when using jQuery AJAX requests</title><link>https://mispy.me/2011/04/empty-sessions-in-rails-3-when-using-jquery-ajax-requests/#comment-518569656</link><description>&lt;p&gt;Thanks! It solved my problem too :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">aka</dc:creator><pubDate>Mon, 15 Aug 2011 05:16:46 -0000</pubDate></item><item><title>Re: Quixotic symbolism of Lisps</title><link>https://mispy.me/2011/07/quixotic-symbolism-of-lisps/#comment-518849505</link><description>&lt;p&gt;I see! Fixed the wording. I'm still getting the hang of aligning my thoughts correctly with the layers of homoiconicity.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">mispy</dc:creator><pubDate>Fri, 22 Jul 2011 19:37:00 -0000</pubDate></item><item><title>Re: Quixotic symbolism of Lisps</title><link>https://mispy.me/2011/07/quixotic-symbolism-of-lisps/#comment-518569594</link><description>&lt;p&gt;The quote operation does &lt;i&gt;nothing&lt;/i&gt; to the object that is quoted.  The symbol has already been upcased by the reader.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Joe Marshall</dc:creator><pubDate>Thu, 21 Jul 2011 22:23:55 -0000</pubDate></item><item><title>Re: Displaying a ProgressDialog while a WebView is loading content</title><link>https://mispy.me/2011/05/displaying-a-progressdialog-while-a-webview-is-loading-content/#comment-518569620</link><description>&lt;p&gt;You're welcome! ^_^&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">mispy</dc:creator><pubDate>Thu, 14 Jul 2011 03:15:44 -0000</pubDate></item><item><title>Re: Empty sessions in Rails 3 when using jQuery AJAX requests</title><link>https://mispy.me/2011/04/empty-sessions-in-rails-3-when-using-jquery-ajax-requests/#comment-518569659</link><description>&lt;p&gt;Yay! :D I hope your website turns out awesomely.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">mispy</dc:creator><pubDate>Thu, 14 Jul 2011 03:15:22 -0000</pubDate></item><item><title>Re: Displaying a ProgressDialog while a WebView is loading content</title><link>https://mispy.me/2011/05/displaying-a-progressdialog-while-a-webview-is-loading-content/#comment-518569613</link><description>&lt;p&gt;Thank you thank you thank you! Exactly what I was looking for.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Kyle</dc:creator><pubDate>Thu, 14 Jul 2011 02:32:23 -0000</pubDate></item><item><title>Re: Empty sessions in Rails 3 when using jQuery AJAX requests</title><link>https://mispy.me/2011/04/empty-sessions-in-rails-3-when-using-jquery-ajax-requests/#comment-518569653</link><description>&lt;p&gt;Solved my problem, thank you for doing this.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Matthew Newman</dc:creator><pubDate>Wed, 13 Jul 2011 18:01:45 -0000</pubDate></item><item><title>Re: Beldum Labs</title><link>https://mispy.me/2011/04/beldum-labs/#comment-518569602</link><description>&lt;p&gt;Your synergy pokédex is quite useful.&lt;br&gt;Thanks for this. Can you contact me? I have a little suggestion ^^&lt;br&gt;My email is in the comment. Thanks mispy ! It's really useful for create teams !&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Tue, 21 Jun 2011 23:29:11 -0000</pubDate></item></channel></rss>