<?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>SmileySteve.net</title>
	<atom:link href="http://smileysteve.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://smileysteve.net</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Fri, 03 Feb 2012 13:45:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Nginx and PHP-FPM</title>
		<link>http://smileysteve.net/2012/02/03/nginx-and-php-fpm/</link>
		<comments>http://smileysteve.net/2012/02/03/nginx-and-php-fpm/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 13:45:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://smileysteve.net/?p=784</guid>
		<description><![CDATA[In case you&#8217;ve been visiting my web pages, you&#8217;ve probably noticed that they&#8217;ve been getting slower over time. Most of the reason behind this had to do with Apache2 and the way that it launches new PHP servers &#8211; combined &#8230; <a href="http://smileysteve.net/2012/02/03/nginx-and-php-fpm/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In case you&#8217;ve been visiting my web pages, you&#8217;ve probably noticed that they&#8217;ve been getting slower over time. Most of the reason behind this had to do with Apache2 and the way that it launches new PHP servers &#8211; combined with my low cost 256mb Rackspace VPS (only $11 a month) and a combination of websites including about 5 WordPress blogs another handful of open source projects (including thinkup), some stuff being tried for work, and my old company (Gifted Soft.)</p>
<h1>Nginx</h1>
<p>Nginx has been getting a lot of attention as the new way to run PHP, Ruby, and Django applications as it&#8217;s lightweight like lighttp, but is significantly cleaner &#8211; and lacks some memory leaks. The install was pretty easy on Debian / Ubuntu, just had to do</p>
<pre>apt-get install  nginx</pre>
<p>And then virtual servers are set up very similarly to apache with a sites-available and site-enabled directory (though no nginx_ensite that I could find)</p>
<h1>PHP-FPM</h1>
<p>Initially, I setup my new cloud server with spawn-fcgi, which worked to start php-fastcgi. Unfortunately, before the end of the night, I noticed my web pages returning bad gateways (502) thanks to <a href="http://rigor.com">Rigor&#8217;s</a> emails.</p>
<p>I did some research &#8211; and found the php5-fpm would fix a lot of my crashes. I read the reports about the new FPM in the newest versions of php and its many improvements. Installing php-fpm worked really easily as well.</p>
<h1>Already Ran Out Of Memory</h1>
<p>Next, I noticed that, under load, my mysql instance was crashing. Default Debian error logs only log to /var/log/syslog (so I also set up a conf line to log to /var/log/mysql/error.log) because the system was running out of memory (and this default Debian setup didn&#8217;t come with a swap setup, so mysqld was being prematurely shut down.)</p>
<p>More research showed me that php-fpm was starting 20 instances along with some other default pool settings. A little digging around and using my old Apache worker trials, I&#8217;ve arbitrarily set the following for php-fpm.</p>
<pre>pm = dynamic
pm.max_children = 30
pm.start_servers = 5
pm.max_requests = 50
pm.min_spare_servers=3
pm.max_spare_servers=5</pre>
<p>Which should shutdown memory leaks better and keep my php processes refreshed. I also changed some of my apc settings.</p>
<h1>Ruby With Passenger</h1>
<p>A lot of the reason that I switched to Nginx is for the prospect of doing more work in Ruby and publishing easily (and performance-ly) with some trial projects instead of just used WebBrick. Installing Ruby through the RVM and setting up passenger on Nginx has a bajillion guides on the internet.</p>
<h1>Premature Optimization with MySql Percona &amp; APC</h1>
<p>I&#8217;ve been experimenting a lot with a few optimizations to make things even better. I&#8217;ve recently checked out AriaDB and Percona forks of MySQL. I&#8217;m using Percona on my server simply because AriaDB is still on 5.3 (versus 5.5) though Maria probably has some nice benefits for Worpress pages that have little advantage of going InnoDB / XtraDB route. One confusing aspect is that AriaDB has an option for the stock InnoDB and lists XtraDB, but Percona only lists InnoDB (which is really XtraDB)</p>
<p>APC allows for a little extra caching for things. But with a low memory footprint, it seems like a good idea to limit the memory available for APC. I&#8217;m sticking with 32mb for now. I&#8217;m also setting a really high TTL for unchanged files (stat will recache any changed files anyway)</p>
]]></content:encoded>
			<wfw:commentRss>http://smileysteve.net/2012/02/03/nginx-and-php-fpm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lower Long Term Investment Tax Rates</title>
		<link>http://smileysteve.net/2012/01/24/lower-long-term-investment-tax-rates/</link>
		<comments>http://smileysteve.net/2012/01/24/lower-long-term-investment-tax-rates/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 14:10:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://smileysteve.net/?p=781</guid>
		<description><![CDATA[With Romney releasing his tax returns showing his effective 13.9% rate, it should become obvious to the U.S. that investing in companies is a great deal. At lunch the other day, a friend tried to tell me that buying a &#8230; <a href="http://smileysteve.net/2012/01/24/lower-long-term-investment-tax-rates/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>With Romney releasing his tax returns showing his effective 13.9% rate, it should become obvious to the U.S. that investing in companies is a great deal.</p>
<p>At lunch the other day, a friend tried to tell me that buying a company&#8217;s product has the same effect as investing in the stock. This is not true because you receive instant gratification for your payment, while your investment is at risk and may pay you back over time. Additionally, your investment can be leveraged given accepted capital structure practices in the U.S., while your purchase is often not.</p>
]]></content:encoded>
			<wfw:commentRss>http://smileysteve.net/2012/01/24/lower-long-term-investment-tax-rates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Problem With Newt Gingrich&#039;s Taxes</title>
		<link>http://smileysteve.net/2012/01/22/the-problem-with-newt-gingrichs-taxes/</link>
		<comments>http://smileysteve.net/2012/01/22/the-problem-with-newt-gingrichs-taxes/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 14:07:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://smileysteve.net/?p=767</guid>
		<description><![CDATA[Newt Gingrich is using his 2010 tax returns to brag that he pays a higher percentage in taxes than Mitt Romney. This is flawed because the reason that Gingrich is taxed so highly is because he is not investing in American stocks - as his Tax Plan and Jobs program proposed is the issue with Obama's higher taxes. <a href="http://smileysteve.net/2012/01/22/the-problem-with-newt-gingrichs-taxes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignleft" style="width: 190px"><img title="Newt Gingrich" src="http://upload.wikimedia.org/wikipedia/commons/thumb/2/2c/Newt_Gingrich_by_Gage_Skidmore_6.jpg/180px-Newt_Gingrich_by_Gage_Skidmore_6.jpg" alt="Newt Gingrich - Photo By Gage Skidmore" width="180" height="239" /><p class="wp-caption-text">Newt Gingrich  - By Gage Skidmore</p></div>
<p>Last week, Newt Gingrich released his <a href="http://www.newt.org/sites/newt.org/files/GingrichIncomeTaxReturn.pdf" target="_blank">2010 Federal Income Tax return</a> in a move seen as a way to discredit Mitt Romney with a 1% perception. The big &#8220;news&#8221; is that Mitt Romney pays about 15% on his $250mln of net worth while Newt Gingrich pays a &#8220;more admirable&#8221; 31% on his $3.162mln annual income.</p>
<h2>Qualified Dividends</h2>
<p>The difference in tax rates stems presumably from Mitt Romney&#8217;s dividend income, which would be taxed at 15% thanks to the George W. Bush tax cuts. Meanwhile, Newt Gingrich, only received $5990 in<a href="http://en.wikipedia.org/wiki/Qualified_dividend" target="_blank"> qualified dividends</a>. The S&amp;P 500 is an index of U.S. stocks that is generally interpreted to represent the entire market and an average of stability &#8211; its dividend yield was 1.98%. This puts an estimate of Newt <strong>Gingrich&#8217;s stock market holdings at approximately $300,000</strong>, or 10% of Newt Gingrich&#8217;s 2010 income.</p>
<h2>The Problem is the Jobs Plan</h2>
<p>The jobs plan that every Republican is running under is that lower taxes increase U.S. investment &#8211; which theoretically creates jobs because it helps companies grow. The problem with Gingrich&#8217;s stock market investments approximated at only $300k is that<strong> he is a perfect example of somebody who is investing very little, even though the tax incentives are already there</strong>.</p>
<p>Here are the relevant points of <a href="http://www.newt.org/solutions/jobs-economy" target="_blank">his plan</a>:</p>
<blockquote style="border: 2px solid lightblue; background: lightgrey;">
<ol>
<li><strong>Stop the 2013 tax increases</strong> to promote stability in the economy. Job creation improved after Congress extended tax relief for two years in December. We should make the rates permanent.</li>
<li><strong>Make the United States the most desirable location for new business investment</strong> through a bold series of tax cuts, including:<em>Eliminating the capital gains tax</em> to make American entrepreneurs more competitive against those in other countries; <em>Dramatically reducing the corporate income tax</em> (among highest in the world) to 12.5%; <em>Allowing for 100% expensing of new equipment</em> to spur innovation and American manufacturing; <em>Ending the death tax</em> permanently.</li>
</ol>
</blockquote>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><em>Gingrich&#8217;s return also includes $10,754 dividends from tax exempt investments (likely municipal bonds), which suggest another approximate $200k invested. An additional $5,902 are from unqualified (short term or non U.S.) dividends. ( These are still trivial percentages given the small percentage of his income and therefore presumed, much greater, net worth.)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://smileysteve.net/2012/01/22/the-problem-with-newt-gingrichs-taxes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SOPA PIPA. What happened to presumed innocence.</title>
		<link>http://smileysteve.net/2012/01/18/sopa-pipa-what-happened-to-presumed-innocence/</link>
		<comments>http://smileysteve.net/2012/01/18/sopa-pipa-what-happened-to-presumed-innocence/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 15:29:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://smileysteve.net/2012/01/18/sopa-pipa-what-happened-to-presumed-innocence/</guid>
		<description><![CDATA[Why are Wikipedia, Reddit, and Google against these laws? How COULD the laws affect yout? SOPA and PIPA are like the Patriot Act (or NDAA) but for websites. <a href="http://smileysteve.net/2012/01/18/sopa-pipa-what-happened-to-presumed-innocence/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A long time ago, there was a concept that you were &#8216;innocent until proven guilty&#8217;. SOPA, on the other hand, assumes you are guilty and can shut down your favorite web site before the owner of the site has been alerted  of the infringing content.  Not to mention the owner is now liable for the content that some user innocuously posted.</p>
<p>The piracy acts could do this, and could make sites like Wikipedia, YouTube, and Facebook many times slower (say goodbye to realtime updates) and more expensive as reviewing everything posted requires extensive man power.</p>
<p>What happened to the freedom in the U.S.? The government is going to increase in size to manage DNS blockades? It will step in and add regulation to the internet similar to Australia with an easily achievable abuse that would silence free speech similar to the great firewall of China.</p>
<p>To scare you of China some more, consider that church web sites, their videos, and their musicians are some of the most likely to accidentally use copyrighted material.</p>
<p>For what it&#8217;s worth, some of the DMCA works. Violations were reported and YouTube and other major (and minor) sites took down content. Isps dropped violating customers, effectively doing what SOPA intends.</p>
<p>The DMCA is not without abuse either. YouTube and Megaupload megavideos have been publicized as receiving many complaints, but in the end, much of the content was original &#8211; or even uploaded by the claimant or its subsidiaries &#8211; with SOPA, instead of a hit video being blocked for a few hours while it is investigated (and losing revenue) the entirety of YouTube could be DNS black listed.</p>
]]></content:encoded>
			<wfw:commentRss>http://smileysteve.net/2012/01/18/sopa-pipa-what-happened-to-presumed-innocence/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SCSS &#8211; Compiled CSS</title>
		<link>http://smileysteve.net/2012/01/12/scss-compiled-css/</link>
		<comments>http://smileysteve.net/2012/01/12/scss-compiled-css/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 14:28:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://smileysteve.net/?p=752</guid>
		<description><![CDATA[We're using SCSS <a href="http://smileysteve.net/2012/01/12/scss-compiled-css/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>At work this year, we started using SCSS, which uses a Ruby program, compass to compile stylesheets. This helps convert 8 different style sheet sets int one minified script &#8211; but most importantly, it helps with the speed of development.</p>
<h2>Easier to Categorize and Add / Edit CSS</h2>
<p>SCSS cascades your style sheets further than what is involved in normal css. Good CSS tends to be specific CSS, and when you get specific, you get many many descriptors, divs, and classes deep on any given line. It makes it a lot easier to find your content section and find all tags underneath it than to search through your CSS (which many developers may cascade incorrectly or add to on the fly and therefore be out of order).</p>
<p>Searching also becomes substantially easier with the implicit requirement to order. You can now search sections of code for the specific class or tag that you are looking to change the style for.</p>
<p>So yes, nesting is great.</p>
<h2>Your&#8217;re Minifying Anyway</h2>
<p>On Monday, I heard an argument that you shouldn&#8217;t have any code on your server that you can&#8217;t change quickly and on the server if necessary. I don&#8217;t really agree with that much at all, but the key when it comes to CSS is that you are compiling it anyway if you&#8217;re running any sort of high access application &#8211; you&#8217;re minifying it so that it transfers faster &#8211; and hopefully, it renders faster too.</p>
<h2><a href="http://nex-3.com/posts/96-scss-sass-is-a-css-extension" target="_blank">Check it out</a></h2>
<p>It&#8217;s easy to get, especially if you already have Ruby installed (or have a current Mac) simply &#8220;sudo gem install compass&#8221; and read some howtos on setting up your directories. You can then use &#8220;compass compile&#8221; in your directory structure &#8211; or you can set up a listener for changes (which you could setup on your live server if you want.)</p>
<h2>Other features</h2>
<p>Variables are another great feature. It can become a lot easier to specify a color template or a collection if you can set colors or attributes up with variables. Then, a few line changes at the top of your SCSS will be put in their respective place. Anybody who has developed in PHP or other server side languages has either done this or wanted to do this with their css.</p>
]]></content:encoded>
			<wfw:commentRss>http://smileysteve.net/2012/01/12/scss-compiled-css/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ban Driving w/ Cell Phones or Ban Automatic Transmissions</title>
		<link>http://smileysteve.net/2012/01/02/ban-driving-w-cell-phones-or-ban-automatic-transmissions/</link>
		<comments>http://smileysteve.net/2012/01/02/ban-driving-w-cell-phones-or-ban-automatic-transmissions/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 15:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cars]]></category>
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://smileysteve.net/?p=738</guid>
		<description><![CDATA[Banning texting or all cell phone use is an over extension of government, if we are going to focus on the causes rather than the symptoms, why don't we just ban automatic transmissions. <a href="http://smileysteve.net/2012/01/02/ban-driving-w-cell-phones-or-ban-automatic-transmissions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Several weeks ago it became big news that the National Highway Transportation Safety Administration released a report that came to the conclusion that all cell phone use should be banned while driving. Currently, many states (including Georgia and New York)  have  laws banning texting while driving &#8211; and there is no national rule that ensures that all states are similar. The news stations in Georgia reenforced the idea through the same anecdote from the family that pushed the law here &#8211; after their son died while texting and driving. <a href="http://www.myfoxatlanta.com/dpps/news/cell-phone-in-cars-ban-dec-13-2011_16367272" target="_blank">Here&#8217;s the main article.</a></p>
<p>&nbsp;</p>
<p>Rather than choosing the banning of cell phones, government could choose to increase driver attentiveness and safety by making laws that ban automatic transmissions. Here are a few arguments for that legislation, but this is mostly backed by<a href="http://www.ncbi.nlm.nih.gov/pubmed/17085632" target="_blank"> some preliminary studies I&#8217;ve seen and heard about</a> attentiveness improving in ADHD adolescent males. Some other points I would like to make, manual transmission legislation could immediately:</p>
<ul>
<li>Immediately increases the skills and training required for driving<br />
(Can make training more expensive, increasing the respect driving gets)</li>
<li>(Anecdotal) Makes drivers decide between talking on a cell phone and shifting<br />
(though this only matters in traffic)</li>
<li>Increases fuel mileage<br />
(the average manual transmission gets better mileage than the same car equipped with an automatic)<br />
(speed and gearing thinking can use more read ahead and gear braking)</li>
<li>Decreases other distracted activities<br />
(Drivers are less likely to eat or try to reach back to children while driving)</li>
</ul>
<div>That said, this is a red herring, because  I&#8217;m fairly confident that all of America is not willing to no longer be able to purchase automatic transmissions, including being required to learn a new skill &#8211; or suffer the possibility of not driving. The key thing is that states already have laws for distracted driving, failure to maintain a lane, using the left lane for other than passing purposes, and many more issues that should already enforce being distracted by cell phones.</div>
<div>As an additional note, I use my phone for both GPS and music in my car. This means that I could have a glowing screen lighting up my cabin while I&#8217;m really just trying to change songs.</div>
<div>Finally, in a non correlation / causation argument, driving fatalities actually decreased after 30 years of increases when the recession and iphone booms came.</div>
]]></content:encoded>
			<wfw:commentRss>http://smileysteve.net/2012/01/02/ban-driving-w-cell-phones-or-ban-automatic-transmissions/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Domains Transferring from GoDaddy to NameCheap</title>
		<link>http://smileysteve.net/2011/12/29/domains-transferring-from-godaddy-to-namecheap/</link>
		<comments>http://smileysteve.net/2011/12/29/domains-transferring-from-godaddy-to-namecheap/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 17:54:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[#sopaSucks]]></category>

		<guid isPermaLink="false">http://smileysteve.net/?p=736</guid>
		<description><![CDATA[As a technologist and web developer that uses the internet for various uses, I&#8217;ve seen many cases where the DMCA has been used inappropriately &#8211; but, as an artist, I&#8217;m also aware that websites can and will steal and use &#8230; <a href="http://smileysteve.net/2011/12/29/domains-transferring-from-godaddy-to-namecheap/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As a technologist and web developer that uses the internet for various uses, I&#8217;ve seen many cases where the DMCA has been used inappropriately &#8211; but, as an artist, I&#8217;m also aware that websites can and will steal and use my images and art. (I look for free art or news related pictures sometimes when posting blogs, but much prefer my own pictures to avoid the issues.)</p>
<p>GoDaddy.com is one of the writers of the SOPA bill in front of Congress that makes enlarges the consequences and government involvement in copyright issues. They reversed their primary blog post in full support as they lost customers, but they still sponsored the bill.</p>
<p>Historically, I used GoDaddy because it was an easy way to keep my domains in one place. The user interface &#8211; and my annoying username is a strange account number presented minor problems. I even used them as a DNS host as it was more central than afraid.org and allows *some* wildcard posting. The whole CEO hunting elephants didn&#8217;t bother me. The Danica Patrick and Hooters style models bothered me significantly &#8211; but honestly it did help me know that they are a big name in the business (I love car racing, so Danica Patrick is great, but truly using the sex sales method in tv commercials is a bit distracting and not befitting to women.)</p>
<p>Today, I finally made the jump. Is it because of SOPA? Some. Mostly I&#8217;ve been seeing competing prices at namecheap &#8211; and the managers and login process at GoDaddy have been annoying. Namecheap still has some user interface issues. Their branding is based purely on price, and they are part of a large corporate conglomerate &#8211; but their marketing did a great job on the SOPA polices.</p>
<p>The change was pretty simple, though, I wish that I had found a better designed import / export system for eep codes and DNS management. Ultimately EEP, SPF, and Domain Keys were the biggest pains as I had to go through each domain that had these (DKIM is going to be different anyway) and it was relatively cheap &#8211; cheaper than renewing at stock prices next year anyway.</p>
<p>It&#8217;s worth noting that I&#8217;m a small player, only had 8 domains.</p>
]]></content:encoded>
			<wfw:commentRss>http://smileysteve.net/2011/12/29/domains-transferring-from-godaddy-to-namecheap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RHOK ATL Dec 2011</title>
		<link>http://smileysteve.net/2011/12/03/rhok-atl-dec-2011/</link>
		<comments>http://smileysteve.net/2011/12/03/rhok-atl-dec-2011/#comments</comments>
		<pubDate>Sat, 03 Dec 2011 20:28:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[#rhokatl]]></category>

		<guid isPermaLink="false">http://smileysteve.net/?p=719</guid>
		<description><![CDATA[Random Hacks of Kindness is an event where programmers and technical people get together and help solve real world problems that help humanity - Safety, Health, Medical Response, Disaster Relief. In Atlanta, we had groups work with a CDC suggestion to help report and solve polio, safe streets to keep people in safe areas, and more. <a href="http://smileysteve.net/2011/12/03/rhok-atl-dec-2011/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The hackathon this weekend was another great Random Hacks of Kindess event. This is my second RHOK event and I&#8217;d like to start by saying that the event is different than events like StartAtlanta and StartupCamper partly due to the different crowd that it attracts (significantly more developers than &#8220;business&#8221; people.)</p>
<p><span class="Apple-style-span" style="font-size: 20px; font-weight: bold;">PolioTracker</span></p>
<p>Poliotracker was the project that I &#8220;worked&#8221; on. By I, I mean mostly Jeff setting up a Ushahidi instance that would help us report cases of polio and map them out in a nice report.</p>
<p>The idea came from <em>Cyrus Shahpar</em> of the CDC as they currently experience issues with reporting and field agents with WHO who find cases and then sending medical teams and supplies to deal with outbreaks.</p>
<p>You can view it at <a title="http://poliotracker.crowdmap.com" href="http://poliotracker.crowdmap.com" target="_blank">http://poliotracker.crowdmap.com</a> &#8211; if you have an Iphone, Ipad, or Android device, there is a Ushahidi app that gives a nice interface to report and see cases.</p>
<p>Because there won&#8217;t always be data available as agents travel the length of the world. Ushahidi also allows SMS (text messages) that describe a location to be sent to the service and processed through Frontline SMS (somebody the CDC / WHO can use as a supplier)</p>
<h2>StreetSafe</h2>
<p>Street Safe is an app that helps alerts (urban) explorers know when the area that they are in may not be safe. Jeff made sure to extend the resourcefulness by making it time sensitive as well &#8211; so if there is only crime in Home Park when it&#8217;s night, then it won&#8217;t warn you at 10am as you are walking to class. It&#8217;s a web smart phone client that sends a json encoded location string to a PHP server. The PHP server responds with crime reports relavent to that area.</p>
<p>The demo works, so that&#8217;s pretty awesome. They&#8217;re not actually using real data.</p>
<p>They have sort of addressed my qualms with reenforcing biases by proposing an alogorithm to actually determine if an area is safe. It also has a &#8220;hot/cold&#8221; functionality.</p>
<h2>Clinical ER</h2>
<p>The idea is to help deliver ER response in situations where medical services may not be necessarily nearby. There is no working prototype, but the process list / design is covered. The goal is to crowdsource medical emergency response while keeping it easy and free. The difficulties are protecting medical providers from liability issues.</p>
<p>The idea goes towards what many people would like to see WebMD become; where Doctors and Nurse practitioners are on call to diagnose and solve a problem remotely and then later provide some sort of medical solution.</p>
<p>&nbsp;</p>
<h2>Businga</h2>
<p>MARTA in Atlanta just began offering real time bus information by sharing gps information from their busses &#8211; so this is a highly relavent topic. In Inidia and other countries commercial and municipal bus systems are apparently even less reliable than they are in the U.S. Rather  than leaving the onus on the bus companies themselves, this crowdsources the idea to cell phone users via both HTML5 and SMS (through Twilio) &#8211; the server seems php based.</p>
<p>The working demo is a webapp (mobile compatible &#8211; jquery ombile) where you can get status or set status of routes. When you get status, it tells you the last seen location of the bus route that you are looking for so that you can predict the time at the next stop.</p>
<p>My comments: It would be neat if bus riders could install this in the background so that their phones are always updating their status. Given many people (6+) moving in the same location on the bus route, you can track the bus. This would also be good using Open Cell location tracking &#8211; track just pure cell phone movement along the route and identifying clusters.</p>
<h2>Spork</h2>
<p>Trying to solve the problem of food recovery &#8211; good food getting thrown out, while Georgians go to be hungry. They have an objective document to (by 2013 to decrease the amount of waste food by 5%.</p>
<p>The app uses Django on the server end and uses Twilio for SMS. The team plans to work on this afterwards. And would like to solve the stated objectives by working with restaurants and groceries.</p>
<p>The beta launch in 6 months would involce SMS, an incentive program, email and voice, QA &#8211; and more.</p>
<p>The slogan is &#8220;Where a good meal goes a long way&#8221;</p>
<h2>Thanks</h2>
<p>I&#8217;d like to send a big thanks to the sponsors that include GTRI, ATDC, MailChimp, NerdWerx, and others as the food, drinks, and qwerky door prizes / schwag help encourage people to come.</p>
<p>&nbsp;</p>
<p>Stephen Reid</p>
]]></content:encoded>
			<wfw:commentRss>http://smileysteve.net/2011/12/03/rhok-atl-dec-2011/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Texting Apps</title>
		<link>http://smileysteve.net/2011/11/04/texting-apps/</link>
		<comments>http://smileysteve.net/2011/11/04/texting-apps/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 14:22:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[#textingApps]]></category>

		<guid isPermaLink="false">http://smileysteve.net/?p=717</guid>
		<description><![CDATA[My IPhone Friends seem to be all about WhatsApp, Beluga, and HeyWire. It&#8217;s strange because when I go visit them on vacation or start to really hang out with them, they&#8217;re not okay with me just giving them their number &#8230; <a href="http://smileysteve.net/2011/11/04/texting-apps/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My IPhone Friends seem to be all about WhatsApp, Beluga, and HeyWire. It&#8217;s strange because when I go visit them on vacation or start to really hang out with them, they&#8217;re not okay with me just giving them their number for text, instead they want me to download and sign up for an app. A huge burden when I have HTC Sense that does group and messaging on a plan that costs me nothing (SPRINT.)</p>
<p>How are text messaging costs still plaguing us 5 years later? I can&#8217;t believe that these aren&#8217;t unlimited yet! Also, unlimited data means that my google voice is an extra free text messaging service.</p>
<p>Imessage will replace this &#8211; but there is no android equivalent. Of course, somehow it&#8217;s not enough that I can facebook message, tweet, and text on my phone &#8211; much less gtalk, and fully email.</p>
<p>What are are your thoughts on these group messaging platforms?</p>
]]></content:encoded>
			<wfw:commentRss>http://smileysteve.net/2011/11/04/texting-apps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>American Made Car Failures</title>
		<link>http://smileysteve.net/2011/11/03/american-made-car-failures/</link>
		<comments>http://smileysteve.net/2011/11/03/american-made-car-failures/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 14:59:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://smileysteve.net/?p=711</guid>
		<description><![CDATA[American Cars were more than 10 years behind their foreign counterparts, which leads to more hassle, a failure to compete, and more likelihood for theft. <a href="http://smileysteve.net/2011/11/03/american-made-car-failures/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A 2001 Dodge Stratus has no active ignition disabler. Really? A 1998 Nissan did. Heck, my 1989 Mazda did.</p>
<p>I&#8217;ve had a couple of friends that have had their cars stolen in the last couple of years. One was a 1998 Dodge Intrepid and another a 2001 Dodge Stratus. I also had a chance to ride in a 2001 Chevy Malibu recently &#8211; which is really what brought out a lot of these thoughts.</p>
<div class="wp-caption alignright" style="width: 372px"><img class=" " title="My 1989 Luxury Car" src="https://fbcdn-sphotos-a.akamaihd.net/photos-ak-ash1/v71/124/8/4922302/n4922302_36912517_8673.jpg" alt="" width="362" height="242" /><p class="wp-caption-text">My 1989 Luxury Car</p></div>
<ul>
<li>No power locks</li>
<li>Loose carpet interior<br />
(a finely stitched interior is nice, but american cars have a fluffy composition)<br />
Not to mention the fabric and glue is more likely to tear and come unglued</li>
<li>No Active Ignition Disabling System<br />
Long before even the Gone in 60 Seconds Mercedes encoded keys</li>
<li>Nothing that looks like an alarm (on vehicles without an alarm)<br />
BMWs all have a &#8220;clown nose&#8221; that looks like an alarm. A little blinking LED on a radio or the dash does a lot.</li>
</ul>
<div>Now. I want to go back to the car that I bought when I was 18. I paid $2000 for it and it was in pretty good condition. It was a 100% Japanese made 1989 Mazda RX-7 (it did have luxury features like power locks and an alarm). It had all of the features listed above (also had electric windows.) Granted, any thief that did their research would know how to steal it &#8211; but I also live in a city and time where robbers are&#8217;t the best with manual transmissions.</div>
<div>After 11+ years, American car manufacturers were unable to compete in these BASIC security and luxury departments.</div>
<div>I parked in the City of Atlanta during 3 years of college. In a location where other cars were broken into, locked back yards were stolen from, etc. My friends had their American cars stolen in as short of a time as during dinner.</div>
]]></content:encoded>
			<wfw:commentRss>http://smileysteve.net/2011/11/03/american-made-car-failures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using apc
Database Caching using apc
Object Caching 497/644 objects using apc

Served from: smileysteve.net @ 2012-02-22 12:44:53 -->
