<?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>John Hasson &#187; Uncategorized</title>
	<atom:link href="http://www.johnhasson.com/index.php/c/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.johnhasson.com</link>
	<description>PPC Lead Geneneration, Affiliate Product Sales, Programming, Cool Math Neural Net &#38; Pattern Matching Stuff</description>
	<lastBuildDate>Sat, 16 Apr 2011 21:38:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Source Code To That Drum Tabs Program I Wrote A Long Time Ago</title>
		<link>http://www.johnhasson.com/index.php/source-code-to-that-drum-tabs-program-i-wrote-a-long-time-ago/</link>
		<comments>http://www.johnhasson.com/index.php/source-code-to-that-drum-tabs-program-i-wrote-a-long-time-ago/#comments</comments>
		<pubDate>Sat, 16 Apr 2011 21:06:09 +0000</pubDate>
		<dc:creator>John Hasson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.johnhasson.com/?p=471</guid>
		<description><![CDATA[Way back in 2009 I wrote a quick program to let you build out any drum tabs to play in a rockband style.  To this day (over a year later) I still get people asking if it is released or if they can buy or or anything along those lines.  Well the short answer is [...]]]></description>
			<content:encoded><![CDATA[<p>Way back in 2009 I wrote a quick program to let you build out any <a href="http://johnhasson.com/index.php/drumguitar-tabs-in-rockband-style/">drum tabs to play in a rockband style</a>.  To this day (over a year later) I still get people asking if it is released or if they can buy or or anything along those lines.  Well the short answer is it looks like I&#8217;m not going to bother finishing it.  But I will release the source code and a compiled exe for free.  (I just upgraded it to Visual Studio 2010 and tested it in C# Express so you can get working on it w/o having to have the full Visual Studio Library.)</p>
<ol>
<li>Download Visual Studio C# 2010 Express<br />
<a href="http://www.microsoft.com/express/Downloads/#2010-Visual-CS">http://www.microsoft.com/express/Downloads/#2010-Visual-CS</a></li>
<li><a href="http://www.microsoft.com/express/Downloads/#2010-Visual-CS"></a>Download John Hasson Trum Tabs<br />
<a href="http://dl.dropbox.com/u/6423641/Drumtabs.rar">http://dl.dropbox.com/u/6423641/Drumtabs.rar</a></li>
<li>Enjoy. &#8212; Beware.. There are bugs and it is not finished.<br />
You will need to get the mp3&#8217;s yourself.. but at least you can get started with it.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.johnhasson.com/index.php/source-code-to-that-drum-tabs-program-i-wrote-a-long-time-ago/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Use Amazon EC2 for offloading CPU intensive tasks</title>
		<link>http://www.johnhasson.com/index.php/how-to-use-amazon-ec2-for-offloading-cpu-intensive-tasks/</link>
		<comments>http://www.johnhasson.com/index.php/how-to-use-amazon-ec2-for-offloading-cpu-intensive-tasks/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 04:05:06 +0000</pubDate>
		<dc:creator>John Hasson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.johnhasson.com/?p=449</guid>
		<description><![CDATA[I&#8217;ve got some processes that I use to test historical data.  I like to optimize them till they are running very fast (as can be expected)&#8230;. Normally this will suffice, but on this test I&#8217;ve got several variables to test &#8212; essentially I am looking at about 200 days of processing to get my [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve got some processes that I use to test historical data.  I like to optimize them till they are running very fast (as can be expected)&#8230;. Normally this will suffice, but on this test I&#8217;ve got several variables to test &#8212; essentially I am looking at about 200 days of processing to get my results; but I don&#8217;t want to wait 200 days.</p>
<p>So.. the solution [a solution] in cases like this is to use something like EC2.  There are other solutions, use a bunch of old laptops, or a ec2 competitor, but since all my code is in C# w/ MSSQL server, ec2 is my first choice.</p>
<p>Step 1 (since I am doing this on a small windows instance) the code must be converted to a service.  This is so you can launch an instance and have your code start right up.  A few things to watch out for: You can&#8217;t just throw a timer control on the service and expect it to work, you actually have to write one.</p>
<pre class="brush: plain;">private Timer oTimer;
private int _interval = 1000;
private string currentTask = &quot;&quot;; // Lazy way of making sure I don't step on my own toes...

protected override void OnStart(string[] args)
{
TimerCallback timerDelegate = new TimerCallback(OnTimedEvent);

// create timer and attach our method delegate to it
oTimer = new Timer(timerDelegate, null, 1000, _interval);
}

private void OnTimedEvent(Object state)
{

if (currentTask == &quot;&quot;)
{
currentTask = &quot;Working&quot;;

//Do your processes

currentTask = &quot;&quot;;

}</pre>
<p>Don&#8217;t forget dependencies (in my case I had to add a dependency for MSSQL$SQLEXPRESS (so it won&#8217;t start will the database server is up and running) &#8212; I also added a test in the code to make sure I could connect just in case, since in one of my realworld tests I had some racing issues.</p>
<p>Ok&#8230; service is all fine and dandy.  You have tested your EC2 instance (windows small w/ sql express is cheapest for this situation at $0.12 per hour). Make sure that you have it set to automatic, and that there are no weird issues on reboot to keep your service from starting how you want.</p>
<p>In this case I have them all communicating with a central Non EC2 database server to track which server is doing what tests and to store the results.  This allows me to start 5, 20, 100, etc instances at once and to just let them run.  [Actually amazon limits you to 20 instances, unless you get special approval -- which doesn't seem hard to get, I just haven't done it yet, since I don't know if I will actually need it]</p>
<p>Now that you have your serer all updated (windows update, and starting it starts up your service and the logging and tracking works, etc.. it is time to make this into an AMI (instance that you can use to start up as many servers as you want)</p>
<p>I left mine at the default size of 30 gigs, but if I were to do it over again, I would research how to lower the size to say 8 or 10 gigs (of the original hard disk) since I don&#8217;t need that much space, and I bet amazon is charging me for all that space even though I am not using it.  Amazon ec2 has changed quite a bit over the past 12 months.  I personally use a combination of elasticfox and the AWS web console to manage my instances.  elastic fox doesn&#8217;t have a &#8220;start&#8221; option for a shut down instance, but AWS does, and there are a few other quirks&#8230;</p>
<p>Anyways, I would recommend shutting down the server first, then using AWS to make an EBS AMI Instance (right click on your instance).  This is less hassle then doing it via S3 if you really havent bothered to setup S3 yet (like me).</p>
<p>This will take a while (30-60 minutes).  I didn&#8217;t keep track, but I know it took more then 20 minutes.  Once that is done, it is just a matter of starting 20 instances of your private AMI.</p>
<p>Then sit back and wait while the results come in.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.johnhasson.com/index.php/how-to-use-amazon-ec2-for-offloading-cpu-intensive-tasks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In N Out opened today in American Fork</title>
		<link>http://www.johnhasson.com/index.php/in-n-out-opened-today-in-american-fork/</link>
		<comments>http://www.johnhasson.com/index.php/in-n-out-opened-today-in-american-fork/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 18:45:54 +0000</pubDate>
		<dc:creator>John Hasson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.johnhasson.com/index.php/in-n-out-opened-today-in-american-fork/</guid>
		<description><![CDATA[Opening day the line is long but moving very fast 2 doubles 1 animal double and some fries

In n Out (its not as far as is looks)

Line is kinda long&#8230; but moves way fast..  

Almost can pay&#8230;. lame&#8230; they don&#8217;t take AMEX.  I am pretty sure I remember them taking amex in california..
~ $12 [...]]]></description>
			<content:encoded><![CDATA[<p>Opening day the line is long but moving very fast 2 doubles 1 animal double and some fries</p>
<p><a href="http://www.johnhasson.com/wp-content/uploads/2009/12/l_2048_1536_9F095244-B5C5-4B12-AD18-FFB5F953B3EA.jpeg"><img class="alignnone size-full wp-image-364" src="http://www.johnhasson.com/wp-content/uploads/2009/12/l_2048_1536_9F095244-B5C5-4B12-AD18-FFB5F953B3EA.jpeg" alt="" width="300" height="225" /></a></p>
<p>In n Out (its not as far as is looks)</p>
<p><a href="http://www.johnhasson.com/wp-content/uploads/2009/12/p_2048_1536_B0EA02BE-2DD3-4E8F-84B7-799F6256EF56.jpeg"><img class="alignnone size-full wp-image-364" src="http://www.johnhasson.com/wp-content/uploads/2009/12/p_2048_1536_B0EA02BE-2DD3-4E8F-84B7-799F6256EF56.jpeg" alt="" width="225" height="300" /></a></p>
<p>Line is kinda long&#8230; but moves way fast.. <img src='http://www.johnhasson.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://www.johnhasson.com/wp-content/uploads/2009/12/p_2048_1536_EFCE3F14-6DCE-47A0-9D0D-12578FC01E91.jpeg"><img class="alignnone size-full wp-image-364" src="http://www.johnhasson.com/wp-content/uploads/2009/12/p_2048_1536_EFCE3F14-6DCE-47A0-9D0D-12578FC01E91.jpeg" alt="" width="225" height="300" /></a></p>
<p>Almost can pay&#8230;. lame&#8230; they don&#8217;t take AMEX.  I am pretty sure I remember them taking amex in california..</p>
<p>~ $12 later I have had 2 hamburgers, 2 boxes of fries and introduced my spouse to In-N-Out with her own burger.</p>
<p>A good lunch <img src='http://www.johnhasson.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.johnhasson.com/index.php/in-n-out-opened-today-in-american-fork/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Faster Tablet PC w/ More Ram :)</title>
		<link>http://www.johnhasson.com/index.php/faster-tablet-pc-w-more-ram/</link>
		<comments>http://www.johnhasson.com/index.php/faster-tablet-pc-w-more-ram/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 01:30:04 +0000</pubDate>
		<dc:creator>John Hasson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.johnhasson.com/?p=441</guid>
		<description><![CDATA[Memory America made my laptop faster  
Over a year ago I decided I wanted a 10&#8243; iPod touch.  Well since those didn&#8217;t exist I went for the next best thing.  A second hand tablet pc that used to be used in a morgue.  (The weird formaldehyde smell went away after a few weeks)
Enter the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.memoryamerica.com">Memory America</a> made my laptop faster <img src='http://www.johnhasson.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Over a year ago I decided I wanted a 10&#8243; iPod touch.  Well since those didn&#8217;t exist I went for the next best thing.  A second hand tablet pc that used to be used in a morgue.  (The weird formaldehyde smell went away after a few weeks)</p>
<p>Enter the HP TC1100.. a great little machine.  Perfect for&#8230; well a tablet pc..</p>
<p>Here is the back&#8230; before I opened up the memory slot with my super amazingly complex &#8220;tiny phillips&#8221; screwdriver.</p>
<p><a href="http://www.johnhasson.com/wp-content/uploads/2009/12/p_2048_1536_7C64ED1A-0517-4178-8904-1A539E4CB487.jpeg"><img class="alignnone size-full wp-image-364" src="http://www.johnhasson.com/wp-content/uploads/2009/12/p_2048_1536_7C64ED1A-0517-4178-8904-1A539E4CB487.jpeg" alt="" width="225" height="300" /></a></p>
<p>It is open&#8230;   the anticipation.. oh the sweet anticipation.</p>
<p><a href="http://www.johnhasson.com/wp-content/uploads/2009/12/p_2048_1536_CA904AAB-52D4-410E-B6A5-69FFB8946D24.jpeg"><img class="alignnone size-full wp-image-364" src="http://www.johnhasson.com/wp-content/uploads/2009/12/p_2048_1536_CA904AAB-52D4-410E-B6A5-69FFB8946D24.jpeg" alt="" width="225" height="300" /></a></p>
<p>It is in&#8230; thats it?  I used the <a href="http://www.memoryamerica.com/hp-memory-laptop-tablet-pc-tablet-pc-tc1100.html">1 Gig &#8220;off brand&#8221; memory for my tc1100</a> here.</p>
<p><a href="http://www.johnhasson.com/wp-content/uploads/2009/12/p_2048_1536_622972DE-1AA6-45E7-9166-E6A0A7B4514C.jpeg"><img class="alignnone size-full wp-image-364" src="http://www.johnhasson.com/wp-content/uploads/2009/12/p_2048_1536_622972DE-1AA6-45E7-9166-E6A0A7B4514C.jpeg" alt="" width="225" height="300" /></a></p>
<p>Put the back back on and turn it on.</p>
<p><a href="http://www.johnhasson.com/wp-content/uploads/2009/12/p_2048_1536_7220B812-FC05-4660-94DE-B86E2601175F.jpeg"><img class="alignnone size-full wp-image-364" src="http://www.johnhasson.com/wp-content/uploads/2009/12/p_2048_1536_7220B812-FC05-4660-94DE-B86E2601175F.jpeg" alt="" width="225" height="300" /></a></p>
<p>Much snappier response time for just about everything.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.johnhasson.com/index.php/faster-tablet-pc-w-more-ram/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Need To Get Your Adwords Campaigns Over to Yahoo Search or MSN adCenter Quickly?</title>
		<link>http://www.johnhasson.com/index.php/need-to-get-your-adwords-campaigns-over-to-yahoo-searche-or-msn-adcenter-quickly/</link>
		<comments>http://www.johnhasson.com/index.php/need-to-get-your-adwords-campaigns-over-to-yahoo-searche-or-msn-adcenter-quickly/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 23:38:23 +0000</pubDate>
		<dc:creator>John Hasson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.johnhasson.com/index.php/need-to-get-your-adwords-campaigns-over-to-yahoo-searche-or-msn-adcenter-quickly/</guid>
		<description><![CDATA[This is an internal tool we&#8217;ve been using for a while, with the mass adwords account banning going on I figured people would have a need of this.  It runs entirely on your local computer ( windows, linux, or mac), nothing is sent to a server somewhere.  It does cool things like KWI [...]]]></description>
			<content:encoded><![CDATA[<p>This is an internal tool we&#8217;ve been using for a while, with the mass adwords account banning going on I figured people would have a need of this.  It runs entirely on your local computer ( windows, linux, or mac), nothing is sent to a server somewhere.  It does cool things like KWI from google to yahoo or msn and replacing text during the conversion.</p>
<p>Download link here<br />
<a href="http://www.johnhasson.com/index.php/jah-adwords-to-yahoo-or-msn/">http://www.johnhasson.com/index.php/jah-adwords-to-yahoo-or-msn/</a></p>
<p><strong>Edit/Update<br />
12/11/2009<br />
Yahoo match types are done &#8220;correctly&#8221; (as correct as you can going from google to yahoo).  Broad = Advance, Phrase &#038; Exact = Standard.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.johnhasson.com/index.php/need-to-get-your-adwords-campaigns-over-to-yahoo-searche-or-msn-adcenter-quickly/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Transparent And Glass Console In C#</title>
		<link>http://www.johnhasson.com/index.php/transparent-and-glass-console-in-c/</link>
		<comments>http://www.johnhasson.com/index.php/transparent-and-glass-console-in-c/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 21:42:46 +0000</pubDate>
		<dc:creator>John Hasson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.johnhasson.com/?p=415</guid>
		<description><![CDATA[I&#8217;ve got some processes that I run quite a bit that run in C# console applications.  Here is how I make them trasnparent (and give them a slight vista glass effect)
(If you use just the glass code writing behind will usually b too blurry to read, but if you combine transparency w/ glass the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve got some processes that I run quite a bit that run in C# console applications.  Here is how I make them trasnparent (and give them a slight vista glass effect)<br />
(If you use just the glass code writing behind will usually b too blurry to read, but if you combine transparency w/ glass the writing it still slightly glowy/blury but easily readable)</p>
<p><img src="http://www.johnhasson.com/wp-content/uploads/2009/12/GlassTransparent-300x180.png" alt="GlassTransparent" title="GlassTransparent" width="300" height="180" class="alignnone size-medium wp-image-418" /></p>
<pre class="brush: css;">

using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;
using System.Runtime.InteropServices;

namespace GlassExample
{
    class Program
    {
        [DllImport(&quot;user32.dll&quot;)]
        static extern bool SetLayeredWindowAttributes(IntPtr hwnd, uint crKey,
           byte bAlpha, uint dwFlags);

        [DllImport(&quot;user32.dll&quot;)]
        static extern int SetWindowLong(IntPtr hWnd, int nIndex, int dwNewLong);

        [DllImport(&quot;user32.dll&quot;, SetLastError = true)]
        private static extern System.UInt32 GetWindowLong(IntPtr hWnd, int nIndex);

        public const int GWL_EXSTYLE = -20;
        public const int WS_EX_LAYERED = 0x80000;
        public const int LWA_ALPHA = 0x2;
        public const int LWA_COLORKEY = 0x1;

        [StructLayout(LayoutKind.Sequential)]
        public struct DWM_BLURBEHIND
        {
            public DwmBlurBehindDwFlags dwFlags;
            public bool fEnable;
            public IntPtr hRgnBlur;
            public bool fTransitionOnMaximized;
        }

        [Flags()]
        public enum DwmBlurBehindDwFlags : uint
        {
            DWM_BB_ENABLE = 0x1,
            DWM_BB_BLURREGION = 0x2,
            DWM_BB_TRANSITIONONMAXIMIZED = 0x4
        }

        [DllImport(&quot;dwmapi.dll&quot;, PreserveSig = false)]
        public static extern void DwmEnableBlurBehindWindow(IntPtr hwnd, ref DWM_BLURBEHIND blurBehind);

        static void EnableBlurBehind()
        {
            IntPtr Handle = Process.GetCurrentProcess().MainWindowHandle;
            DWM_BLURBEHIND blur = new DWM_BLURBEHIND();
            blur.dwFlags = DwmBlurBehindDwFlags.DWM_BB_ENABLE;// +DwmBlurBehindDwFlags.DWM_BB_TRANSITIONONMAXIMIZED;
            blur.fEnable = true;
            //blur.hRgnBlur = 0;
            blur.fTransitionOnMaximized = true;// DwmBlurBehindDwFlags.DWM_BB_TRANSITIONONMAXIMIZED;

            DwmEnableBlurBehindWindow(Handle, ref blur);
        }

        static void MakeTransparent(byte pct)
        {
            IntPtr Handle = Process.GetCurrentProcess().MainWindowHandle;
            int newDwLong = ((int)GetWindowLong(Handle, GWL_EXSTYLE)) ^ WS_EX_LAYERED;
            SetWindowLong(Handle, GWL_EXSTYLE, newDwLong);
            SetLayeredWindowAttributes(Handle, 0, pct, LWA_ALPHA);
        }

        static void Main(string[] args)
        {
            EnableBlurBehind();
            MakeTransparent(170);  //0 to 255

            Console.WriteLine(&quot;Test&quot;);

            Console.ReadKey();

        }

    }
}
</pre>
<p>(There is zero error checking here&#8230; this will probably crash on XP, caveat emptor, etc)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.johnhasson.com/index.php/transparent-and-glass-console-in-c/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>1,990 Pages?!  Nope, thats just white space and double spacing.</title>
		<link>http://www.johnhasson.com/index.php/1990-pages-nope-thats-just-whte-space-and-double-spacing/</link>
		<comments>http://www.johnhasson.com/index.php/1990-pages-nope-thats-just-whte-space-and-double-spacing/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 21:35:51 +0000</pubDate>
		<dc:creator>John Hasson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.johnhasson.com/index.php/1990-pages-nope-thats-just-whte-space-and-double-spacing/</guid>
		<description><![CDATA[Don&#8217;t get me wrong, the new healthcare bill is definitely long, but lately (past several months) people seem to be claiming that the length of a bill is proportional to how bad it is.
Any legislative formatted document will be about 4 times its actual length.
For reference, here is the original HR 3962 1990 page proposed [...]]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t get me wrong, the new healthcare bill is definitely long, but lately (past several months) people seem to be claiming that the length of a bill is proportional to how bad it is.</p>
<p>Any legislative formatted document will be about 4 times its actual length.</p>
<p>For reference, here is the original HR 3962 <a href="/111_ahcaa.pdf">1990 page proposed health bill pdf</a>.  (<a href="http://rules.house.gov/bills_details.aspx?NewsID=4483">Original source of HR 3962</a>)</p>
<p>Here it is cleaned up as a <a href="/111_ahcaa.txt">plain text file</a> (just the content of the bill)</p>
<p>And here it is as a <a href="/111_ahcaa.doc">519 page word doc</a>.</p>
<p>It is pretty easy to find things you don&#8217;t like in this bill, even though I actually would like national health coverage I can find plenty in here that make me not want to support it in its current state.  (Also easy to find things you do like if you look hard enough <img src='http://www.johnhasson.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  )  Hint, grab the text version and load it up in your favorite text editor and start searching.  My guess is they filled it with so much that is obviously controversial (govt funded abortions, etc) on purpose, so they can take it out as a negotiation tactic.  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.johnhasson.com/index.php/1990-pages-nope-thats-just-whte-space-and-double-spacing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drum/Guitar Tabs In Rockband Style</title>
		<link>http://www.johnhasson.com/index.php/drumguitar-tabs-in-rockband-style/</link>
		<comments>http://www.johnhasson.com/index.php/drumguitar-tabs-in-rockband-style/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 05:56:35 +0000</pubDate>
		<dc:creator>John Hasson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.johnhasson.com/index.php/drumguitar-tabs-in-rockband-style/</guid>
		<description><![CDATA[I had a pretty productive Saturday.&#160; 
After some tweaking this late afternoon I have it about 99% done..
All that is left is to add a leader into the songs (so it doesn&#8217;t start right away).&#160; You can get any TAB off the internet and sync it up with your mp3 file for the song.&#160; And [...]]]></description>
			<content:encoded><![CDATA[<p>I had a pretty productive Saturday.&#160; </p>
<p>After some tweaking this late afternoon I have it about 99% done..</p>
<p>All that is left is to add a leader into the songs (so it doesn&#8217;t start right away).&#160; You can get any TAB off the internet and sync it up with your mp3 file for the song.&#160; And tada&#8230; now you can use your elite rockband skills to play the real thing.&#160; </p>
<p>You have to manually edit the actual start and end seconds for the tabs [and fix the tabs since alot of them arent perfect matches for the CD version of the songs] &#8212; This is why on some songs there is a noticeable offset</p>
<p>This took me about a day to write (mostly Saturday), and then a late afternoon to find and edit the tab files so that it would read them.</p>
<p>&#160;</p>
<p>I started with 21 Guns by Greenday as I debugged the program.&#160; Parts of the Tabs are perfect, but alot of them need quite a bit of manual editing.&#160; (I think the tabs were from the music video and not the CD)</p>
<p>&#160;</p>
<p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:cfe78a2f-e42d-4e75-8ca3-c0a61cef2e3c" class="wlWriterEditableSmartContent">
<div><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/-5ntBo1mFPQ&amp;hl=en"></param><embed src="http://www.youtube.com/v/-5ntBo1mFPQ&amp;hl=en" type="application/x-shockwave-flash" width="425" height="355"></embed></object></div>
</div>
<p>Then I Did Red Hot Chili Peppers (Under the bridge) Mostly because my wife really wants to learn to play it. </p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:66ab60c1-a417-466d-9ddd-ec79130f35c2" class="wlWriterEditableSmartContent">
<div><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/iG5Z4s37qgI&amp;hl=en"></param><embed src="http://www.youtube.com/v/iG5Z4s37qgI&amp;hl=en" type="application/x-shockwave-flash" width="425" height="355"></embed></object></div>
</div>
<p>&#160;</p>
<p>Then I was thinking… well she actually wants to play it on guitar… 15 minutes later (with no editing of the source code, just the data/tab file {thats very cool if u know anything about coding <img src='http://www.johnhasson.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> }) – she can now use her elite rockband 2 skills to play the guitar… or at least practice till she can play it <img src='http://www.johnhasson.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> &#160; [I took out some of the fancy stuff in the tab till she gets the basics down]</p>
<p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:cd1c1f98-d3df-42c8-a1e5-62dfeb1fd8db" class="wlWriterEditableSmartContent">
<div><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/R7DqV4ZxeVY&amp;hl=en"></param><embed src="http://www.youtube.com/v/R7DqV4ZxeVY&amp;hl=en" type="application/x-shockwave-flash" width="425" height="355"></embed></object></div>
</div>
<p>And finally I did Weezer – Buddy Holly.&#160; It syncs up perfectly.</p>
<div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:71c054f5-9156-4687-94d4-d25574821306" class="wlWriterEditableSmartContent">
<div><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/Kls9NqqYDbY&amp;hl=en"></param><embed src="http://www.youtube.com/v/Kls9NqqYDbY&amp;hl=en" type="application/x-shockwave-flash" width="425" height="355"></embed></object></div>
</div>
</p>
<p>I’ve also done Lenny Kravitz… but the drum tabs I found were off quite.. </p>
<p>Long story short… you can pick just about any song and from 15 minutes to an hour (depends on the quality of the tab file) have a tweaked tab file ready to play and practice rockband style.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.johnhasson.com/index.php/drumguitar-tabs-in-rockband-style/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Office Evolution</title>
		<link>http://www.johnhasson.com/index.php/office-evolution/</link>
		<comments>http://www.johnhasson.com/index.php/office-evolution/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 21:27:24 +0000</pubDate>
		<dc:creator>John Hasson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.johnhasson.com/index.php/office-evolution/</guid>
		<description><![CDATA[My office environment seems to change about ever 3-4 months.&#160; This is my latest arrangement.&#160; 8 monitors, 5 computers linked via Synergy and a cheap drum kit.
 This is what my office currently looks like
&#160;
These are old pictures     &#160;      
And this one is even older  [...]]]></description>
			<content:encoded><![CDATA[<p>My office environment seems to change about ever 3-4 months.&#160; This is my latest arrangement.&#160; 8 monitors, 5 computers linked via Synergy and a cheap drum kit.</p>
<p> This is what my office currently looks like<a href="http://www.johnhasson.com/wp-content/uploads/2009/08/M01A0427.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="M01A0427" border="0" alt="M01A0427" src="http://www.johnhasson.com/wp-content/uploads/2009/08/M01A0427_thumb.jpg" width="644" height="484" /></a>
<p>&#160;</p>
<p>These are old pictures    <br /><a href="http://www.johnhasson.com/wp-content/uploads/2009/08/M01A0310.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="M01A0310" border="0" alt="M01A0310" src="http://www.johnhasson.com/wp-content/uploads/2009/08/M01A0310_thumb.jpg" width="244" height="184" /></a> <a href="http://www.johnhasson.com/wp-content/uploads/2009/08/M01A0311.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="M01A0311" border="0" alt="M01A0311" src="http://www.johnhasson.com/wp-content/uploads/2009/08/M01A0311_thumb.jpg" width="244" height="184" /></a>&#160; <a href="http://www.johnhasson.com/wp-content/uploads/2009/08/M01A0312.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="M01A0312" border="0" alt="M01A0312" src="http://www.johnhasson.com/wp-content/uploads/2009/08/M01A0312_thumb.jpg" width="244" height="184" /></a>     </p>
<p>And this one is even older     <br /><a href="http://www.johnhasson.com/wp-content/uploads/2009/08/M01A0289.jpg"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="M01A0289" border="0" alt="M01A0289" src="http://www.johnhasson.com/wp-content/uploads/2009/08/M01A0289_thumb.jpg" width="244" height="184" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.johnhasson.com/index.php/office-evolution/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Adwords Slaps&#8211; a good thing</title>
		<link>http://www.johnhasson.com/index.php/adwords-slaps-a-good-thing/</link>
		<comments>http://www.johnhasson.com/index.php/adwords-slaps-a-good-thing/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 05:05:10 +0000</pubDate>
		<dc:creator>John Hasson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.johnhasson.com/?p=406</guid>
		<description><![CDATA[I think I&#8217;ve gone through 3 adwords slaps.  I&#8217;m not talking about not getting a campaign approved or suddenly not getting traffic to crappy MFA sites.  I mean a campaign that has been running fine for 6-12 months and suddenly overnight everything stops.  Bad quality scores, etc.  
These slaps can be [...]]]></description>
			<content:encoded><![CDATA[<p>I think I&#8217;ve gone through 3 adwords slaps.  I&#8217;m not talking about not getting a campaign approved or suddenly not getting traffic to crappy MFA sites.  I mean a campaign that has been running fine for 6-12 months and suddenly overnight everything stops.  Bad quality scores, etc.  </p>
<p>These slaps can be a good thing.  Each time (in my case) I was able to see what needed to be fixed.  Once I fixed it, suddenly the traffic came right back&#8211;and every time (so far) the traffic comes back stronger.  </p>
<p>Moral: If your campaign is &#8220;slapped,&#8221; don&#8217;t post on forums asking why or get all upset. (Getting upset wont do anything) &#8212; Just relax, look at what needs to be fixed and fix it.  If you don&#8217;t know what is wrong, contact <a href="http://www.johnhasson.com/index.php/google-adwords-chat-support-sometimes-great/">adwords support.  If you are *nice* to them</a> they will be very helpful.  After you fix it, expect even better return on your investment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.johnhasson.com/index.php/adwords-slaps-a-good-thing/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

