<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>the Fresh! &#187; Misc</title>
	<atom:link href="http://www.flensed.com/fresh/category/misc/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flensed.com/fresh</link>
	<description>the latest from flensed</description>
	<lastBuildDate>Tue, 22 Sep 2009 21:35:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SXSWi 2010 Voting is on! Votes needed!</title>
		<link>http://www.flensed.com/fresh/2009/08/sxswi-2010-voting-is-on-votes-needed/</link>
		<comments>http://www.flensed.com/fresh/2009/08/sxswi-2010-voting-is-on-votes-needed/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 13:17:23 +0000</pubDate>
		<dc:creator>getify</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[RIA]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[panel]]></category>
		<category><![CDATA[sxsw]]></category>
		<category><![CDATA[talk]]></category>
		<category><![CDATA[ui]]></category>

		<guid isPermaLink="false">http://www.flensed.com/fresh/?p=167</guid>
		<description><![CDATA[
	 Go vote for &#8220;Dude, where&#8217;s my UI architecture?&#8221; for SXSWi 2010! That&#8217;s right, your&#8217;s truly is hoping to speak about improving UI architecture for the SXSWi 2010 event.
This is a topic I&#8217;m very passionate about and I hope I can count on your support to help the talk get picked for the event. There&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>
	<a title="Vote for 'Dude, where's my UI architecture?'" href="http://panelpicker.sxsw.com/ideas/view/4905" target="_blank"><img style="float:left;" src="http://sxsw.com/files/SXSWPanelPicker-lg.png" alt="Vote for 'Dude, where's my UI architecture?'" border="0" hspace="3" /> Go vote for &#8220;Dude, where&#8217;s my UI architecture?&#8221; for SXSWi 2010!</a> That&#8217;s right, your&#8217;s truly is hoping to speak about improving UI architecture for the SXSWi 2010 event.</p>
<p>This is a topic I&#8217;m very passionate about and I hope I can count on your support to help the talk get picked for the event. There&#8217;s over 3000 submissions for only 300 spots, so every vote counts!
</p>
<p style="clear:left;">
Also, there&#8217;s lots of other great technical topics to vote on. I&#8217;ve started <a href="http://www.linkedin.com/groupAnswers?viewQuestionAndAnswers=&#038;gid=1913658&#038;discussionID=6133246">a list of a few I&#8217;m stoked about on this linked-in thread</a>, so if you&#8217;re feeling generous, lend some votes their way as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flensed.com/fresh/2009/08/sxswi-2010-voting-is-on-votes-needed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some Javascript/Ajax projects: &#8220;LABjs&#8221; and &#8220;mpAjax&#8221;</title>
		<link>http://www.flensed.com/fresh/2009/06/some-javascriptajax-projects-labjs-and-mpajax/</link>
		<comments>http://www.flensed.com/fresh/2009/06/some-javascriptajax-projects-labjs-and-mpajax/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 20:15:57 +0000</pubDate>
		<dc:creator>getify</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[RIA]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[XHR]]></category>

		<guid isPermaLink="false">http://www.flensed.com/fresh/?p=144</guid>
		<description><![CDATA[I wanted to slightly diverge from flensed project discussions for this post to talk briefly about two other projects I&#8217;ve recently released. The reason for talking about them here is that one or both of them may find some cooperative use or even code sharing with flXHR/flensed in the next version releases, so there is [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to slightly diverge from flensed project discussions for this post to talk briefly about two other projects I&#8217;ve recently released. The reason for talking about them here is that one or both of them may find some cooperative use or even code sharing with flXHR/flensed in the next version releases, so there is a symbiotic relationship between them.</p>
<p>The first project is called LABjs (Loading And Blocking JavaScript). Put simply, this is a little tool (2.5k compressed) that lets you load Javascript assets dynamically, in parallel, but still allows you to define &#8220;blocking&#8221;, which is to wait for one or a set of scripts to load before executing other code, such as perhaps loading more scripts.</p>
<p>The main purpose of LABjs is to load scripts dynamically, in parallel, instead of old-school &lt;script&gt; tags which only load one at a time, and block everything else on the page. This significantly speeds up your page load. At the same time, you do sometimes still need to block and wait for some script to get loaded before doing other things. So, you get both in one simple loader API.</p>
<p>For instance, say you&#8217;re on a page that needs jQuery, but also needs a number of jQuery plugins. You need to load jQuery core itself, blocking on that download, and the ideally load all the other plugin files afterwards, in parallel, to get the page rendered and functional as quickly as possible. LABjs makes this type of functionality drop-dead simple.</p>
<p>So, this old style of &lt;script&gt; tags:</p>
<pre><code>&lt;script src="jquery.js"&gt;&lt;/script&gt;
&lt;script src="jquery.myplugin1.js"&gt;&lt;/script&gt;
&lt;script src="jquery.myplugin2.js"&gt;&lt;/script&gt;
&lt;script src="jquery.myplugin3.js"&gt;&lt;/script&gt;</code></pre>
<p>Becomes:</p>
<pre><code>$LAB
.script("jquery.js")
.block()
.script("jquery.myplugin1.js")
.script("jquery.myplugin2.js")
.script("jquery.myplugin3.js")
.block(function(){
    // init myplugin1, 2, and 3
});</code></pre>
<p>LABjs is now in v0.7, and is demo&#8217;d and hosted on: <a href="http://labjs.com" target="_blank">http://labjs.com</a>.</p>
<p>As I said, this type of loading logic is powerful and clean, and will probably replace the code loading logic in flensed/CheckPlayer/flXHR projects for their next releases.</p>
<p>Joe McCann wrote a great <a href="http://www.subprint.com/blog/parallel-script-loading-with-labjs" target="_blank">blog post describing and showing off the LABjs tool</a>.</p>
<p>Next up, I&#8217;m gonna talk about mpAjax, which allows for easy parsing of multi-part Ajax responses.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flensed.com/fresh/2009/06/some-javascriptajax-projects-labjs-and-mpajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twikini &#8211; a great twitter tool for Windows Mobile</title>
		<link>http://www.flensed.com/fresh/2009/05/twikini-a-great-twitter-tool-for-windows-mobile/</link>
		<comments>http://www.flensed.com/fresh/2009/05/twikini-a-great-twitter-tool-for-windows-mobile/#comments</comments>
		<pubDate>Sun, 24 May 2009 20:40:55 +0000</pubDate>
		<dc:creator>getify</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.flensed.com/fresh/?p=137</guid>
		<description><![CDATA[Allow me to take a quick break from writing about cross-domain Ajax, flXHR, and other such geeky things. I will be brief in mentioning an application I just ran across and my suggestion you take a look at it.
I recently switched phones to the Samsung Propel Pro. This is a big switch for me, as [...]]]></description>
			<content:encoded><![CDATA[<p>Allow me to take a quick break from writing about cross-domain Ajax, flXHR, and other such geeky things. I will be brief in mentioning an application I just ran across and my suggestion you take a look at it.</p>
<p>I recently switched phones to the <a href="http://www.samsung.com/us/consumer/detail/detail.do?group=mobilephones&#038;type=mobilephones&#038;subtype=att&#038;model_cd=SGH-I627MAAATT">Samsung Propel Pro</a>. This is a big switch for me, as I&#8217;ve been on the Treo line of phones, with PalmOS, for a very long time (since before most of you knew what a smartphone was). </p>
<p>Actually, I&#8217;m really just biding my time until the <a href="http://www.palm.com/us/products/phones/pre/">Palm Pre</a> is released in <a href="http://www.elite-electronix.com/palm-pre-unlocked">GSM/unlocked form</a> (non-Sprint), hopefully sometime early next year. Mobile phone vendors, if you are listening, the better future for mobile app development is in Javascript/HTML/CSS stacks, not these proprietary hinderances we&#8217;ve been forced to endure for so long.</p>
<p>For now, naturally, I have to replace all my old mobile applications with ones that will work for the Windows Mobile 6.1 Standard OS that Propel Pro runs. No small task as it turns out.</p>
<p>The real trick is that Propel Pro doesn&#8217;t run &#8220;Classic&#8221; or &#8220;Professional&#8221;, because it doesn&#8217;t have a touchscreen. This causes many problems with a lot of WinMob apps, because they are all written assuming a touch screen, and so those apps fail for those of us unfortunate (or fortunate, depending on how you look at it!) to not have touchscreens on our smart phones.</p>
<p>In any case, as my quest continues to find mobile apps that <b>will</b> work on my touchscreen-less phone, I finally found a twitter client that works well for me. <a href="http://www.trinketsoftware.com/Twikini">@Twikini</a>. Strange name, but a solid app none-the-less.</p>
<p><a href="http://www.trinketsoftware.com/Twikini/Themes.aspx"><img src="http://www.trinketsoftware.com/Images/Twikini_Theme_Windows.png" border="0" alt="Twikini screenshot" /></a></p>
<p>I&#8217;m particularly impressed by how usable the app is despite its &#8220;burden&#8221; of being without a touch-screen. On any tweet update, you can move the directional control left to do a &#8220;@reply&#8221; to the author, and right will give you a &#8220;RT @&#8221; retweet with the text already quoted. These two simple tasks have become so ingrained into DNA of what tweet&#8217;ing is about, it&#8217;s nice to see that they didn&#8217;t have to be buried in some menu option or rely on some fancy finger guesture to get at. They are quite literally at your fingertip, and I find that smart and well executed.</p>
<p>And the best part? The app <a href="http://www.trinketsoftware.com/Twikini/Purchase.aspx">costs just $4.95</a>. What could be even better than that?  It&#8217;s actually <a href="http://www.trinketsoftware.com/Twikini/purchase2.aspx">free</a>!  That&#8217;s right, all you have to do is write a simple blog post, like this one, and they give it to you for free. Genius, huh!?</p>
<p>Check out <a href="http://twitter.com/twikini">Twikini on twitter<a/> and by all means, if you have a Windows Mobile 6.1 <b>STANDARD</b> phone like I do, check out <a href="http://www.trinketsoftware.com/Twikini">the app</a> for yourself!</p>
<p>PS. Though this app unfortunately doesn&#8217;t do so (maybe they will, I can only hope!), if you are writing any kind of mobile app, you should be using <a href="http://phonegap.com">PhoneGap</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flensed.com/fresh/2009/05/twikini-a-great-twitter-tool-for-windows-mobile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop Time Warner from their money-hungry bandwidth limiting conquests!</title>
		<link>http://www.flensed.com/fresh/2009/04/stop-timewarner-from-their-money-hungry-bandwidth-limiting-conquests/</link>
		<comments>http://www.flensed.com/fresh/2009/04/stop-timewarner-from-their-money-hungry-bandwidth-limiting-conquests/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 17:10:11 +0000</pubDate>
		<dc:creator>getify</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[bandwidth]]></category>
		<category><![CDATA[cable]]></category>
		<category><![CDATA[isp]]></category>
		<category><![CDATA[monopoly]]></category>
		<category><![CDATA[time warner]]></category>

		<guid isPermaLink="false">http://www.flensed.com/fresh/?p=116</guid>
		<description><![CDATA[[Update] Time Warner has agreed to curb their plans to cap internet usage, for the time being.
&#8220;It is clear from the public response over the last two weeks that there is a great deal of misunderstanding about our plans to roll out additional tests on consumption based billing,&#8221; said Time Warner Cable chief executive Glenn [...]]]></description>
			<content:encoded><![CDATA[<p>[Update] Time Warner has <a href="http://voices.washingtonpost.com/posttech/2009/04/time_warner_stops_pay-as-use_i.html">agreed to curb their plans to cap internet usage</a>, for the time being.</p>
<blockquote><p>&#8220;It is clear from the public response over the last two weeks that there is a great deal of misunderstanding about our plans to roll out additional tests on consumption based billing,&#8221; said Time Warner Cable chief executive Glenn Britt. &#8220;As a result, we will not proceed with implementation of additional tests until further consultation with our customers and other interested parties, ensuring that community needs are being met.&#8221;</p></blockquote>
<p>Unfortunately, Time Warner is being a bit disingenuous, with statements like &#8220;until further consultation with our customers&#8221;. In other words, they&#8217;re waiting until they can find a better way to convince us that it&#8217;s the best way. At least we get a &#8220;gracious&#8221; reprieve while we go back to &#8220;school&#8221; and &#8220;learn&#8221; what fair internet is all about.</p>
<p>I also want to give a big congratulations to <a href="http://www.freepress.net/">Free Press</a>, <a href="http://www.savetheinternet.com/blog/2009/04/16/internet-users-roar-cable-giant-blinks/">Save The Internet.com</a>, and <a href="http://www.stopthecap.com/">Stop The Cap.com</a>, as well as many others, for organizing the uprising which caused Time Warner to back down. </p>
<p>But more importantly, the thanks belongs to you, the internet user, who along with 16,000 others, sent letters to Congress in the span of few short days to express our collective outrage. Our internet is only our internet if we fight to keep it ours.</p>
<hr />
Here&#8217;s an excerpt from a letter I just wrote to my congressman. This represents my feelings on <a href="http://www.pcworld.com/article/162928/time_warner_changes_but_keeps_bandwidth_caps.html">Time Warner&#8217;s recent announcement</a> that they will being piloting/testing a program that will <a href="http://www.businessinsider.com/time-warner-cables-metered-internet-pricing-15-150-range-2009-4">cap bandwidth usage of cable customers</a> in several metro areas, including where I live (Austin, TX). </p>
<p>My protest is that I will be switching from their internet service, soon, if they do not recant. I will not participate in their desperate grabs at survival after years of money-hungry, poor mismanagement. They are a monopoly in all ways (except in technical legal terms), and this is what they do when they go unchecked. Watch out, America. This is only the beginning of bad things to come. Unless we stand up and fight. Contact your congressman and do the same, even if you aren&#8217;t in one of the targetted areas yet. Otherwise, you will probably be next on the hit list.</p>
<blockquote><p>It is unbelievable to me that Time Warner (or any other provider) is being allowed to do this. </p>
<p>Firstly, they basically have a de-facto monopoly because they are the only ones with cable lines to almost all major metropolitan areas around here (COX being the exception in some of the suburbs). Lots of other cable &#8220;providers&#8221; (like Grande, for instance) are out there, but they all lease cable bandwidth from TW or COX. This means that if TW starts doing this, when their contracts are up with those re-sellers, there&#8217;s a much higher chance that those companies will have to follow suit. So the evenutal outcome is that TW is going to use their &#8220;monopoly&#8221; status to force us all into this, or to other providers.</p>
<p>And not only is it unfair and monopolistic what they are doing, but the way in which they are doing it is sheer madness. The bandwidth caps they have chosen are so incredibly low it just simply boggles the mind. </p>
<p>The medium cap (that is, the cap which would keep most cable bills the same for most consumers) would allow an average download usage that is *only* 2/3 the normal usage you get from having a 56k modem connected 24/7! That&#8217;s right, TW is moving cable bandwidth usage back to the days of old-school modem usage! It&#8217;s insanity, in the name of money hungry, and poorly managed, business.</p>
<p>I know most of the media is focusing on the fact that this is primarily aimed at curbing internet video downloading so they can stop loosing cable/advertising dollars. But, they will affect lots of other legitimate bandwidth usage in the process. </p>
<p>For instance, I routinely buy software, legally, over the internet, and choose to download that software to save on costs and the environment. These programs can range from the hundreds of megabytes to the couple of gigabyte range.</p>
<p>This means that quite realistically, I could exceed a &#8220;normal&#8221; bandwidth cap after downloading only 1 or 2 legally purchased pieces of software in a month, and end up paying excessive overage fees for otherwise normal web surfing and checking email.</p>
<p>And this doesn&#8217;t even get into the fact that I do freelance side web business work from home, or telecommute to my real job from home. In both cases, I do a lot of file transferring (again, legally) of images, web code, etc. I can&#8217;t even imagine having to tell my boss that I couldn&#8217;t work on some emergency code fix for our software because I didn&#8217;t have any bandwidth left at home. </p>
<p>Cell phone providers somehow get away with limiting minutes, and people have those types of issues from time to time, but it&#8217;d be unheard of in this day and age for the same to be true of home internet usage.</p>
<p>I strongly urge you to fight this and not allow TW to go down this path. We have to send a signal that the ISP&#8217;s don&#8217;t own the internet, and they can&#8217;t act like a school bully in the lunch line and force us to &#8220;pay up&#8221; just to get in line with all the other kids.  It&#8217;s been unfair and unacceptable behavior in every other area of life, we can&#8217;t let this one slide or they&#8217;ll walk all over us. Seriously.</p>
<p>As for me, if it doesn&#8217;t change, and soon, I&#8217;ll be changing to another type of internet provider, like DSL from the phone company, to avoid and to protest such behavior. I simply will not sit by and let them take more of my hard earned money for less service.</p></blockquote>
<p>You should all be writing letters of a similar nature to your congressman. You should be blogging about it. You should be <a href="http://getify.tw">twitter&#8217;ing</a> about it. You should be talking about it to friends, family, and coworkers.</p>
<p>Want to take action? Use <a href="https://secure.freepress.net/site/Advocacy?cmd=display&#038;page=UserAction&#038;id=311">this tool from FreePress.net to make your voice heard</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flensed.com/fresh/2009/04/stop-timewarner-from-their-money-hungry-bandwidth-limiting-conquests/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- This site's performance optimized by W3 Total Cache. Dramatically improve the speed and reliability of your blog!

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/

Content Delivery Network via flensed.2static.it

Served from: shade.ayame @ 2010-07-31 13:42:40 -->