<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Stoat - Where? - Latest Comments</title><link xmlns="http://www.w3.org/2005/Atom" rel="http://api.friendfeed.com/2008/03#sup" href="http://disqus.com/sup/all.sup#forumcomments-536186a1" type="application/json"/><link>http://stoatwhere.disqus.com/</link><description>Adventures in Engrish</description><atom:link href="http://stoatwhere.disqus.com/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Wed, 25 Jan 2012 16:44:23 -0000</lastBuildDate><item><title>Re: Object Oriented jQuery Plugins</title><link>http://jamietalbot.com/2010/08/22/object-oriented-jquery-plugins/#comment-420886099</link><description>OK, I think I figured it out.&lt;br&gt;&lt;br&gt;I was declaring my plugin definition like this:&lt;br&gt;MyPluginDefinition = function() {&lt;br&gt;   /* stuff goes here */&lt;br&gt;}&lt;br&gt;&lt;br&gt;So I was ignoring the "element" and "option" variables that you pass in.&lt;br&gt;&lt;br&gt;But if I modify it to actually use what you pass in, then I can pick up the element and use it with the normal jQuery calling convention. For example...&lt;br&gt;&lt;br&gt;MyPluginDefinition = function(element, options) {&lt;br&gt;    function _storeWidth() { var width = $(element).width(); }&lt;br&gt;}</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Benibex</dc:creator><pubDate>Wed, 25 Jan 2012 16:44:23 -0000</pubDate></item><item><title>Re: Object Oriented jQuery Plugins</title><link>http://jamietalbot.com/2010/08/22/object-oriented-jquery-plugins/#comment-420822463</link><description>Hi Jamie! Awesome little plugin you've got here. How do you access the jQuery object that is invoking the plugin?&lt;br&gt;&lt;br&gt;In other words, if I call $(#foo).myplugin().publicMethod() and inside of public method I want to do something to the jQuery object selected by $(#foo), how would I do that?&lt;br&gt;&lt;br&gt;I was thinking it would be, e.g., this.$.width(). However, that doesn't work...</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Benibex</dc:creator><pubDate>Wed, 25 Jan 2012 15:18:59 -0000</pubDate></item><item><title>Re: Configuring OS X Mail For Gmail Without Duplicates</title><link>http://jamietalbot.com/2011/07/26/configuring-os-x-mail-for-gmail-without-duplicates/#comment-406978399</link><description>Hi Jamie&lt;br&gt;Thank you so much for explaining this.  Its been driving me insane for a while.  So now my Mac Mail seems to represent everything i do in Gmail inbox, which is excellent.  The only problem i have now is my imap gmail account  on the iphone.  Everything seems to work fine except for deleting emails on the phone.  I get a "Unable to Move Message" pop up.  It reads "The message could not be moved to the mailbox Trash"&lt;br&gt;Than after about a minute it reappears in the inbox again on my phone?  Any ideas why?  Im presuming it has something to do with the way you have configured the trash in Mail?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Shaz</dc:creator><pubDate>Tue, 10 Jan 2012 07:08:12 -0000</pubDate></item><item><title>Re: Configuring OS X Mail For Gmail Without Duplicates</title><link>http://jamietalbot.com/2011/07/26/configuring-os-x-mail-for-gmail-without-duplicates/#comment-395446673</link><description>Question for all: When I delete a message on my BlackBerry, it deletes in Outlook but doesn't delete from my inbox in gmail.  Additionally, when I delete an email in Outlook, it doesnt delete the message on my Blackberry or gmail account.  Can anyone figure this out?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">David</dc:creator><pubDate>Tue, 27 Dec 2011 21:15:10 -0000</pubDate></item><item><title>Re: Do You Still Want Gengo?</title><link>http://jamietalbot.com/2010/06/30/do-you-still-want-gengo/#comment-384207795</link><description>Yes! We do want Gengo for modern WP. &lt;br&gt;I spent last 3 hours looking for The Plugin and Gengo is my only candidate now. WPML would be the other one, if it didn't want my 80 USD, which is much more than I have.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Cezar "ikari" Pokorski</dc:creator><pubDate>Sun, 11 Dec 2011 15:43:15 -0000</pubDate></item><item><title>Re: Object Oriented jQuery Plugins</title><link>http://jamietalbot.com/2010/08/22/object-oriented-jquery-plugins/#comment-360070174</link><description>Hi Jamie,&lt;br&gt;&lt;br&gt;Thanks again for the great plug-in, works like a charm. On the subject of exposing getters and setters, I added the following code to my plug-in:&lt;br&gt;&lt;br&gt;    //&lt;br&gt;    // EXPOSE PUBLIC MEMBERS RETURN&lt;br&gt;    //&lt;br&gt;    return {&lt;br&gt;      collapseAll       : function() { CollapseAll(); return true; },&lt;br&gt;      expandAll         : function() { ExpandAll(); },&lt;br&gt;      getSelectedItem   : function() { return _selectedItem; },&lt;br&gt;      getSelectedIndex  : function() { return _selectedItem.data("index"); },&lt;br&gt;      getSelectedLevel  : function() { return $(_selectedItem).data("level"); }&lt;br&gt;    }&lt;br&gt;&lt;br&gt;&lt;br&gt;_selectedItem is set each time an item is clicked, and a callback method is executed. I have placed the following code in that callback function:&lt;br&gt;&lt;br&gt;    function AlertItem() {&lt;br&gt;      alert("level: " + grid.getSelectedLevel + "\nindex: " + grid.getSelectedIndex);&lt;br&gt;    }&lt;br&gt;&lt;br&gt;&lt;br&gt;Where "grid" is a global variable set when the plug-in is initialised. The attached screenshot is what appears in the alert dialog after an item has been selected and the callback method has been executed. Interestingly, though, is that both the "collapseAll" and "expandAll" methods work fine.&lt;br&gt;&lt;br&gt;Just the last little piece to this jigsaw, and I'd be grateful if you could provide it.&lt;br&gt;&lt;br&gt;Cheers,&lt;br&gt;&lt;br&gt;&lt;br&gt;Kaine</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Kaine Varley</dc:creator><pubDate>Thu, 10 Nov 2011 10:14:00 -0000</pubDate></item><item><title>Re: Object Oriented jQuery Plugins</title><link>http://jamietalbot.com/2010/08/22/object-oriented-jquery-plugins/#comment-359969682</link><description>Great work. More examples would be brilliant.&lt;br&gt;&lt;br&gt;Kaine</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Kaine Varley</dc:creator><pubDate>Thu, 10 Nov 2011 06:40:38 -0000</pubDate></item><item><title>Re: Configuring OS X Mail For Gmail Without Duplicates</title><link>http://jamietalbot.com/2011/07/26/configuring-os-x-mail-for-gmail-without-duplicates/#comment-339607070</link><description>For automatic syncing, I'm not sure :/  I've not really noticed any discrepancies on my set up, though that might just be lucky.  Took me a minute to remember how I did this, as it's not set up the same way as for mail and calendars, surprisingly.  I did the following: Opened Address Book, then went to Preferences -&amp;gt; Accounts, selected On My Mac and checked and configured "Synchronize with Google".  Can't tell you if that syncs automatically though, I'm afraid.  Let me know if you discover anything!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jamie Talbot</dc:creator><pubDate>Wed, 19 Oct 2011 22:34:53 -0000</pubDate></item><item><title>Re: Configuring OS X Mail For Gmail Without Duplicates</title><link>http://jamietalbot.com/2011/07/26/configuring-os-x-mail-for-gmail-without-duplicates/#comment-339305960</link><description>Hi Jamie Talbot, thanks for reply.&lt;br&gt;Funny thing, those things you said I've already done it and didn't work yesterday. Today, I do nothing and suddenly works like a charm. Although I have a new question: Is there a way to automatically sync the change I do in Lion's Address Book to the Gmail's servers? Y know if I hit the "Sync now" button on the top right menu bar everything syncs, but I would like to setup the syncing time interval or something like that in the Address Book (in Mail and iCal the syncing is automatical).</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rafael</dc:creator><pubDate>Wed, 19 Oct 2011 14:05:11 -0000</pubDate></item><item><title>Re: Configuring OS X Mail For Gmail Without Duplicates</title><link>http://jamietalbot.com/2011/07/26/configuring-os-x-mail-for-gmail-without-duplicates/#comment-338574344</link><description>Hi Rafael,&lt;br&gt;&lt;br&gt;To make sure messages go in GMail's Trash you need to link the folder in Mail.&lt;br&gt;&lt;br&gt;In Mail, on the left hand side under [GMail] you should see your GMail Trash folder.  Click once to select it.  Then from the menu bar, choose Mailbox -&amp;gt; Use This Mailbox For -&amp;gt; Trash.  The folder should disappear from undernearth [GMail] and be replaced by a Trash icon in the top left corner.  You should now find that deleting messages from Mail also deletes them on GMail.&lt;br&gt;&lt;br&gt;Hope this helps!</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jamie Talbot</dc:creator><pubDate>Tue, 18 Oct 2011 18:28:38 -0000</pubDate></item><item><title>Re: Configuring OS X Mail For Gmail Without Duplicates</title><link>http://jamietalbot.com/2011/07/26/configuring-os-x-mail-for-gmail-without-duplicates/#comment-338569647</link><description>I've a problem. When I setup Gmail on Lion's Mail, and want to eliminate messages, these appears on Gmail's web with the "Deleted Messages" label, but not in the "Trash" folder. Ok that's fine, I apply a filter saying that the messages with the "label:deleted-messages" labes have to go to the "Trash" folder and doing that, the messages move to the "Trash" folder (on Gmail web). The problem starts when I delete a new message from Lion's Mail because this new mail appears with the "Deleted Messages" label but it doesn't automatically go to the "Trash" folder (on Gmail's web), therefore Gmail isn't applying the filter to the new mail. I've tried every Lion's Mail and Gmail configurations but they all do the same thing. Am I missing somthing? Is a known Gmail's label issue? Please, help me. Thanks. I'm sorry, english is not my main language.&lt;br&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Rafael</dc:creator><pubDate>Tue, 18 Oct 2011 18:22:19 -0000</pubDate></item><item><title>Re: Configuring OS X Mail For Gmail Without Duplicates</title><link>http://jamietalbot.com/2011/07/26/configuring-os-x-mail-for-gmail-without-duplicates/#comment-336363540</link><description>Thanks for this excellent 'how to'. It's been annoying me for months; and now everything is working as I'd like it.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Steve</dc:creator><pubDate>Sun, 16 Oct 2011 22:59:08 -0000</pubDate></item><item><title>Re: The True Story Of The Hanoi Hilton</title><link>http://jamietalbot.com/2011/03/11/the-true-story-of-the-hanoi-hilton/#comment-332982088</link><description>Thanks for the constructive feedback!  For the flipside of things from later in the trip, feel free to read &lt;a href="http://jamietalbot.com/2011/03/20/what-is-it-good-for/" rel="nofollow"&gt;http://jamietalbot.com/2011/03...&lt;/a&gt; and insult me there too! :)</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jamie Talbot</dc:creator><pubDate>Wed, 12 Oct 2011 17:50:14 -0000</pubDate></item><item><title>Re: The True Story Of The Hanoi Hilton</title><link>http://jamietalbot.com/2011/03/11/the-true-story-of-the-hanoi-hilton/#comment-332633672</link><description>you idiot</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Them</dc:creator><pubDate>Wed, 12 Oct 2011 10:00:54 -0000</pubDate></item><item><title>Re: Configuring OS X Mail For Gmail Without Duplicates</title><link>http://jamietalbot.com/2011/07/26/configuring-os-x-mail-for-gmail-without-duplicates/#comment-315778785</link><description>this is brilliant!&lt;br&gt;i have been driven crazy with multiple messages and your tip is very helpful.&lt;br&gt;one thing I'd add is switching off saving drafts to IMAP, as I was getting tonnes of duplicate messages, i think due to auto save in Lion, making it impossible to find emails amongst the 20 or so duplicates of the same thing!&lt;br&gt;thanks for tip tho.&lt;br&gt;Joe</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Joe Lafferty</dc:creator><pubDate>Tue, 20 Sep 2011 03:42:20 -0000</pubDate></item><item><title>Re: Configuring OS X Mail For Gmail Without Duplicates</title><link>http://jamietalbot.com/2011/07/26/configuring-os-x-mail-for-gmail-without-duplicates/#comment-302701118</link><description>Thank you! You've save my time! :))</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">prajnamu</dc:creator><pubDate>Mon, 05 Sep 2011 00:16:45 -0000</pubDate></item><item><title>Re: Configuring OS X Mail For Gmail Without Duplicates</title><link>http://jamietalbot.com/2011/07/26/configuring-os-x-mail-for-gmail-without-duplicates/#comment-297374267</link><description>Jamie,&lt;br&gt;&lt;br&gt;Thank you for this great post!  I'm very new to Mac, was going to do a One-on-One session specifically on how to sync all my mails properly with Gmail, but your post saves me a trip to the Apple Store!  Yes I agree with you that Label would be awesome since it has come in handy for me in Gmail, but I'm willing to let that go in exchange for cleaner interface and freeing up space for my new Macbook Pro.  &lt;br&gt;&lt;br&gt;VMIposter - thank you for the link to Google's support page, that helped a lot! &lt;br&gt;&lt;br&gt;Peter</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Peter</dc:creator><pubDate>Sun, 28 Aug 2011 18:52:00 -0000</pubDate></item><item><title>Re: United States of Anxiety</title><link>http://jamietalbot.com/2011/07/31/united-states-of-anxiety/#comment-279642835</link><description>I still struggle to get my head around the overwhelming focus on the self and short term gratification that seems to ooze out of so many parts of the culture.  Individuals seem capable of great acts of generosity and community but that always seems to be an added extra on top of a general short term self satisfaction.&lt;br&gt;&lt;br&gt;You've visited a lot of my favourite national parks though... awesome aren't they?   DId you manage to do Angel's Landing?</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ben</dc:creator><pubDate>Sun, 07 Aug 2011 04:23:21 -0000</pubDate></item><item><title>Re: Configuring OS X Mail For Gmail Without Duplicates</title><link>http://jamietalbot.com/2011/07/26/configuring-os-x-mail-for-gmail-without-duplicates/#comment-278068387</link><description>Hi Ross,&lt;br&gt;&lt;br&gt;I actually don't archive at all, ever!  With the amount of email that I get, I always search if the message I'm looking for doesn't appear in my first screen of emails.  So far, all the mail clients I've used have been able to handle up to the 4 years worth of email I have in my inbox without any issues (Gmail of course only displaying the first 10,20,100 messages anyway), so I entirely removed that step :)  It's strange that it works for one account and not the others - the best debugging advice I can give is to exhaustively check all of your account settings in both Gmail and Mail and make sure they match.  Not very helpful I know!  On the other hand, the previous comment does describe a way for Archiving though, which might work for you, though I've not tried it.&lt;br&gt;&lt;br&gt;As for hiding the redundant folders, I turned off "Show in IMAP" in Gmail account settings and they disappeared from the sidebar.  Sent and Trash moved to underneath Mailboxes.  The only one that remains is the top-level [Gmail] one which just won't seem to disappear!  I just 'hide' my Gmail account as it doesn't get in the way too much for me, but the OCD in me would certainly like to get rid of it :)&lt;br&gt;&lt;br&gt;Cheers,&lt;br&gt;&lt;br&gt;Jamie.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jamie Talbot</dc:creator><pubDate>Thu, 04 Aug 2011 22:38:35 -0000</pubDate></item><item><title>Re: Configuring OS X Mail For Gmail Without Duplicates</title><link>http://jamietalbot.com/2011/07/26/configuring-os-x-mail-for-gmail-without-duplicates/#comment-278040478</link><description>Top tips thanks.  I have 3 gmail accounts running through OSX Lion Mail, 1 archives mails as expected (disappears but is available in All Mail if I log into gmail) however the other 2 accounts (all are configured the same as per the first post), automatically create an IMAP folder 'Archive' and place the mail in there.  Not a major problem other than I don't want to clutter my side bar with unnecessary folders).  Any ideas?  How do you archive?&lt;br&gt;&lt;br&gt;Given your neat solution is there any way to hide the (now redundant) Gmail folders at the bottom of the MailBoxes Bar (guess I could just hide it - if Apple had colour coded the accounts in the unified inbox, hiding the MailBox bar would work fine for me but alas...)</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ross Mckenzie</dc:creator><pubDate>Thu, 04 Aug 2011 21:52:46 -0000</pubDate></item><item><title>Re: Automatically Mounting WebDAV in Ubuntu with a FuseDAV Init Script</title><link>http://jamietalbot.com/2010/01/27/automatically-mounting-webdav-in-ubuntu-with-a-fusedav-init-script/#comment-267653709</link><description>Hi,&lt;br&gt;&lt;br&gt;Yeah, it's not perfect.  As I note above, because you type the password on the command line it is plainly visible in many ways - even htop will reveal it.  I'm not aware at the moment of anyway of calling fusedav without specifying a password.  Would be happy to hear otherwise.&lt;br&gt;&lt;br&gt;As for permissions, off the top of my head, you could create a low privilege account and give it ownership of the mount.  Then, instead of using sudo the command in the init script, use su newaccountname -c 'fusedav ...' &lt;br&gt;&lt;br&gt;I haven't tried this however.&lt;br&gt;&lt;br&gt;Hope this helps somewhat.&lt;br&gt;&lt;br&gt;Cheers,&lt;br&gt;&lt;br&gt;Jamie.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jamie Talbot</dc:creator><pubDate>Thu, 28 Jul 2011 09:45:55 -0000</pubDate></item><item><title>Re: Automatically Mounting WebDAV in Ubuntu with a FuseDAV Init Script</title><link>http://jamietalbot.com/2010/01/27/automatically-mounting-webdav-in-ubuntu-with-a-fusedav-init-script/#comment-267578170</link><description>Interesting article. Thanks for the pointers. Seems to work ok. A couple of issues: &lt;br&gt;&lt;br&gt;ps -ef | grep fuse&lt;br&gt;&lt;br&gt;reveals the username and password of the dav share to all users. Not so secure.&lt;br&gt;&lt;br&gt;Also, I'd be interested to know if you have ideas for managing permissions on the local mount so that an ordinary user might be allowed access?&lt;br&gt;&lt;br&gt;Thanks again.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Curious</dc:creator><pubDate>Thu, 28 Jul 2011 08:05:47 -0000</pubDate></item><item><title>Re: Modelling Recurring Events in PHP</title><link>http://jamietalbot.com/2010/02/07/modelling-recurring-events-in-php/#comment-266997653</link><description>Hi Frederik - do you mean checking for a given day of the week?  (Monday, Tuesday, Wednesday etc?)</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jamie Talbot</dc:creator><pubDate>Wed, 27 Jul 2011 19:57:25 -0000</pubDate></item><item><title>Re: Configuring OS X Mail For Gmail Without Duplicates</title><link>http://jamietalbot.com/2011/07/26/configuring-os-x-mail-for-gmail-without-duplicates/#comment-266665932</link><description>Thanks for the post.   One note - I visited the suggested settings page (&lt;a href="https://mail.google.com/support/bin/answer.py?answer=78892#)" rel="nofollow"&gt;https://mail.google.com/suppor...&lt;/a&gt; for IMAP clients when using Gmail/Google Apps and found the tips below.   This is especially useful if you want to hit delete on a message and have it leave the inbox but still remain in All Mail. &lt;br&gt;&lt;br&gt;Apple Mail&lt;br&gt;&lt;br&gt;From the Mail menu, click Preferences &amp;gt; Accounts &amp;gt; Mailbox Behaviors&lt;br&gt;&lt;br&gt;Drafts: Store draft messages on the server &amp;gt; do NOT check&lt;br&gt;Sent: Store sent messages on the server &amp;gt; do NOT check&lt;br&gt;Junk: Store junk messages on the server &amp;gt; checked&lt;br&gt;Delete junk messages when &amp;gt; Never&lt;br&gt;Trash:Move deleted messages to the Trash mailbox &amp;gt; do NOT check&lt;br&gt;Store deleted messages on the server &amp;gt; do NOT check&lt;br&gt;&lt;br&gt;(formatted with newlines for clarity - JT)</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">VMIposter</dc:creator><pubDate>Wed, 27 Jul 2011 14:52:27 -0000</pubDate></item><item><title>Re: Modelling Recurring Events in PHP</title><link>http://jamietalbot.com/2010/02/07/modelling-recurring-events-in-php/#comment-263774713</link><description>Nice post.&lt;br&gt;Is there a possibility you could share on how i could do recurring events with the check for day.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Frederik Heyninck</dc:creator><pubDate>Mon, 25 Jul 2011 16:10:51 -0000</pubDate></item></channel></rss>
