<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Intellectual Pirates - 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-90d32015" type="application/json"/><link>http://ipirates.disqus.com/</link><description></description><atom:link href="http://ipirates.disqus.com/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Tue, 03 Jan 2012 05:37:12 -0000</lastBuildDate><item><title>Re: 12 Questions to Ask a Potential Tech Employer</title><link>http://intellectualpirates.net/12-questions-to-ask-a-potential-tech-employer/#comment-399456312</link><description>&lt;p&gt;Very inspirational writing and Jason Fried instructive lecture is really motivating!! I think I'll take web development as a profession of mine. Thanks a lot mate for encouragement.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">mobile DVR</dc:creator><pubDate>Tue, 03 Jan 2012 05:37:12 -0000</pubDate></item><item><title>Re: Contact</title><link>http://intellectualpirates.net/contact/#comment-247534843</link><description>&lt;p&gt;&lt;/p&gt;

&lt;p&gt;Hi, &lt;/p&gt;

&lt;p&gt;I&lt;br&gt;think this site is worth checking out, we put quite a few unique features that&lt;br&gt;most Twitter users will like. &lt;/p&gt;

&lt;p&gt;Downtweet&lt;br&gt;has 4 separate boxes for streaming. You can drag and drop pre-selected&lt;br&gt;categories into each box and watch the live stream. When you 1st get to the site&lt;br&gt;you can see the News category is already in the 1st box. You can also drag and&lt;br&gt;drop categories into existing boxes.&lt;/p&gt;

&lt;p&gt;You&lt;br&gt;can edit each feed too, so if there is someone you want to add into a category&lt;br&gt;that can be done. Each box has a custom search bar so you can search for all&lt;br&gt;tweets relating to specific subjects.&lt;/p&gt;

&lt;p&gt;Also&lt;br&gt;you're able to create a custom DownTweet feed for your site or blog and you can&lt;br&gt;login with a twitter account on the far right and watch your stream live. The 4&lt;br&gt;boxes can collapse into 2 large streams as well.&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;The&lt;br&gt;initial feedback has been good anyone who likes Twitter seems to really like&lt;br&gt;Downtweet. Some people like to just go and type something their interested in&lt;br&gt;and watch the live stream, for example somebody is really into billiards so he&lt;br&gt;typed in 9-ball and found many interesting sites and info related. People also&lt;br&gt;seem to like that they can just come and get info really fast, no waiting, no&lt;br&gt;signup ect..&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;I&lt;br&gt;personally have found downtweet very useful if i want quick info on a person,&lt;br&gt;subject or company.  &lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;Please&lt;br&gt;let me know if you have any questions.&lt;/p&gt;

&lt;p&gt;Thanks!&lt;/p&gt;

&lt;p&gt;DownTweet&lt;br&gt;Team&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.downtweet.com" rel="nofollow"&gt;www.downtweet.com&lt;/a&gt;&lt;br&gt; &lt;/p&gt;

&lt;p&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Downtweet</dc:creator><pubDate>Mon, 11 Jul 2011 02:35:34 -0000</pubDate></item><item><title>Re: Inline Code Assistance for Form Fields with jquery.codeassist</title><link>http://intellectualpirates.net/inline-code-assistance-for-form-fields-with-jquery-codeassist/#comment-93886190</link><description>&lt;p&gt;see the latest now on github for this addition: &lt;a href="https://github.com/atomantic/jquery.codeassist" rel="nofollow"&gt;https://github.com/atomantic/jquery.codeassist&lt;/a&gt;&lt;br&gt;&lt;br&gt;demo: &lt;a href="http://atomantic.github.com/jquery.codeassist" rel="nofollow"&gt;http://atomantic.github.com/jquery.codeassist&lt;/a&gt;/&lt;br&gt;&lt;br&gt;Keep in mind that this is not intended to be an HTML creation helper (there are lots of more advanced libraries for that)--however, if you wanted to support &amp;lt;h1&amp;gt; and &amp;lt;/h1&amp;gt; as helpers you could create a set like:&lt;br&gt;&lt;br&gt;$('textarea').codeassist({&lt;br&gt;	  key:'&amp;lt;',&lt;br&gt;  closeKey:'&amp;gt;',&lt;br&gt;  	list:[&lt;br&gt;    		'h1',&lt;br&gt;    		'p',&lt;br&gt;    		'/h1',&lt;br&gt;    		'/p'&lt;br&gt;  	]&lt;br&gt;});&lt;br&gt;&lt;br&gt;But keep in mind that this isn't smart about it--there's no detection built in to autoclose or detect which html element you intend to close, etc--like I said, there are other libraries for that :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">antic</dc:creator><pubDate>Thu, 04 Nov 2010 13:31:48 -0000</pubDate></item><item><title>Re: Inline Code Assistance for Form Fields with jquery.codeassist</title><link>http://intellectualpirates.net/inline-code-assistance-for-form-fields-with-jquery-codeassist/#comment-93859285</link><description>&lt;p&gt;There are a couple of issues with the current implementation. The keyCode for '&amp;lt;' (at least in FireFox) is showing up as 0, which won't work with the current way of detecting the key that was pressed. The way it's built out now was intended to support a particular simple set--but this could be expanded with a little modification, which I might do today :)&lt;br&gt;&lt;br&gt;Essentially, rather than detecting the keydown/keypress keyCode, you could find the cursor position within the field, examine the last character that was typed explicitly (in combination with e.shiftKey, e.ctrlKey, etc--to support non-visual typed key triggers) and use that instead. That way, it would be much easier to support any key press combination without worrying about keyCode values at all.&lt;br&gt;&lt;br&gt;Additionally, while we are on the topic of cursor position. For the original implementation, it was useful to pop the hint at the cursor position (partially because the click to add is an optional trigger and partially because it just worked for the situation)--but it isn't ideal since the cursor might be totally off-screen if the user is a keyboard jockey. However, grabbing the pixel position of the cursor within a textfield is a pain the royal when you have to consider browser and text-size variation. I explicitly didn't want to pop the helper as a side or bottom attachment to the textarea or input--but I might make that a config option.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">antic</dc:creator><pubDate>Thu, 04 Nov 2010 12:07:21 -0000</pubDate></item><item><title>Re: Inline Code Assistance for Form Fields with jquery.codeassist</title><link>http://intellectualpirates.net/inline-code-assistance-for-form-fields-with-jquery-codeassist/#comment-93199581</link><description>&lt;p&gt;Is it possible to use the key "&amp;lt;" as a bracket?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Bryanlynn</dc:creator><pubDate>Wed, 03 Nov 2010 00:09:21 -0000</pubDate></item></channel></rss>
