<?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>Timothy Hoogland</title>
	<atom:link href="http://www.timothyhoogland.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.timothyhoogland.com</link>
	<description>IT Professional</description>
	<lastBuildDate>Tue, 10 Apr 2012 21:21:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Need to update Group Policy on all domain computers?</title>
		<link>http://www.timothyhoogland.com/2012/03/09/need-to-update-group-policy-on-all-domain-computers/</link>
		<comments>http://www.timothyhoogland.com/2012/03/09/need-to-update-group-policy-on-all-domain-computers/#comments</comments>
		<pubDate>Fri, 09 Mar 2012 16:45:21 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.timothyhoogland.com/?p=285</guid>
		<description><![CDATA[The script below is a VBScript. Just paste the script into a .vbs file (or download it from here) and run it. You will need to run this on a domain controller with Domain Admin rights. You also will need to have the PSTools suite installed at C:\Tools. You can download the PSTools suite from [...]]]></description>
			<content:encoded><![CDATA[<p>The script below is a VBScript. Just paste the script into a .vbs file (or download it from <a title="GPUpdate Script" href="http://www.timothyhoogland.com/files/GPUpdateAllPCs.vbs" target="_blank">here</a>) and run it. You will need to run this on a domain controller with Domain Admin rights. You also will need to have the PSTools suite installed at C:\Tools. You can download the PSTools suite from Microsofts&#8217; website here: <a href="http://technet.microsoft.com/en-us/sysinternals/bb896649">http://technet.microsoft.com/en-us/sysinternals/bb896649</a></p>
<p>Your output when you run the script should look like this:</p>
<p><a href="http://www.timothyhoogland.com/wp-content/uploads/2012/03/3-9-2012-10-43-53-AM.jpg" rel="lightbox[285]"><img class="aligncenter size-full wp-image-287" title="3-9-2012 10-43-53 AM" src="http://www.timothyhoogland.com/wp-content/uploads/2012/03/3-9-2012-10-43-53-AM.jpg" alt="" width="668" height="331" /></a></p>
<blockquote><p>set Shell = CreateObject(&#8220;Wscript.shell&#8221;)<br />
set oNet = CreateObject(&#8220;Wscript.Network&#8221;)</p>
<p>DomainName = oNet.UserDomain</p>
<p>Set Domain = GetObject(&#8220;WinNT://&#8221; &amp; DomainName)</p>
<p>For Each ADSIObject In Domain<br />
If ADSIObject.Class = &#8220;Computer&#8221; Then<br />
Wscript.echo &#8220;Currently running gpupdate on &#8221; &amp; ADSIOBject.Name<br />
Shell.Run &#8220;C:\tools\psexec -d \\&#8221; &amp; ADSIObject.Name &amp; &#8221; gpupdate /force /wait:0&#8243;, 0,True</p>
<p>End If<br />
Next</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.timothyhoogland.com/2012/03/09/need-to-update-group-policy-on-all-domain-computers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Evolution of a Programmer</title>
		<link>http://www.timothyhoogland.com/2012/02/29/the-evolution-of-a-programmer/</link>
		<comments>http://www.timothyhoogland.com/2012/02/29/the-evolution-of-a-programmer/#comments</comments>
		<pubDate>Wed, 29 Feb 2012 16:32:05 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.timothyhoogland.com/?p=280</guid>
		<description><![CDATA[High School/Jr.High 10 PRINT &#8220;HELLO WORLD&#8221; 20 END First year in College program Hello(input, output) begin writeln(&#8216;Hello World&#8217;) end. Senior year in College (defun hello (print (cons &#8216;Hello (list &#8216;World)))) New professional #include &#60;stdio.h&#62; void main(void) { char *message[] = {&#8220;Hello &#8220;, &#8220;World&#8221;}; int i; for(i = 0; i &#60; 2; ++i) printf(&#8220;%s&#8221;, message[i]); printf(&#8220;\n&#8221;); [...]]]></description>
			<content:encoded><![CDATA[<h2>High School/Jr.High</h2>
<blockquote><p>10 PRINT &#8220;HELLO WORLD&#8221;<br />
20 END</p></blockquote>
<h2>First year in College</h2>
<blockquote><p>program Hello(input, output)<br />
begin<br />
writeln(&#8216;Hello World&#8217;)<br />
end.</p></blockquote>
<h2>Senior year in College</h2>
<blockquote><p>(defun hello<br />
(print<br />
(cons &#8216;Hello (list &#8216;World))))</p></blockquote>
<h2>New professional</h2>
<blockquote><p>#include &lt;stdio.h&gt;<br />
void main(void)<br />
{<br />
char *message[] = {&#8220;Hello &#8220;, &#8220;World&#8221;};<br />
int i;</p>
<p>for(i = 0; i &lt; 2; ++i)<br />
printf(&#8220;%s&#8221;, message[i]);<br />
printf(&#8220;\n&#8221;);<br />
}</p></blockquote>
<h2>Seasoned professional</h2>
<blockquote><p>#include &lt;iostream.h&gt;<br />
#include &lt;string.h&gt;</p>
<p>class string<br />
{<br />
private:<br />
int size;<br />
char *ptr;</p>
<p>string() : size(0), ptr(new char[1]) { ptr[0] = 0; }</p>
<p>string(const string &amp;s) : size(s.size)<br />
{<br />
ptr = new char[size + 1];<br />
strcpy(ptr, s.ptr);<br />
}</p>
<p>~string()<br />
{<br />
delete [] ptr;<br />
}</p>
<p>friend ostream &amp;operator &lt;&lt;(ostream &amp;, const string &amp;);<br />
string &amp;operator=(const char *);<br />
};</p>
<p>ostream &amp;operator&lt;&lt;(ostream &amp;stream, const string &amp;s)<br />
{<br />
return(stream &lt;&lt; s.ptr);<br />
}</p>
<p>string &amp;string::operator=(const char *chrs)<br />
{<br />
if (this != &amp;chrs)<br />
{<br />
delete [] ptr;<br />
size = strlen(chrs);<br />
ptr = new char[size + 1];<br />
strcpy(ptr, chrs);<br />
}<br />
return(*this);<br />
}</p>
<p>int main()<br />
{<br />
string str;</p>
<p>str = &#8220;Hello World&#8221;;<br />
cout &lt;&lt; str &lt;&lt; endl;</p>
<p>return(0);<br />
}</p></blockquote>
<h2>Master Programmer</h2>
<blockquote><p>[<br />
uuid(2573F8F4-CFEE-101A-9A9F-00AA00342820)<br />
]<br />
library LHello<br />
{<br />
// bring in the master library<br />
importlib(&#8220;actimp.tlb&#8221;);<br />
importlib(&#8220;actexp.tlb&#8221;);</p>
<p>// bring in my interfaces<br />
#include &#8220;pshlo.idl&#8221;</p>
<p>[<br />
uuid(2573F8F5-CFEE-101A-9A9F-00AA00342820)<br />
]<br />
cotype THello<br />
{<br />
interface IHello;<br />
interface IPersistFile;<br />
};<br />
};</p>
<p>[<br />
exe,<br />
uuid(2573F890-CFEE-101A-9A9F-00AA00342820)<br />
]<br />
module CHelloLib<br />
{</p>
<p>// some code related header files<br />
importheader(&lt;windows.h&gt;);<br />
importheader(&lt;ole2.h&gt;);<br />
importheader(&lt;except.hxx&gt;);<br />
importheader(&#8220;pshlo.h&#8221;);<br />
importheader(&#8220;shlo.hxx&#8221;);<br />
importheader(&#8220;mycls.hxx&#8221;);</p>
<p>// needed typelibs<br />
importlib(&#8220;actimp.tlb&#8221;);<br />
importlib(&#8220;actexp.tlb&#8221;);<br />
importlib(&#8220;thlo.tlb&#8221;);</p>
<p>[<br />
uuid(2573F891-CFEE-101A-9A9F-00AA00342820),<br />
aggregatable<br />
]<br />
coclass CHello<br />
{<br />
cotype THello;<br />
};<br />
};</p>
<p>#include &#8220;ipfix.hxx&#8221;</p>
<p>extern HANDLE hEvent;</p>
<p>class CHello : public CHelloBase<br />
{<br />
public:<br />
IPFIX(CLSID_CHello);</p>
<p>CHello(IUnknown *pUnk);<br />
~CHello();</p>
<p>HRESULT __stdcall PrintSz(LPWSTR pwszString);</p>
<p>private:<br />
static int cObjRef;<br />
};</p>
<p>#include &lt;windows.h&gt;<br />
#include &lt;ole2.h&gt;</p>
<p>#include &lt;stdio.h&gt;<br />
#include &lt;stdlib.h&gt;<br />
#include &#8220;thlo.h&#8221;<br />
#include &#8220;pshlo.h&#8221;<br />
#include &#8220;shlo.hxx&#8221;<br />
#include &#8220;mycls.hxx&#8221;</p>
<p>int CHello::cObjRef = 0;</p>
<p>CHello::CHello(IUnknown *pUnk) : CHelloBase(pUnk)<br />
{<br />
cObjRef++;<br />
return;<br />
}</p>
<p>HRESULT __stdcall CHello::PrintSz(LPWSTR pwszString)<br />
{<br />
printf(&#8220;%ws&#8221;, pwszString);<br />
return(ResultFromScode(S_OK));<br />
}</p>
<p>CHello::~CHello(void)<br />
{</p>
<p>// when the object count goes to zero, stop the server<br />
cObjRef&#8211;;<br />
if( cObjRef == 0 )<br />
PulseEvent(hEvent);</p>
<p>return;<br />
}</p>
<p>#include &lt;windows.h&gt;<br />
#include &lt;ole2.h&gt;<br />
#include &#8220;pshlo.h&#8221;<br />
#include &#8220;shlo.hxx&#8221;<br />
#include &#8220;mycls.hxx&#8221;</p>
<p>HANDLE hEvent;</p>
<p>int _cdecl main(<br />
int argc,<br />
char * argv[]<br />
) {<br />
ULONG ulRef;<br />
DWORD dwRegistration;<br />
CHelloCF *pCF = new CHelloCF();</p>
<p>hEvent = CreateEvent(NULL, FALSE, FALSE, NULL);</p>
<p>// Initialize the OLE libraries<br />
CoInitializeEx(NULL, COINIT_MULTITHREADED);</p>
<p>CoRegisterClassObject(CLSID_CHello, pCF, CLSCTX_LOCAL_SERVER,<br />
REGCLS_MULTIPLEUSE, &amp;dwRegistration);</p>
<p>// wait on an event to stop<br />
WaitForSingleObject(hEvent, INFINITE);</p>
<p>// revoke and release the class object<br />
CoRevokeClassObject(dwRegistration);<br />
ulRef = pCF-&gt;Release();</p>
<p>// Tell OLE we are going away.<br />
CoUninitialize();</p>
<p>return(0); }</p>
<p>extern CLSID CLSID_CHello;<br />
extern UUID LIBID_CHelloLib;</p>
<p>CLSID CLSID_CHello = { /* 2573F891-CFEE-101A-9A9F-00AA00342820 */<br />
0x2573F891,<br />
0xCFEE,<br />
0x101A,<br />
{ 0x9A, 0x9F, 0&#215;00, 0xAA, 0&#215;00, 0&#215;34, 0&#215;28, 0&#215;20 }<br />
};</p>
<p>UUID LIBID_CHelloLib = { /* 2573F890-CFEE-101A-9A9F-00AA00342820 */<br />
0x2573F890,<br />
0xCFEE,<br />
0x101A,<br />
{ 0x9A, 0x9F, 0&#215;00, 0xAA, 0&#215;00, 0&#215;34, 0&#215;28, 0&#215;20 }<br />
};</p>
<p>#include &lt;windows.h&gt;</p>
<p>#include &lt;ole2.h&gt;<br />
#include &lt;stdlib.h&gt;<br />
#include &lt;string.h&gt;<br />
#include &lt;stdio.h&gt;<br />
#include &#8220;pshlo.h&#8221;<br />
#include &#8220;shlo.hxx&#8221;<br />
#include &#8220;clsid.h&#8221;</p>
<p>int _cdecl main(<br />
int argc,<br />
char * argv[]<br />
) {<br />
HRESULT hRslt;<br />
IHello *pHello;<br />
ULONG ulCnt;<br />
IMoniker * pmk;<br />
WCHAR wcsT[_MAX_PATH];<br />
WCHAR wcsPath[2 * _MAX_PATH];</p>
<p>// get object path<br />
wcsPath[0] = &#8216;\0&#8242;;<br />
wcsT[0] = &#8216;\0&#8242;;<br />
if( argc &gt; 1) {<br />
mbstowcs(wcsPath, argv[1], strlen(argv[1]) + 1);<br />
wcsupr(wcsPath);<br />
}<br />
else {<br />
fprintf(stderr, &#8220;Object path must be specified\n&#8221;);<br />
return(1);<br />
}</p>
<p>// get print string<br />
if(argc &gt; 2)<br />
mbstowcs(wcsT, argv[2], strlen(argv[2]) + 1);<br />
else<br />
wcscpy(wcsT, L&#8221;Hello World&#8221;);</p>
<p>printf(&#8220;Linking to object %ws\n&#8221;, wcsPath);<br />
printf(&#8220;Text String %ws\n&#8221;, wcsT);</p>
<p>// Initialize the OLE libraries<br />
hRslt = CoInitializeEx(NULL, COINIT_MULTITHREADED);</p>
<p>if(SUCCEEDED(hRslt)) {</p>
<p>hRslt = CreateFileMoniker(wcsPath, &amp;pmk);<br />
if(SUCCEEDED(hRslt))<br />
hRslt = BindMoniker(pmk, 0, IID_IHello, (void **)&amp;pHello);</p>
<p>if(SUCCEEDED(hRslt)) {</p>
<p>// print a string out<br />
pHello-&gt;PrintSz(wcsT);</p>
<p>Sleep(2000);<br />
ulCnt = pHello-&gt;Release();<br />
}<br />
else<br />
printf(&#8220;Failure to connect, status: %lx&#8221;, hRslt);</p>
<p>// Tell OLE we are going away.<br />
CoUninitialize();<br />
}</p>
<p>return(0);<br />
}</p></blockquote>
<h2>Apprentice Hacker</h2>
<blockquote><p>#!/usr/local/bin/perl<br />
$msg=&#8221;Hello, world.\n&#8221;;<br />
if ($#ARGV &gt;= 0) {<br />
while(defined($arg=shift(@ARGV))) {<br />
$outfilename = $arg;<br />
open(FILE, &#8220;&gt;&#8221; . $outfilename) || die &#8220;Can&#8217;t write $arg: $!\n&#8221;;<br />
print (FILE $msg);<br />
close(FILE) || die &#8220;Can&#8217;t close $arg: $!\n&#8221;;<br />
}<br />
} else {<br />
print ($msg);<br />
}<br />
1;</p></blockquote>
<h2>Experienced Hacker</h2>
<blockquote><p>#include &lt;stdio.h&gt;</p>
<p>#define S &#8220;Hello, World\n&#8221;<br />
main(){exit(printf(S) == strlen(S) ? 0 : 1);}</p></blockquote>
<h2>Seasoned Hacker</h2>
<blockquote><p>% cc -o a.out ~/src/misc/hw/hw.c<br />
% a.out</p></blockquote>
<h2>Guru Hacker</h2>
<blockquote><p>% echo &#8220;Hello, world.&#8221;</p></blockquote>
<h2>New Manager</h2>
<blockquote><p>10 PRINT &#8220;HELLO WORLD&#8221;<br />
20 END</p></blockquote>
<h2>Middle Manager</h2>
<blockquote><p>mail -s &#8220;Hello, world.&#8221; bob@b12<br />
Bob, could you please write me a program that prints &#8220;Hello, world.&#8221;?<br />
I need it by tomorrow.<br />
^D</p></blockquote>
<h2>Senior Manager</h2>
<blockquote><p>% zmail jim<br />
I need a &#8220;Hello, world.&#8221; program by this afternoon.</p></blockquote>
<h2>Chief Executive</h2>
<blockquote><p>% letter<br />
letter: Command not found.<br />
% mail<br />
To: ^X ^F ^C<br />
% help mail<br />
help: Command not found.<br />
% damn!<br />
!: Event unrecognized<br />
% logout</p></blockquote>
<p>~Anonymous</p>
]]></content:encoded>
			<wfw:commentRss>http://www.timothyhoogland.com/2012/02/29/the-evolution-of-a-programmer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Programmers Work at Night</title>
		<link>http://www.timothyhoogland.com/2011/12/16/why-programmers-work-at-night/</link>
		<comments>http://www.timothyhoogland.com/2011/12/16/why-programmers-work-at-night/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 14:33:42 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Tech News]]></category>

		<guid isPermaLink="false">http://www.timothyhoogland.com/?p=272</guid>
		<description><![CDATA[A popular saying goes that Programmers are machines that turn caffeine into code. And sure enough, ask a random programmer when they do their best work and there’s a high chance they will admit to a lot of late nights. Some earlier, some later. A popular trend is to get up at 4am and get [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.timothyhoogland.com/wp-content/uploads/2011/12/764px-Prim_clockwork.jpg" rel="lightbox[272]"><img class="aligncenter size-medium wp-image-277" title="764px-Prim_clockwork" src="http://www.timothyhoogland.com/wp-content/uploads/2011/12/764px-Prim_clockwork-300x235.jpg" alt="" width="300" height="235" /></a>A popular saying goes that Programmers are machines that turn caffeine into code.</p>
<p>And sure enough, ask a random programmer when they do their best work and there’s a high chance they will admit to a lot of late nights. Some earlier, some later. A popular trend is to get up at 4am and get some work done before the day’s craziness begins. Others like going to bed at 4am&#8230;. Continued at: <a href="http://swizec.com/blog/why-programmers-work-at-night/swizec/3198" target="_blank">http://swizec.com/blog/why-programmers-work-at-night/swizec/3198</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.timothyhoogland.com/2011/12/16/why-programmers-work-at-night/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Toys For Tots Chicagoland Motorcycle Parade 2011</title>
		<link>http://www.timothyhoogland.com/2011/12/06/toys-for-tots-chicagoland-motorcycle-parade-2011/</link>
		<comments>http://www.timothyhoogland.com/2011/12/06/toys-for-tots-chicagoland-motorcycle-parade-2011/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 04:41:37 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[Motorcycling]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[2011]]></category>
		<category><![CDATA[chicago]]></category>
		<category><![CDATA[christmas]]></category>
		<category><![CDATA[gifts]]></category>
		<category><![CDATA[happy]]></category>
		<category><![CDATA[joy]]></category>
		<category><![CDATA[kids]]></category>
		<category><![CDATA[lights]]></category>
		<category><![CDATA[motorcycle]]></category>
		<category><![CDATA[presents]]></category>
		<category><![CDATA[reddit]]></category>
		<category><![CDATA[tft]]></category>
		<category><![CDATA[toys for tots]]></category>

		<guid isPermaLink="false">http://www.timothyhoogland.com/?p=267</guid>
		<description><![CDATA[I am not usually one for pouring my heart out on the internet but I feel this is well deserved of it. As you may have read I took up motorcycling in May this year. I started out on a small 500cc Ninja and have since moved up to a 600CC FZ6. But really the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.timothyhoogland.com/wp-content/uploads/2011/12/TFTlogoGreySm.jpg" rel="lightbox[267]"><img class="aligncenter size-full wp-image-268" title="TFTlogoGreySm" src="http://www.timothyhoogland.com/wp-content/uploads/2011/12/TFTlogoGreySm.jpg" alt="" width="221" height="190" /></a>I am not usually one for pouring my heart out on the internet but I feel this is well deserved of it. As you may have read I took up motorcycling in May this year. I started out on a small 500cc Ninja and have since moved up to a 600CC FZ6. But really the bike I ride is irrelevant. What is relevant is that I wanted to give back in some way. A friend of a friend posted on Facebook about the Toys For Tots parade and I happened to have the day free. I went shopping with my friend and picked out a few toys. In the spirit of things we got Santa hats for our helmets and I wired up some Christmas lights to my bike.</p>
<p>I arrived at Dan Ryan Woods with my friend Dan and one of his friends. We waited a few hours and then the bikes started moving out. I have to say that it was very well organized and things moved pretty smoothly. We proceeded to go north on Western and almost immediately saw people waving and cheering at us. <em>I didn&#8217;t expect this at all.</em> Then we saw the little kids waving at all the bikes going by with huge smiles on their faces. That moment right there made it all worth it. To see the excitement and joy in their eyes was just heartwarming. I can only imagine how happy the child who got one of those toys was. It almost brought a tear to my eyes, literally. The joy and happiness that I felt riding the toys up to the drop off location with all the other bikers was immense.</p>
<p>I will definitely be doing this again and again for as long as I own a motorcycle. Just thinking about the event is giving me goosebumps as I type this out. It&#8217;s great to see that there are still some people that truly care and are willing to go out of their way for others. It gives me hope that there are still good people out there. Yes it was cold out that day but it was completely worth it just to bring a little happiness to some kid somewhere on Christmas that would have otherwise gotten nothing.</p>
<p>Keep the shiny side up and the rubber side down.</p>
<p><a href="http://www.timothyhoogland.com/wp-content/uploads/2011/12/388394_10150394349935829_509030828_8895247_743810079_n.jpg" rel="lightbox[267]"><img class="aligncenter size-medium wp-image-269" title="Mel &amp; I at Toys for Tots 2011 on my 04' FZ6" src="http://www.timothyhoogland.com/wp-content/uploads/2011/12/388394_10150394349935829_509030828_8895247_743810079_n-300x224.jpg" alt="" width="300" height="224" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.timothyhoogland.com/2011/12/06/toys-for-tots-chicagoland-motorcycle-parade-2011/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Followup To BurbSec</title>
		<link>http://www.timothyhoogland.com/2011/12/06/followup-to-burbsec/</link>
		<comments>http://www.timothyhoogland.com/2011/12/06/followup-to-burbsec/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 04:23:06 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Tech News]]></category>
		<category><![CDATA[burbsec]]></category>
		<category><![CDATA[chicago]]></category>
		<category><![CDATA[friendly]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[meeting. thursday]]></category>
		<category><![CDATA[schaumburg]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[suburbs]]></category>
		<category><![CDATA[thpacketslinger]]></category>

		<guid isPermaLink="false">http://www.timothyhoogland.com/?p=262</guid>
		<description><![CDATA[On December 1st my co-worker @ThPacketSlinger asked me if I would be interested in going to a meeting for this group called &#8220;BurbSec&#8221;. He explained that is was for people in the IT field and who are interested in or work in the IT security field. It sounded interesting so I decided to go. They [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.timothyhoogland.com/wp-content/uploads/2011/12/12-5-2011-10-15-11-PM.png" rel="lightbox[262]"><img class="aligncenter size-full wp-image-264" title="BurbSec" src="http://www.timothyhoogland.com/wp-content/uploads/2011/12/12-5-2011-10-15-11-PM.png" alt="" width="502" height="148" /></a></p>
<p>On December 1st my co-worker <a href="https://twitter.com/#!/ThPacketSlinger" target="_blank">@ThPacketSlinger</a> asked me if I would be interested in going to a meeting for this group called &#8220;BurbSec&#8221;. He explained that is was for people in the IT field and who are interested in or work in the IT security field. It sounded interesting so I decided to go.</p>
<p>They meet at a nice pub/restaurant in Schaumburg. The food was good and the company was even better. There was everyone from basic IT people to people that have been in the security industry for years. Everyone was friendly and willing to share their stories, experiences, and try to answer any questions that you may have about their line of work. I definitely see this as a good social and business networking opportunity and will be attending their next meeting. They meet every 1st Thursday of the month.</p>
<p>You can check them out <a href="https://twitter.com/#!/burbsec" target="_blank">@BurbSec</a> on Twitter or at <a href="http://www.burbsec.com/" target="_blank">www.BurbSec.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.timothyhoogland.com/2011/12/06/followup-to-burbsec/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BurbSec &#8211; 12.1.2011</title>
		<link>http://www.timothyhoogland.com/2011/12/02/burbsec/</link>
		<comments>http://www.timothyhoogland.com/2011/12/02/burbsec/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 02:12:23 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[Tech News]]></category>

		<guid isPermaLink="false">http://www.timothyhoogland.com/2011/12/02/burbsec/</guid>
		<description><![CDATA[Well I&#8217;m here at BurbSec. Lots of cool people and good food. Definitely going to be coming here regularly. I will write a follow up later on.]]></description>
			<content:encoded><![CDATA[<p>Well I&#8217;m here at BurbSec. Lots of cool people and good food. Definitely going to be coming here regularly. I will write a follow up later on.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.timothyhoogland.com/2011/12/02/burbsec/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just flashed CM 7.1.0 on my EVO 4G</title>
		<link>http://www.timothyhoogland.com/2011/10/21/just-flashed-cm-7-1-0-on-my-evo-4g/</link>
		<comments>http://www.timothyhoogland.com/2011/10/21/just-flashed-cm-7-1-0-on-my-evo-4g/#comments</comments>
		<pubDate>Fri, 21 Oct 2011 04:05:58 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.timothyhoogland.com/2011/10/21/just-flashed-cm-7-1-0-on-my-evo-4g/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://www.timothyhoogland.com/wp-content/uploads/2011/10/wpid-screenshot-1319169821232.png" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.timothyhoogland.com/2011/10/21/just-flashed-cm-7-1-0-on-my-evo-4g/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Powerful Metal Joy Machine</title>
		<link>http://www.timothyhoogland.com/2011/10/18/powerful-metal-joy-machine/</link>
		<comments>http://www.timothyhoogland.com/2011/10/18/powerful-metal-joy-machine/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 01:57:00 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[500r]]></category>
		<category><![CDATA[alive]]></category>
		<category><![CDATA[amazing]]></category>
		<category><![CDATA[fx6]]></category>
		<category><![CDATA[harley]]></category>
		<category><![CDATA[joy]]></category>
		<category><![CDATA[motorcycle]]></category>
		<category><![CDATA[riding]]></category>

		<guid isPermaLink="false">http://www.timothyhoogland.com/?p=248</guid>
		<description><![CDATA[&#8220;The difference between driving a car and climbing onto a motorcycle is the difference between watching TV and actually living your life.&#8221; This past May I decided to let something special into my life, a motorcycle. I did not realize how big of an impact it was going to have on me until it was [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;The difference between driving a car and climbing onto a motorcycle is the difference between watching TV and actually living your life.&#8221;</p>
<p>This past May I decided to let something special into my life, a motorcycle. I did not realize how big of an impact it was going to have on me until it was too late. I read through the Illinois Motorcycle Handbook and then went to get my M permit, 7 days later I bought my first bike. I was on the fence about buying one as I never saw myself as &#8220;biker&#8221;. Whenever you hear that someone rides a bike either think of some Jersey Shore looking guy in flip flops and a dago-t on a crotch rocket or some bad-ass looking, tattooed biker on his Harley. I didn&#8217;t see where I would fit in.</p>
<p>I bought my 2001 Kawasaki Ninja 500 from a guy on Craigslist for $1400. The bike ran and needed a little work. After a couple hard days of work and help from some of my friends we had her running perfectly. I took a picture of the beautiful machine and posted her on my Facebook. I was immediately bombarded with &#8220;Don&#8217;t kill yourself&#8221;, &#8220;You bought a bike?!&#8221;, &#8220;Why?&#8221;, and &#8220;I hope your life insurance is paid&#8221; (my mother said this) comments on the photo. After all the people had left their thoughts and condolences I decided to call a few friends who I knew rode. They were both average riders and had sportbikes. They showed me the basic operations of the bike and took me out riding occasionally. After a few months it was time to take the MSF course that I had enrolled in at the beginning of the year.</p>
<p>I went through the course learning how to control the bike and how to handle the bike in various situations. The test day rolled around and I passed. I was officially a rider. I took my MSF card over to the DMV and they put a &#8220;M&#8221; on my license. I felt&#8230;<em>free</em>. I drove my car home and took the bike out. I went to the forest preserves and then to the city. I rode for hours and still wasn&#8217;t tired of it. I took the bike every chance I could get. I would run into people that I hadn&#8217;t seen in a while and they were either really surprised and happy for me or they were extremely &#8220;disappointed&#8221;. I had one lady that I used to work with ask me if &#8220;I valued my life why would I ride one?&#8221;. I replied with that&#8217;s why I ride one because I value my life and want the most out of it.</p>
<p>Going back to my initial impressions and attitude of a motorcycle. I was always one of those people that said I wouldn&#8217;t get one and it was too risky but something changed. From the moment that I shifted the bike from neutral to 1st gear I just knew that it was for me. The only way I can describe how it feels to ride is &#8220;alive&#8221;. The feel of the wind against your body. The power of the bike beneath you. The sights and smells of the world around you. I have never felt so in tune with the world than when I am on the bike. There is no comparison to flying down the road taking everything in, just you, the bike, and the world. It&#8217;s a big change but its for the better.</p>
<p>While the feeling of being on the bike is unsurpassed by anything else there is something else that comes with owning a bike, community. Whether you like it or not when you buy a bike you are automatically enrolled in a &#8220;club&#8221;. Other bikers will wave or nod at you. Why would they do this do you ask? Because they get it and you do too. Riding isn&#8217;t for everyone but for those that do it they get it. Up until I got the bike I wouldn&#8217;t be very inclined to talk to random strangers just because they had a Harley jacket on or because they were carrying a helmet. But now I&#8217;ve managed to strike up conversations everywhere. I&#8217;ve found that most riders are pretty friendly and love talking shop.</p>
<p>I&#8217;ve since purchased another bike and I am passing my Ninja onto my father so he can share the experience with me. I hope that other people would approach riding with an open mind and see how amazing it is. Keep the shiny side up and the rubber side down.</p>
<p><a href="http://www.timothyhoogland.com/wp-content/uploads/2011/10/320207_10150319649310829_509030828_8546740_1674356066_n.jpg" rel="lightbox[248]"><img class="aligncenter size-full wp-image-250" title="My 01' 500R and my 04' FZ6" src="http://www.timothyhoogland.com/wp-content/uploads/2011/10/320207_10150319649310829_509030828_8546740_1674356066_n.jpg" alt="" width="499" height="335" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.timothyhoogland.com/2011/10/18/powerful-metal-joy-machine/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A triumph for Doug &#8220;TopHattWaffle&#8221;, aka my little brother</title>
		<link>http://www.timothyhoogland.com/2011/08/24/a-triumph-for-doug-tophattwaffle-aka-my-little-brother/</link>
		<comments>http://www.timothyhoogland.com/2011/08/24/a-triumph-for-doug-tophattwaffle-aka-my-little-brother/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 12:42:00 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[Tech News]]></category>
		<category><![CDATA[YouTube Videos]]></category>
		<category><![CDATA[2]]></category>
		<category><![CDATA[congrats]]></category>
		<category><![CDATA[doug]]></category>
		<category><![CDATA[douglas hoogland]]></category>
		<category><![CDATA[engadget]]></category>
		<category><![CDATA[gary]]></category>
		<category><![CDATA[GLaDOS]]></category>
		<category><![CDATA[Harbeson]]></category>
		<category><![CDATA[hoogland]]></category>
		<category><![CDATA[hudston]]></category>
		<category><![CDATA[MissStabby]]></category>
		<category><![CDATA[portal]]></category>
		<category><![CDATA[proposal]]></category>
		<category><![CDATA[Rachel van der Meer]]></category>
		<category><![CDATA[spotlight]]></category>
		<category><![CDATA[tophattwaffle]]></category>
		<category><![CDATA[wired]]></category>

		<guid isPermaLink="false">http://www.timothyhoogland.com/?p=233</guid>
		<description><![CDATA[I just wanted to give my brother some personal recognition on his recent claim to fame with his Portal 2 Proposal that has been gaining a ton of press around all the tech sites. I honestly cannot tell you how well put together the levels were and how nicely edited the videos were produced. Your [...]]]></description>
			<content:encoded><![CDATA[<p>I just wanted to give my brother some personal recognition on his recent claim to fame with his Portal 2 Proposal that has been gaining a ton of press around all the tech sites.</p>
<p>I honestly cannot tell you how well put together the levels were and how nicely edited the videos were produced. Your attention to detail will get you very far in your field. I hope that a larger developer sees your potential and picks you up for a large project. You have earned it and your time in the spotlight! I can&#8217;t tell you how proud I am to see your video and work popping up in my Google Reader feeds on my tech news sites. Quite an amazing talent you have there Doug. I knew you had the talent in you it was just a matter of time before you did a project that really grabbed peoples attention.</p>
<p>Wired did an excellent article on the project that drove the making of this. You can read the full article here: <a href="http://www.wired.com/gamelife/2011/08/portal-2-proposal/">http://www.wired.com/gamelife/2011/08/portal-2-proposal/</a></p>
<p>For those of you who haven&#8217;t seen here is his video and a few new outlet links that have featured it:</p>
<p style="text-align: center;">
<p><a href="http://www.youtube.com/watch?v=BAoEzP9_uNo&#038;fmt=18">http://www.youtube.com/watch?v=BAoEzP9_uNo</a></p>
</p>
<p style="text-align: center;"><a href="http://www.tophattwaffle.com/?p=2799">http://www.tophattwaffle.com/?p=2799</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.timothyhoogland.com/2011/08/24/a-triumph-for-doug-tophattwaffle-aka-my-little-brother/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Experience with Hawk Chevy in Bridgeview, IL</title>
		<link>http://www.timothyhoogland.com/2011/07/15/my-experience-with-hawk-chevy-in-bridgeview-il/</link>
		<comments>http://www.timothyhoogland.com/2011/07/15/my-experience-with-hawk-chevy-in-bridgeview-il/#comments</comments>
		<pubDate>Fri, 15 Jul 2011 15:28:18 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[2011]]></category>
		<category><![CDATA[bridgeview]]></category>
		<category><![CDATA[car]]></category>
		<category><![CDATA[chevrolet]]></category>
		<category><![CDATA[chevy]]></category>
		<category><![CDATA[crook]]></category>
		<category><![CDATA[hawk]]></category>
		<category><![CDATA[hhr]]></category>
		<category><![CDATA[il]]></category>
		<category><![CDATA[illinois]]></category>
		<category><![CDATA[onstar]]></category>
		<category><![CDATA[ripoff]]></category>
		<category><![CDATA[rocco]]></category>
		<category><![CDATA[salesman]]></category>
		<category><![CDATA[ss]]></category>
		<category><![CDATA[the protector]]></category>
		<category><![CDATA[used]]></category>
		<category><![CDATA[xm]]></category>

		<guid isPermaLink="false">http://www.timothyhoogland.com/?p=229</guid>
		<description><![CDATA[I went into the dealership looking to buy a Chevy HHR SS. They had the model that I wanted (Pre-Owned with 14K miles) and I test drove it. I liked the car and it was a good price. I told the sales guy (Rocco) multiple times that I did not want to buy any extended [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.timothyhoogland.com/wp-content/uploads/2011/07/hawkChevy_logo.png" rel="lightbox[229]"><img class="aligncenter size-full wp-image-230" title="hawkChevy_logo" src="http://www.timothyhoogland.com/wp-content/uploads/2011/07/hawkChevy_logo.png" alt="" width="206" height="72" /></a>I went into the dealership looking to buy a Chevy HHR SS. They had the model that I wanted (Pre-Owned with 14K miles) and I test drove it. I liked the car and it was a good price. I told the sales guy (Rocco) multiple times that I did not want to buy any extended protection plans but he kept pushing and pushing the issue. He finally went away to get the paperwork and when he came back he said his &#8220;manager&#8221; approved lower pricing on the &#8220;The Protector&#8221; package, which was $2000 and was originally trying to get me to pay $4000. I again told him no and we got the paperwork started.</p>
<p>When I got the car home I was reading about it online (for performance not reliability as I had looked into that before) and despite me specifically asking him if the HP on the car was the same compared to the manual one, this one was auto, he said yes. When I got home I come to find that its 25HP lower. I then found that there was an upgrade kit that brings it up to 290HP (stock is 235HP on the auto). I got the part number and called the sales guy back. He apologized and tried denying saying that he said they were the same (which he did) and said he would &#8220;get me as close to cost&#8221; on the upgrade part as he could. So I come in and they tell me its $650 after the &#8220;discount&#8221;. I call another dealership and look online and cost is $500 MSRP is $650. So again he lied to me on that.</p>
<p>About a week later I am thoroughly washing the car and when I get to the engine bay I find that the intake piping band clamps are all loose and that the car already had the &#8220;The Protector&#8221; done by the original owner. There was even the sticker in the rear window (they were tinted so I didn&#8217;t see it right away). So he was going to charge me $2000 for something the car already had!</p>
<p>Honestly if you know what you want and the price is right then go ahead. Don&#8217;t let them push you into buying other additional crap and as always the sales people are full of crap. The only honest person there was the cashier, the finance lady, and the lady that setup my OnStar and XM. The sales person I had was &#8220;Rocco&#8221;. He is pushy and your a-typical &#8220;used car salesman&#8221;. I myself are probably never buying from them again. YMMV</p>
]]></content:encoded>
			<wfw:commentRss>http://www.timothyhoogland.com/2011/07/15/my-experience-with-hawk-chevy-in-bridgeview-il/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

