<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Where am I? - Latest Comments</title><link>http://blakeleydotcom.disqus.com/</link><description></description><atom:link href="https://blakeleydotcom.disqus.com/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Wed, 24 Jul 2013 06:46:24 -0000</lastBuildDate><item><title>Re: Testing AWS EC2 Instances for Co-Residence — Where am I? — Michael Blakeley</title><link>http://blakeley.com/blogofile/2011/11/21/testing-aws-ec2-instances-for-co-residence#comment-974475386</link><description>&lt;p&gt;thanks for useful document, please go more into details?&lt;/p&gt;&lt;p&gt;is there anyway to detect VM's are resideing in the same physical machine? and/or same rack?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">reza</dc:creator><pubDate>Wed, 24 Jul 2013 06:46:24 -0000</pubDate></item><item><title>Re: MrCombo v1.1 — Where am I? — Michael Blakeley</title><link>http://blakeley.com/blogofile/2012/01/07/mrcombo-v1.1#comment-805219328</link><description>&lt;p&gt;Glad you like it. If you have a normal list with one item per line, it may be easiest to simply copy and paste it. The Import from Clipboard option is meant to handle text from the Notes application or other text lists. The JSON option is great for backup and restore, or sharing finished lists with others.&lt;/p&gt;&lt;p&gt;But if you want to generate the JSON yourself, that's a bit more technical. Probably you would want to use a general-purpose programming languages such as Perl, Python, or Ruby - just to name a few of them. Almost every modern programming language seems to support JSON these days. You'd probably want to start by exporting one of the sample combos from the app, so you can see what the JSON looks like. The structure is fairly simple and easy to understand, I think.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">mblakele</dc:creator><pubDate>Wed, 20 Feb 2013 00:09:19 -0000</pubDate></item><item><title>Re: MrCombo v1.1 — Where am I? — Michael Blakeley</title><link>http://blakeley.com/blogofile/2012/01/07/mrcombo-v1.1#comment-805111405</link><description>&lt;p&gt;Great App - I have some large lists in existence on my mac that I would like to import.  I assume that .json format is the right way to go.  Any advice for converting a normal list to .json format so I can import?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jsboxon</dc:creator><pubDate>Tue, 19 Feb 2013 22:13:04 -0000</pubDate></item><item><title>Re: XQuery Code Review</title><link>http://blakeley.com/wordpress/archives/518#comment-477559020</link><description>&lt;p&gt;I know this is an older post, but it has great ideas. I would like suggest perhaps replacing $list[$start to $start +$size] with subsequence($list,$start,$size) since $start to $end is an expression that would have to run against each item in $list and you don't have to calculate $end with subsequence. subsequence($list,$start,$size) is basically the same as $list[position() ge $start][position() le $size] &lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ryan Dew</dc:creator><pubDate>Tue, 27 Mar 2012 13:00:42 -0000</pubDate></item><item><title>Re: Directory Assistance — Where am I? — Michael Blakeley</title><link>http://blakeley.com/blogofile/2012/03/19/directory-assistance#comment-474205230</link><description>&lt;p&gt;Excellent article! I hadn't realized the distinction and had assumed that xdmp:directory() (and xdmp:directory-delete(), etc.) required an associated directory properties fragment. It makes perfect sense that it shouldn't and I'm happy it doesn't!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Evan Lenz</dc:creator><pubDate>Fri, 23 Mar 2012 00:20:23 -0000</pubDate></item><item><title>Re: DSH - distributed shell for cluster administration</title><link>http://blakeley.com/wordpress/archives/539#comment-355292630</link><description>&lt;p&gt;This turns out to be less than useful for many tasks. The way DSH calls ssh means that ssh can't allocate a tty, so commands like sudo and vi won't work normally. It's probably possible to hack around this, but I see it as a serious defect in DSH.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michael Blakeley</dc:creator><pubDate>Tue, 10 May 2011 15:46:26 -0000</pubDate></item><item><title>Re: XQuery Code Review</title><link>http://blakeley.com/wordpress/archives/518#comment-355292627</link><description>&lt;p&gt;Good comments, thanks. Replacing count() with xdmp:estimate() requires some care, since it won't always return the same results, but it's an opportunity to watch for. The 'as xs:boolean' strong typing can help with situations where $foo or $bar is the empty sequence (with or without function mapping). That's a dark corner of XQuery, and a good place for bugs to lurk.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michael Blakeley</dc:creator><pubDate>Thu, 17 Feb 2011 11:24:46 -0000</pubDate></item><item><title>Re: XQuery Code Review</title><link>http://blakeley.com/wordpress/archives/518#comment-355292626</link><description>&lt;p&gt;Another idea is to use xdmp:estimate instead of fn:count where possible?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">willmeyes</dc:creator><pubDate>Thu, 17 Feb 2011 07:51:58 -0000</pubDate></item><item><title>Re: XQuery Code Review</title><link>http://blakeley.com/wordpress/archives/518#comment-355292623</link><description>&lt;p&gt;All very good points.&lt;/p&gt;&lt;p&gt;I note that you suggest: &lt;br&gt;let $baz := ($foo eq $bar)&lt;/p&gt;&lt;p&gt;I agree with this, however, would using strong typing &lt;br&gt;(e.g. &lt;br&gt;let $baz as xs:boolean := ($foo eq $bar)&lt;br&gt;or: &lt;br&gt;let $baz as xs:boolean? := ($foo eq $bar)&lt;br&gt;)&lt;br&gt;be better?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">willmeyes</dc:creator><pubDate>Thu, 17 Feb 2011 07:50:18 -0000</pubDate></item><item><title>Re: MacBook Air 2010 (13.3/1.8/4/256)</title><link>http://blakeley.com/wordpress/archives/542#comment-355292634</link><description>&lt;p&gt;I agree - Apple keyboards are a real disappointment. Also - their windowing system is inflexible especially when it comes to sizing.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">jose.espinoza</dc:creator><pubDate>Wed, 19 Jan 2011 14:49:24 -0000</pubDate></item><item><title>Re: Nels Cline Singers on NPR</title><link>http://blakeley.com/wordpress/archives/501#comment-355292620</link><description>&lt;p&gt;Wow. Good call. I hadn’t heard of his work beyond Wilco.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Justin Makeig</dc:creator><pubDate>Wed, 13 Oct 2010 01:58:39 -0000</pubDate></item><item><title>Re: AlbumMixer 1.6</title><link>http://blakeley.com/wordpress/archives/486#comment-355292614</link><description>&lt;p&gt;@iamspencer sorry to hear that you ran into this problem. You probably noticed some similar comments above. So far I am unable to reproduce it, but I will email you and try to gather more information.&lt;/p&gt;&lt;p&gt;There is an update in the works, but unless I can reproduce this problem I can't say that it will be fixed.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michael Blakeley</dc:creator><pubDate>Mon, 11 Oct 2010 21:44:12 -0000</pubDate></item><item><title>Re: AlbumMixer 1.6</title><link>http://blakeley.com/wordpress/archives/486#comment-355292612</link><description>&lt;p&gt;The shuffle by playlist feature doesn't seem to work. It seems to shuffle songs within an album as opposed to selecting albums randomly within a playlist, and then playing the songs in order.&lt;/p&gt;&lt;p&gt;Is there an update coming?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">speener</dc:creator><pubDate>Mon, 11 Oct 2010 16:54:43 -0000</pubDate></item><item><title>Re: AlbumMixer 1.6</title><link>http://blakeley.com/wordpress/archives/486#comment-355292611</link><description>&lt;p&gt;Gaelle, thanks for that extra information. That gives me a new test to try. Meanwhile, I'm glad to hear that you have a workaround.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michael Blakeley</dc:creator><pubDate>Thu, 07 Oct 2010 11:24:33 -0000</pubDate></item><item><title>Re: AlbumMixer 1.6</title><link>http://blakeley.com/wordpress/archives/486#comment-355292609</link><description>&lt;p&gt;Dear Michael - Ok just ignore my last comment, it seems I found the solution. The playlists I used was some I created directly with the itouch. So instead I created smart playlists with criteria on AlbumArtist on Itunes and sync them and now it works perfectly when I play them with AlbumMixer :). &lt;br&gt;Sorry for all the trouble, and thanks for this great app!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">gaelle</dc:creator><pubDate>Thu, 07 Oct 2010 03:40:56 -0000</pubDate></item><item><title>Re: AlbumMixer 1.6</title><link>http://blakeley.com/wordpress/archives/486#comment-355292608</link><description>&lt;p&gt;Dear Michael. Yes I though about that :) The album artists are all set and I tried the "Album Artist” field on or off (in the settings). I also checked that the track numbers and the number of tracks by album are defined as well (just in case it's relevant), but it still shuffles between songs... :( Any idea, because I was quite excited by this app and now I feel like I gave you money for nothing....&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">gaelle</dc:creator><pubDate>Thu, 07 Oct 2010 03:18:36 -0000</pubDate></item><item><title>Re: AlbumMixer 1.6</title><link>http://blakeley.com/wordpress/archives/486#comment-355292606</link><description>&lt;p&gt;@gaelle - sorry to hear about that. It sounds to me like the AlbumArtist problem. Take a look at &lt;a href="http://blakeley.com/wordpress/archives/468#comments" rel="nofollow noopener" target="_blank" title="http://blakeley.com/wordpress/archives/468#comments"&gt;http://blakeley.com/wordpre...&lt;/a&gt; (and the comments above) for some background on this issue.&lt;/p&gt;&lt;p&gt;For playlist filters, AlbumMixer groups tracks by Album Artist and Album Title. With no filter or with genre filters, AlbumMixer relies on iTunes to group the albums correctly (I believe that iTunes relies on Album Title alone).&lt;/p&gt;&lt;p&gt;Blank values for “Album Artist” seem to be the most common problem. With AlbumMixer 1.6 and later, I have added a setting that allows AlbumMixer to ignore the “Album Artist” field if desired. However, that means albums with the same title will be shuffled together. For compilations I think it’s generally better to set an Album Artist for the whole compilation. I usually set this to something like “various”.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michael Blakeley</dc:creator><pubDate>Wed, 06 Oct 2010 12:25:05 -0000</pubDate></item><item><title>Re: AlbumMixer 1.6</title><link>http://blakeley.com/wordpress/archives/486#comment-355292605</link><description>&lt;p&gt;Dear Michael&lt;br&gt;It seems I have the same problem as gsteinb. I just purchased you app and while it seems to work fine with no filter, when I use a playlist filter, it shuffles between all song, as the regular ipod player. I have the latest itouch and my usual playlists are between 5 to 10 albums but I have this problem even with playlist consisting of 2 albums. &lt;br&gt;would really appreciate if you have time to look into it!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">gaelle</dc:creator><pubDate>Wed, 06 Oct 2010 04:29:58 -0000</pubDate></item><item><title>Re: AlbumMixer 1.6</title><link>http://blakeley.com/wordpress/archives/486#comment-355292604</link><description>&lt;p&gt;@gsteinb, I'm sorry to hear about that problem. I haven't seen that myself, so I will contact you directly and see if we can resolve it.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michael Blakeley</dc:creator><pubDate>Wed, 22 Sep 2010 11:37:39 -0000</pubDate></item><item><title>Re: AlbumMixer 1.6</title><link>http://blakeley.com/wordpress/archives/486#comment-355292603</link><description>&lt;p&gt;just purchased this app and it doesn't work at all. it shuffles the albums. then says 'starting ipod player' and the little wheel simply spins. Nothing ever happens. Seems like a complete waste of money.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">gsteinb</dc:creator><pubDate>Wed, 22 Sep 2010 06:07:43 -0000</pubDate></item><item><title>Re: AlbumMixer 1.6</title><link>http://blakeley.com/wordpress/archives/486#comment-355292600</link><description>&lt;p&gt;Problem solved! Turns out that I simply had a sorting problem in iTunes.  For whatever reason, my smart playlists in iTunes were not sorted by album (some were sorted by composer, for example).  Once I went into iTunes and sorted all of my playlists by album, everything worked perfectly.  Thanks again for creating this tremendous app.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ryan.b.opel@gmail.com</dc:creator><pubDate>Mon, 13 Sep 2010 14:43:50 -0000</pubDate></item><item><title>Re: AlbumMixer 1.6</title><link>http://blakeley.com/wordpress/archives/486#comment-355292598</link><description>&lt;p&gt;Thanks, Michael.  Interestingly, your "various" Album Artist fix works beautifully for normal playlists, but not for smart playlists.  I built two playlists in iTunes with the same 3 compilation albums. I set one up as a normal playlist, manually adding the 3 albums into the playlist.  I set the other up as a smart playlist using a rule to add all playlists where the album artist is "various." When I go into AlbumMixer and filter by the normal playlist, it runs perfectly.  But when I filter by the smart playlist, it behaves as described in my initial comment above (randomly picking tracks from the 3 albums).  Any thoughts/fixes?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ryan.b.opel@gmail.com</dc:creator><pubDate>Mon, 13 Sep 2010 00:03:34 -0000</pubDate></item><item><title>Re: AlbumMixer 1.6</title><link>http://blakeley.com/wordpress/archives/486#comment-355292597</link><description>&lt;p&gt;Ryan, thanks for the fulsome praise. The problem with compilation albums sounds like the AlbumArtist issue. Take a look at &lt;a href="http://blakeley.com/wordpress/archives/468#comments" rel="nofollow noopener" target="_blank" title="http://blakeley.com/wordpress/archives/468#comments"&gt;http://blakeley.com/wordpre...&lt;/a&gt; for some background on this issue.&lt;/p&gt;&lt;p&gt;For playlist filters, AlbumMixer groups tracks by Album Artist and Album Title. With no filter or with genre filters, AlbumMixer relies on iTunes to group the albums correctly (I believe that iTunes relies on Album Title alone).&lt;/p&gt;&lt;p&gt;Blank values for “Album Artist” seem to be the most common problem. With 1.6 and later, I have added a setting that allows AlbumMixer to ignore the “Album Artist” field if desired. However, that means albums with the same title will be shuffled together. For compilations I think it's generally better to set an Album Artist for the whole compilation. I usually set this to something like "various".&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michael Blakeley</dc:creator><pubDate>Fri, 10 Sep 2010 00:51:51 -0000</pubDate></item><item><title>Re: AlbumMixer 1.6</title><link>http://blakeley.com/wordpress/archives/486#comment-355292594</link><description>&lt;p&gt;Mike - what a tremendous app.  I can't believe that Apple has omitted the album shuffle feature from iPod touches and iPhones.  I was about to return my iPod touch because I could not shuffle by album.  But you saved me! Thanks so much for doing this.&lt;/p&gt;&lt;p&gt;One quick troubleshooting comment.  It seems that I am having problems with filters and compilation albums with various artists.  I want compilation albums to play sequentially from the first track to the last, just like albums with a single artist.  This works perfectly when I do not apply any filters.  However, whenever I filter by a playlist or genre, the app seems to be starting with a random track in the album (usually not the first track) and then only plays a track or two (never the entire album and never in sequence) before moving to the next random album (which the app plays properly from start to finish - unless it too is a compilation).&lt;/p&gt;&lt;p&gt;Have you encountered this before? Do you have a recommended fix or work-around?&lt;/p&gt;&lt;p&gt;Thanks again for creating this wonderful app.  I am in your debt!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">ryan.b.opel@gmail.com</dc:creator><pubDate>Thu, 09 Sep 2010 11:56:52 -0000</pubDate></item><item><title>Re: AlbumMixer 1.6</title><link>http://blakeley.com/wordpress/archives/486#comment-355292592</link><description>&lt;p&gt;Thanks, Ray. I should be able to get the log from Apple. If not, I will email you.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Michael Blakeley</dc:creator><pubDate>Tue, 31 Aug 2010 11:05:05 -0000</pubDate></item></channel></rss>