<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-10034633</id><updated>2024-08-28T19:42:46.616-04:00</updated><title type='text'>The Girl Scout Militia</title><subtitle type='html'>I&#39;m trying this blog thing out as a way to say things that I can&#39;t talk about with normal people. If anyone reads this and becomes a fan, great. Actually I&#39;m not even planning on people reading this, so what I say may come off as if I&#39;m talking to myself, but I guess that&#39;s what I&#39;m doing anyways. If you hear me, leave a message of encouragement ;).</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default?start-index=26&amp;max-results=25'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>69</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-10034633.post-6498151574502883021</id><published>2012-03-07T12:05:00.003-05:00</published><updated>2012-03-07T12:33:38.096-05:00</updated><title type='text'>NTLMv2 Client-side</title><content type='html'>&lt;div&gt;&lt;span&gt;In my last post I had successfully used the Http &quot;Negotiate&quot; authentication mechanism to send a Kerberos ticket, which allowed me to login to the domain as my user to access a protected resource. However, to do that I had to enable the AllowTgtSessionKey registry entry in Windows 7, which weakened the security posture. &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;I fiddled with the JRE&#39;s implementation of NtlmV2, which we have to use since our lmcompatibility level will be 4, but could not get it to work for some reason. I tried tracking that down but gave up. The only other solution was to go native. For this, there is a package called JNA. &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;There is a some coverage on the internet of server-based NTLMv2 using JNA (Waffle), but it didn&#39;t touch much on client connections. I tried modifying some of Waffle&#39;s code to do what I wanted, but it seemed like the variables were all set up to use Negotiate, and it wasn&#39;t really getting me anywhere. &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;I realize this isn&#39;t the prettiest code, but it&#39;s what I finally came up with, and works for authenticating via NTLMv2 with default credentials (SSO, no username/password). I achieved this by investigating more of what the JRE was doing in &lt;a href=&quot;http://svn.netlabs.org/repos/java/branches/vendor/oracle/openjdk6/b19/jdk/src/windows/native/sun/net/www/protocol/http/NTLMAuthSequence.c&quot;&gt;NTLMAuthSequence.c&lt;/a&gt; as well as another project (&lt;a href=&quot;http://www.koders.com/java/fidC947154A19659851EF24FFD650433F137E366F9B.aspx&quot;&gt;JavaSVN&lt;/a&gt;), both of which I used to reverse engineer the below client solution. &lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;This does not maintain a connection, it simply performs a one-time handshake, sending all 3 NTLM message types for NTLMv2, and retrieves a cookie value used in later web service calls...&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;    &lt;/span&gt;&lt;span&gt;private HttpCookie doWin7NTLM() throws IOException, GSSException, EncryptorException, NTLMEngineException {&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        String securityPackage = &quot;NTLM&quot;;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;  &lt;/span&gt;// client credentials handle&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        DefaultHttpClient httpclient;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        Sspi.CredHandle cred = new Sspi.CredHandle();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        Sspi.TimeStamp ltime = new Sspi.TimeStamp();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        Sspi.CtxtHandle ctx = new Sspi.CtxtHandle();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        // Grab the initial default client credentials handle&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        int rc = Secur32.INSTANCE.AcquireCredentialsHandle(null,&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            securityPackage,  new NativeLong(Sspi.SECPKG_CRED_OUTBOUND), null,&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            Pointer.NULL, null, null,&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            cred, ltime);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        if (rc != W32Errors.SEC_I_CONTINUE_NEEDED &amp;amp;&amp;amp; rc != W32Errors.SEC_E_OK){&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            throw new Win32Exception(rc);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        }&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        Sspi.SecBufferDesc outBuffDesc = new Sspi.SecBufferDesc();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        Sspi.SecBuffer.ByReference outBuff = new Sspi.SecBuffer.ByReference();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        outBuff.cbBuffer = new NativeLong(512);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        outBuff.BufferType = new NativeLong(Sspi.SECBUFFER_TOKEN);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        outBuff.pvBuffer = new Memory(512);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        outBuff.write();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        outBuffDesc.ulVersion = new NativeLong(0);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        outBuffDesc.cBuffers = new NativeLong(1);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        outBuffDesc.pBuffers = (Sspi.SecBuffer.ByReference[])outBuff.toArray(1);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        outBuffDesc.write();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        NativeLongByReference attr = new NativeLongByReference();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        // Use the default credentials handle to generate an NTLMv2 Type 1 Message (just workstation/domain name)&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        rc = Secur32.INSTANCE.InitializeSecurityContext(cred, null,&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            null, new NativeLong(0), new NativeLong(0),&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            new NativeLong(Sspi.SECURITY_NATIVE_DREP), null, new NativeLong(0), ctx, outBuffDesc,&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            attr, null);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        if (rc != W32Errors.SEC_I_CONTINUE_NEEDED &amp;amp;&amp;amp; rc != W32Errors.SEC_E_OK){&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            throw new Win32Exception(rc);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        }&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        // Read buffer containing NTLM Type 1 message data&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        byte[] result = null;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        outBuffDesc.read();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        outBuff.read();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        if (outBuff.cbBuffer.intValue() &amp;gt; 0) {&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            result = outBuff.pvBuffer.getByteArray(0, outBuff.cbBuffer.intValue());&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        }&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        freeWin7Mem(null, null, outBuffDesc);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        //Send NTLM type 1 message to server&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        httpclient = new DefaultHttpClient();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        HttpContext localContext = new BasicHttpContext();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        HttpGet request = new HttpGet(clientXmlProperties.getProperty(IWA_SERVER_URL));&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        request.setHeader(&quot;Connection&quot;, &quot;keep-alive&quot;);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        request.setHeader(&quot;Authorization&quot;, securityPackage + &quot; &quot; + new String(Base64.encodeBase64(result)));&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        HttpResponse response = httpclient.execute(request, localContext);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        //Receive the NTLM type 2 message from the server&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        String continueToken = response.getFirstHeader(&quot;WWW-Authenticate&quot;).getValue().substring(securityPackage.length() + 1);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        if (continueToken != null)&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        {&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            byte[] continueTokenBytes = Base64.decodeBase64(continueToken.getBytes());&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            Sspi.SecBuffer.ByReference inBuff = new Sspi.SecBuffer.ByReference();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            inBuff.cbBuffer =  new NativeLong(continueTokenBytes.length);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            inBuff.BufferType = new NativeLong(Sspi.SECBUFFER_TOKEN);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            inBuff.pvBuffer = new Memory(continueTokenBytes.length);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            inBuff.pvBuffer.write(0, continueTokenBytes, 0, continueTokenBytes.length);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            inBuff.write();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            Sspi.SecBufferDesc inBuffDesc = new Sspi.SecBufferDesc();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            inBuffDesc.ulVersion = new NativeLong(0);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            inBuffDesc.cBuffers = new NativeLong(1);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            inBuffDesc.pBuffers = (Sspi.SecBuffer.ByReference[])inBuff.toArray(1);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            inBuffDesc.write();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            outBuffDesc = new Sspi.SecBufferDesc();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            outBuff = new Sspi.SecBuffer.ByReference();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            outBuff.cbBuffer = new NativeLong(1024);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            outBuff.BufferType = new NativeLong(Sspi.SECBUFFER_TOKEN);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            outBuff.pvBuffer = new Memory(1024);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            outBuff.write();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            outBuffDesc.ulVersion = new NativeLong(0);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            outBuffDesc.cBuffers = new NativeLong(1);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            outBuffDesc.pBuffers = (Sspi.SecBuffer.ByReference[])outBuff.toArray(1);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            outBuffDesc.write();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            attr = new NativeLongByReference();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            //Use the received type 2 message to generate the type 3 message which hopefully the server will accept&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            rc = Secur32.INSTANCE.InitializeSecurityContext(cred, ctx.isNull() ? null : ctx,&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;                 null, new NativeLong(0), new NativeLong(0),&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;                new NativeLong(Sspi.SECURITY_NATIVE_DREP), inBuffDesc, new NativeLong(0), ctx, outBuffDesc,&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;                attr, null);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            if (rc != W32Errors.SEC_I_CONTINUE_NEEDED &amp;amp;&amp;amp; rc != W32Errors.SEC_E_OK){&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;                throw new Win32Exception(rc);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            }&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            //Grab the data from the native call (i.e. the NTLM type 3 message)&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            byte[] finalResult = null;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            outBuffDesc.read();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            outBuff.read();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            if (outBuff.cbBuffer.intValue() &amp;gt; 0) {&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;                finalResult = outBuff.pvBuffer.getByteArray(0, outBuff.cbBuffer.intValue());&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            }&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            freeWin7Mem(null, null, inBuffDesc);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            freeWin7Mem(cred, ctx, outBuffDesc);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            //Prepare the outgoing NTLM type 3 message in the request header&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            request.setHeader(&quot;Authorization&quot;, securityPackage + &quot; &quot; + new String(Base64.encodeBase64(finalResult)));&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            //Clear data out of httpclient so we can re-use the connection&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            HttpEntity fakeEntity = response.getEntity();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;             if (fakeEntity != null) {&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;                 InputStream instream = fakeEntity.getContent();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;                     BufferedReader reader = new BufferedReader(&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;                             new InputStreamReader(instream));&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;                     // do something useful with the response&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;                     System.out.println(reader.readLine());&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;                 instream.close();&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;             }&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            //Send the NTLM type 3 message&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            httpclient.execute(request, localContext);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        }&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        return getCookie(httpclient);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;    }&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;    private void freeWin7Mem(Sspi.CredHandle credHand, Sspi.CtxtHandle ctxHandle, Sspi.SecBufferDesc outBuff) {&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        if (null != credHand) {&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            Secur32.INSTANCE.FreeCredentialsHandle(credHand);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            credHand = null;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        }&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        Secur32.INSTANCE.FreeContextBuffer(outBuff.getPointer());&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        if (null != ctxHandle) {&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            Secur32.INSTANCE.DeleteSecurityContext(ctxHandle);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            ctxHandle = null;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        }&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;    }&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;    private HttpCookie getCookie(DefaultHttpClient httpClient) throws IOException {&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        HttpCookie wamCookie = null;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        List&lt;cookie&gt; cookies = httpClient.getCookieStore().getCookies();&lt;/cookie&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        for (Cookie cookie : cookies)&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        {&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            if (cookie.getName().equalsIgnoreCase(SECURE_COOKIE_NAME))&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            {&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;                wamCookie = new HttpCookie(cookie.getName(), cookie.getValue());&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;                wamCookie.setMaxAge(CLIENT_EXPIRATION_TIME);&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;                wamCookie.setComment(String.valueOf(new Date()));&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;            }&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        }&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;        return wamCookie;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span&gt;    }&lt;/span&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/6498151574502883021/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/6498151574502883021' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/6498151574502883021'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/6498151574502883021'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2012/03/in-my-last-post-i-had-successfully-used.html' title='NTLMv2 Client-side'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10034633.post-6703181964261786213</id><published>2012-02-28T13:13:00.004-05:00</published><updated>2012-03-07T12:35:02.941-05:00</updated><title type='text'>Windows 7 Negotiate/Kerberos</title><content type='html'>The company I work for had been having issues getting NTLM authentication to work between a Windows 7 client PC, domain servers, and CXF web services. In the end I got it working through HTTP Negotiate Auth and a registry setting, below is the paragraph I sent as an explanation:&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;p class=&quot;MsoNormal&quot; style=&quot;margin-left:.5in&quot;&gt;&lt;/p&gt;&lt;blockquote&gt;With Windows 7 and changing the lmcompatibility level to 4 on the client (Clients use NTLMV2 for auth and NTLMv2 session security if server accepts, Domain controller refuses LM auth responses but accepts NTLM and NTLMv2 -- &lt;a href=&quot;http://technet.microsoft.com/en-us/library/cc960646.aspx&quot;&gt;http://technet.microsoft.com/en-us/library/cc960646.aspx&lt;/a&gt;), the client and server were no longer accepting LM authentication. Kerberos is preferred to NTLM, and since when LM was disabled the servers responded with HTTP 401 errors indicating that the only allowable mechanisms were NTLM and Negotiate (NTLM or Kerberos -- &lt;a href=&quot;http://docs.oracle.com/javase/6/docs/technotes/guides/net/http-auth.html&quot;&gt;http://docs.oracle.com/javase/6/docs/technotes/guides/net/http-auth.html&lt;/a&gt;), it was decided to use Negotiate with Kerberos, since that is what the below Linux code was already doing. On windows this required an extra registry setting &quot;&lt;span style=&quot;font-family:&amp;quot;Courier New&amp;quot;&quot;&gt;HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\Kerberos\Parameters\AllowTgtSessionKey&lt;/span&gt;&quot;, a REG_DWORD set to 1 -- &lt;a href=&quot;http://support.microsoft.com/kb/837361&quot;&gt;http://support.microsoft.com/kb/837361&lt;/a&gt;, along with the regular Kerberos config files (krb5.conf and login.conf).&lt;/blockquote&gt;&lt;p&gt;&lt;/p&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/6703181964261786213/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/6703181964261786213' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/6703181964261786213'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/6703181964261786213'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2012/02/windows-7-ntlm-authentication.html' title='Windows 7 Negotiate/Kerberos'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10034633.post-8980438128885695118</id><published>2011-07-09T14:57:00.002-04:00</published><updated>2011-07-09T14:59:30.472-04:00</updated><title type='text'>Wow</title><content type='html'>it&#39;s been a little while since I&#39;ve posted. Lots of things change, still loving life and doing it in Illinois. This year has been flying by, and I&#39;m about to turn 31. I have a wonderful family and 4 beautiful nieces (about to have another niece/nephew, holidays are getting crowded :)).&lt;br /&gt;&lt;br /&gt;Just bought a 2005 Honda Repsol CBR 1000RR. It&#39;s a lot of fun. I think mostly I put what I&#39;d put here on facebook posts now. Do people still blog?</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/8980438128885695118/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/8980438128885695118' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/8980438128885695118'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/8980438128885695118'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2011/07/wow.html' title='Wow'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10034633.post-7038269218006184069</id><published>2009-09-30T12:17:00.001-04:00</published><updated>2009-09-30T12:19:43.930-04:00</updated><title type='text'>Today&#39;s Interesting News</title><content type='html'>Someone very &lt;a href=&quot;http://www.google.com/hostednews/ap/article/ALeqM5iO_43RxaEh_rJ5Q8xsiexErWAUsgD9B0I6B81&quot;&gt;hungry&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Somebody with a weird &lt;a href=&quot;http://www.google.com/hostednews/ap/article/ALeqM5iqmEn86OQqjZxYqNQqVFJawqQoYQD9B16IHG1&quot;&gt;fetish&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Somebody who is avoiding being hungry, and &lt;a href=&quot;http://www.google.com/hostednews/ap/article/ALeqM5joXJas8j2nqVjBbOuPMq9SFmISiwD9B1M0HO1&quot;&gt;winning himself a 14&quot; TV set&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Well there you go.</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/7038269218006184069/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/7038269218006184069' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/7038269218006184069'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/7038269218006184069'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2009/09/todays-interesting-news.html' title='Today&#39;s Interesting News'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10034633.post-674142671517162220</id><published>2009-08-10T12:44:00.003-04:00</published><updated>2009-08-10T12:54:20.156-04:00</updated><title type='text'>Christian Sexuality and Relevance to Marriage</title><content type='html'>I know not all of the people who read this blog share the same opinion with me, but I felt like sharing an article I recently read discussing the battle of sexuality with the norms of society in postponing marriage.&lt;br /&gt;&lt;br /&gt;I come from a family where all of the siblings have married pretty early in their lives (I think the earliest has been 20), and where all of the siblings are Christian. One of them even a pastor. Another hoping to be a family counselor. I, as most Christians, experience seasons where I feel closer to our savior/creator than others, but also those seasons where I am in the word often and thinking intently of his plan for us.&lt;br /&gt;&lt;br /&gt;In any case, here is the &lt;a href=&quot;http://www.christianitytoday.com/ct/article_print.html?id=84286&quot;&gt;article&lt;/a&gt;, I enjoyed a lot of it, and like how he ended it.</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/674142671517162220/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/674142671517162220' title='10 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/674142671517162220'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/674142671517162220'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2009/08/christian-sexuality-and-relevance-to.html' title='Christian Sexuality and Relevance to Marriage'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><thr:total>10</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10034633.post-8816556091919079522</id><published>2009-07-17T15:42:00.002-04:00</published><updated>2009-07-17T15:48:30.781-04:00</updated><title type='text'>Interesting News of the Day</title><content type='html'>How much was &lt;a href=&quot;http://www.google.com/hostednews/ap/article/ALeqM5g9EUlbxNBjuQ6kpcz3pWNeQQbSWwD99GD4780&quot;&gt;that ball Dwight&lt;/a&gt;?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Best way to &lt;a href=&quot;http://www.google.com/hostednews/ap/article/ALeqM5hw9FyNtj_KDhxaVH7XbUz7-0rFZAD99FSCGG1&quot;&gt;defend yourself from a mountain lion&lt;/a&gt;?</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/8816556091919079522/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/8816556091919079522' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/8816556091919079522'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/8816556091919079522'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2009/07/interesting-news-of-day.html' title='Interesting News of the Day'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10034633.post-3004289851607595392</id><published>2009-06-16T09:41:00.001-04:00</published><updated>2009-06-16T09:42:50.450-04:00</updated><title type='text'>I Think We&#39;re Born Naked</title><content type='html'>I am sorry, I hate the idea of celebrities, but &lt;a href=&quot;http://www.actressarchives.com/news.php?id=16922&quot;&gt;this&lt;/a&gt; is freaking ridiculous. Mother Teresa?</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/3004289851607595392/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/3004289851607595392' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/3004289851607595392'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/3004289851607595392'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2009/06/i-think-were-born-naked.html' title='I Think We&#39;re Born Naked'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10034633.post-254002208834899256</id><published>2009-04-22T21:20:00.002-04:00</published><updated>2009-04-22T21:24:46.895-04:00</updated><title type='text'>Say What?</title><content type='html'>I dare you to read this &lt;a href=&quot;http://www.foxnews.com/story/0,2933,517393,00.html&quot;&gt;article&lt;/a&gt;, give yourself a minute, and then spell it correctly :).&lt;br /&gt;&lt;br /&gt;Also, I have been spending time trying to refinance the house, and ever since college I have found &lt;a href=&quot;http://www.finaid.org/calculators/loanpayments.phtml&quot;&gt;this calculator&lt;/a&gt; very handy, it even lets you print out the amortization schedule.&lt;br /&gt;&lt;br /&gt;In other news, second try this weekend to set up a &lt;a href=&quot;http://www.walmart.com/catalog/product.do?product_id=8222491&quot;&gt;playground set&lt;/a&gt; with my brother Chadwick for little Addison, Sophie, and upcoming niece Ruby Anne. Last weekend got a little tiring with an overnight lockin with the middle-schoolers from the Moundford Free Methodist Church, and Chadwick and I got to the morning and decided that tiredness along with the weather dictated that we give it another shot this weekend, so wish us well.&lt;br /&gt;&lt;br /&gt;Peace.</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/254002208834899256/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/254002208834899256' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/254002208834899256'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/254002208834899256'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2009/04/say-what.html' title='Say What?'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10034633.post-3953166218792883008</id><published>2009-04-08T13:43:00.003-04:00</published><updated>2009-04-08T13:47:07.334-04:00</updated><title type='text'>Funny News</title><content type='html'>There seems to be a lot of weird or funny news going on today...here are some samples..&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.latimes.com/news/nationworld/world/wire/sns-ap-odd-deers-bad-day,1,2436741.story&quot;&gt;Crazy Deer&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.google.com/hostednews/ap/article/ALeqM5i_ZTilz-8Cv-mEmnRWpTtvvyuSDgD97DQD4O1&quot;&gt;How to clean with gasoline&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.google.com/hostednews/ap/article/ALeqM5ja7spgFfV8OYI7QJ8gcMwFR6dHWgD97DQG680&quot;&gt;Want to get Deported? Are you gay?&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.google.com/hostednews/ap/article/ALeqM5iM4LuIRgGgK0QnQCq5dHlgB-gK2QD97DQJ4G0&quot;&gt;How to discipline children riding your bus&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The views expressed here do not necessarily represent those of Larry.</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/3953166218792883008/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/3953166218792883008' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/3953166218792883008'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/3953166218792883008'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2009/04/funny-news.html' title='Funny News'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10034633.post-5871087442284840600</id><published>2009-04-07T09:26:00.002-04:00</published><updated>2009-04-07T09:34:11.907-04:00</updated><title type='text'>Update</title><content type='html'>Well, I have been praying for peace around the world, even though I have not had time to update the blog on the specific countries. I will always continue to pray that the oppressed will find freedom. It is almost the end of Lent, and time to celebrate Good Friday.&lt;br /&gt;&lt;br /&gt;The basement is still flooded :(. I have not had time to stay home to watch a waterproofing company take care of the problem yet, so I shop vac everyday. That has become a very exciting ritual :). The special exit pump wore out today, but Home Depot exchanged it for a new one, so my back is spared yet again :).&lt;br /&gt;&lt;br /&gt;Staci blew me away in our bracket pool this year, and like most years, it comes down to who picks the right champion. My hat&#39;s off to the 4 of 6 people in our bracket that chose UNC to win it all. I just didn&#39;t want them to :). So, she gets a Papa Murphy&#39;s pizza of her choosing (I know, we don&#39;t bet big :) ), and a special little trophy thing in her Yahoo profile :).&lt;br /&gt;&lt;br /&gt;The whole family is coming down for Easter this weekend, besides Darin, Cassie, and Mady, who I am sure would want to be here, but since Mady just came along, we will see them soon enough :). It should be a great time, with great food prepared by the culinary delights of Ms. Staci.&lt;br /&gt;&lt;br /&gt;My new job is going well, adjusting to the smaller office of it all. It is great being so close to home, and cutting back at least an hour of my day. Staci and I also joined a local gym (Club Fitness, which was running a deal where it was $500 for 3 years).&lt;br /&gt;&lt;br /&gt;Peace out holmes.</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/5871087442284840600/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/5871087442284840600' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/5871087442284840600'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/5871087442284840600'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2009/04/update.html' title='Update'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10034633.post-7919603415889400966</id><published>2009-02-27T23:15:00.002-05:00</published><updated>2009-02-27T23:18:38.260-05:00</updated><title type='text'>Pray for Somalia</title><content type='html'>So we probably all remember when Clinton and the U.N. tried to give aid to Somalia because of the civil war that it was experiencing in the 90&#39;s. What we all might not know, or have shown to us each day is that that civil war is still ongoing, and that Somalia is an impoverished country overrun by different ethnic groups, and run by warlords.&lt;br /&gt;&lt;br /&gt;We hear about the different ships that the pirates take over each month. Those cruise ships or tankers, or whatever that are unlucky and unskilled enough to get taken over by somalian pirates usually payoff their captors so that they can continue on their way, and that just prolongs the conflict because it funds the pirates and different warring factions.&lt;br /&gt;&lt;br /&gt;May God help these people sort out their problems and give them some sort of national pride to unite on, and help them focus on how to treat their fellow citizens well.</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/7919603415889400966/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/7919603415889400966' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/7919603415889400966'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/7919603415889400966'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2009/02/pray-for-somalia.html' title='Pray for Somalia'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10034633.post-6294313242073753478</id><published>2009-02-26T09:07:00.003-05:00</published><updated>2009-02-26T09:20:04.373-05:00</updated><title type='text'>Pray for Darfur</title><content type='html'>Apparently the war in Darfur stems from decades of drought and over-population in the Darfur region of Sudan, with some of the reasoning also being that the Arab-dominated government of Sudan has been treating non-Arabs in the country in a discriminatory fashion.&lt;br /&gt;&lt;br /&gt;That has caused some to rebel against the government, which started around 2003-2004 to bomb the villages where the rebels have been believed to be coming from, as well as raping their women, killing most everyone, and burning down the villages.&lt;br /&gt;&lt;br /&gt;The war has thus become genocidal in nature, with the tribes being attacked by the government, and only slight rebel efforts to fight back. The UN will not label it as a genocide, despite mass murders and rapes, because the &#39;intent&#39; of genocide seems to be missing. Some sort of limited peace was reached in late 2006, but the conflict continues.&lt;br /&gt;&lt;br /&gt;Please pray for Darfur, that all people can live together in unity and not oppress each other when given the opportunity.</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/6294313242073753478/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/6294313242073753478' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/6294313242073753478'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/6294313242073753478'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2009/02/pray-for-darfur.html' title='Pray for Darfur'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10034633.post-8669945546795598191</id><published>2009-02-25T08:59:00.002-05:00</published><updated>2009-02-26T09:07:25.685-05:00</updated><title type='text'>Pray for the Congo</title><content type='html'>As I pray for these conflicts, I will try to go from the conflicts with the highest current casualty or death count to the lowest, so please bear with me if I make a mistake.&lt;br /&gt;&lt;br /&gt;Today I am praying for the Congo. The fight is similar as that portrayed in Hotel Rwanda, however this conflict is newer, and stems from an old general leaving the government with some troops to hole up in Eastern Congo, where he tries (or at least says he is trying) to prevent genocide over the ethnic Tutsis there.&lt;br /&gt;&lt;br /&gt;There was a brief peace agreement reached in January 2008, but it was shaky because not all of the parties involved in the conflict took part in the agreement, and later the war erupted again. However, recently Laurent Nkunda, the leader of the rebel forces which protect Tutsis was captured (January 2009), so the end of at least the open war may be imminent.&lt;br /&gt;&lt;br /&gt;Please pray that the war will end and that both the Tutsis and Hutus can live in peace once it is over.</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/8669945546795598191/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/8669945546795598191' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/8669945546795598191'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/8669945546795598191'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2009/02/pray-for-congo.html' title='Pray for the Congo'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10034633.post-7643335255042587934</id><published>2009-02-23T13:40:00.004-05:00</published><updated>2009-02-23T17:29:31.229-05:00</updated><title type='text'>Lent &#39;09</title><content type='html'>This year for Lent, I&#39;m going to do something different. Normally it is giving up something near and dear to me, so as to be closer to god. I remember giving up chocolate chip cookies (not sure how that applies) in high school, and more recently giving up TV or video games.&lt;br /&gt;&lt;br /&gt;Another alternative for Lent is to actively do something to draw you closer to God. While doing devotions and reading the Bible daily are very good goals and something I want to do in life eventually, right now (and I&#39;m talking the actual 40 days of lent) I have to be realistic and say that I honestly do not have the time, and the things taking up my time are all immovable, without a complete and disrupting life change (changing careers, dropping out of school, not finding a job, etc.).&lt;br /&gt;&lt;br /&gt;Instead, what I&#39;ve decided to do for Lent this year is to actively pray for peace, for all of God&#39;s children. Normally I&#39;m not even the most peace-prone person, but I believe our country and our world are headed in divisive directions at the moment, and I don&#39;t understand it all. I want to try to understand the conflicts of all of the world&#39;s peoples, and pray for them to reach a peace in respect to each of those individual conflicts. I think God would want people to live in peace, and out of peace have a foundation for finding common ground in a relationship with him (some may disagree).&lt;br /&gt;&lt;br /&gt;So it will be that I will try to learn about the various &lt;a href=&quot;http://en.wikipedia.org/wiki/Ongoing_conflicts&quot;&gt;conflicts on earth&lt;/a&gt; (in Afghanistan, Darfur, Somalia, Iraq, Georgia, Chechnya, Israel/Palestine, Congo, etc.), and pray for each of them individually and for us as a race. I will utilize prayer by speaking directly to God, and seek personal peace as well. This is a very different theme for me.</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/7643335255042587934/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/7643335255042587934' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/7643335255042587934'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/7643335255042587934'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2009/02/lent-09.html' title='Lent &#39;09'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10034633.post-308702240201890426</id><published>2009-02-23T10:18:00.003-05:00</published><updated>2009-02-23T10:30:10.531-05:00</updated><title type='text'>Recent Events</title><content type='html'>Just got back from a nice weekend with the brother/sister-in-law (Chad and Sarah) and my beautiful nieces&#39; (Addison and Sophie) house. We were there celebrating my niece Sophie&#39;s 1st birthday, and she had a fun party Saturday afternoon. The weekend was full of eating, playing Phase 10 &amp;amp; euchre, and talking.&lt;br /&gt;&lt;br /&gt;My other brother Brady was also there to celebrate, it&#39;s always nice to get a chance to hang out with him as well.&lt;br /&gt;&lt;br /&gt;Yesterday, after getting over an upset stomach, Staci and I drove back home to O&#39;Fallon, did our Sunday ritual of grocery shopping, and I finished my homework for this week as she helped do the laundry.&lt;br /&gt;&lt;br /&gt;Recent books that I&#39;m reading or have read include Outliers by Malcolm Gladwell, A Thousand Splendid Suns by Khaled Hosseini, Dreams From My Father by Barack Obama, and The Last Lecture by Randy Pausch. I have also just requested The Shack by William Young, because of the endorsement it received by my brother and trying to stay up on things. All of this would not be possible without the invention of CD-based audiobooks, which are my constant companions during my commute. Beyond these, I plan on trying to make it through most of the top 10 books from 2008 recommended by Amazon as soon as I get the chance. I haven&#39;t read anything besides school required reading for years, so this is a good change.&lt;br /&gt;&lt;br /&gt;All of the rest of my time is spent doing things. I am really into time management these days, and my weeks consist of working, sleeping, job hunt, school, basement, and keeping all of my interpersonal relationships in order. Honestly I can&#39;t wait for 3 of these things to be over (school, basement, and the job hunt). Mainly the job hunt though, because then the others will be made easier.&lt;br /&gt;&lt;br /&gt;This post has been a bunch of logical statements because right now my mind is in a zone :). I swear my next post will probably make less sense. Have a great Monday!</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/308702240201890426/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/308702240201890426' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/308702240201890426'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/308702240201890426'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2009/02/recent-events.html' title='Recent Events'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10034633.post-7598408829346277631</id><published>2009-02-12T14:48:00.002-05:00</published><updated>2009-02-12T14:52:46.977-05:00</updated><title type='text'>Wazzup NOW?</title><content type='html'>I know some of you probably expect me to blog about the crappy economy (personal situation), or wet basements (personal situation), or maybe even Obama&#39;s stimulus plan for our nation. But I think today I&#39;ll take it in a different direction completely.&lt;br /&gt;&lt;br /&gt;I saw this &lt;a href=&quot;http://www.cnn.com/2009/CRIME/02/12/coolparents.drinking/index.html?eref=rss_topstories&quot;&gt;article&lt;/a&gt; today and it kind of upset me, but not as it might some. I think that parents allowing a child to sample alcohol in the confines of their own home is not so bad as long as it is under a good deal of supervision (i.e. not letting them go drive somewhere, etc). However, in this article, all the mom is getting charged with is giving alcohol to a minor and reckless conduct. Hello, the FREAKING kid killed somebody! That is moronic. I can&#39;t believe all this lady is facing is a possible year and jail and some fines. That is definitely coming close to being an accomplice to manslaughter.&lt;br /&gt;&lt;br /&gt;Anyways, to touch on wet basements. If you own a Ridgid wet dry vac, and have a LOT of water to vacuum, the pump is TOTALLY worth the $40 it costs to hook it up to a hose. However, the real solution (which costs $7K), may or may not be worth it, dependent upon if you have a job or not.</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/7598408829346277631/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/7598408829346277631' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/7598408829346277631'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/7598408829346277631'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2009/02/wazzup-now.html' title='Wazzup NOW?'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10034633.post-7901851952512433353</id><published>2009-01-20T13:16:00.002-05:00</published><updated>2009-01-20T13:18:28.424-05:00</updated><title type='text'>New Prez</title><content type='html'>Word up to our new prez, Mr. BARACK!&lt;br /&gt;&lt;br /&gt;Seriously, you gave a good speech, and we all know that the &#39;flub&#39; of the oath was really just you taking in the moment (which would have been huge for anyone).&lt;br /&gt;&lt;br /&gt;Congratulations are definitely in order, although I&#39;m sure a lot of press time in the next week is going to go to Lowery&#39;s words:&lt;br /&gt;&lt;br /&gt;“We ask you to help us work for that day when black will not be asked to give back, when brown can stick around, when yellow will be mellow, when the red man can get ahead, man, and when white will embrace what is right,” Lowery prayed.&lt;br /&gt;&lt;br /&gt;Of course we as white people should and will embrace what is right, just like everyone else :).</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/7901851952512433353/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/7901851952512433353' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/7901851952512433353'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/7901851952512433353'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2009/01/new-prez.html' title='New Prez'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10034633.post-5935950886801386746</id><published>2009-01-08T13:53:00.002-05:00</published><updated>2009-01-08T13:55:49.596-05:00</updated><title type='text'>Communism</title><content type='html'>So after my favorite presidential candidate Mike Huckabee dropped out of the race, I found myself supporting Barack Obama for president.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I know our economy needs (or thinks it needs) stimulating, but doesn&#39;t spending a trillion dollars of deficit for the foreseeable future kind of make you think we live in a Quote-unquote Communist state, however unofficially? Giving these amounts of money to the entire nation certainly does seem like a re-distribution of wealth, especially when it is happening pre-emptively.&lt;br /&gt;&lt;br /&gt;Oh well.</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/5935950886801386746/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/5935950886801386746' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/5935950886801386746'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/5935950886801386746'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2009/01/communism.html' title='Communism'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10034633.post-8167349446680610165</id><published>2009-01-08T13:50:00.002-05:00</published><updated>2009-01-08T13:53:28.374-05:00</updated><title type='text'>Nice kidneys, can I touch them?</title><content type='html'>I&#39;m sure some of you have heard about this, where a man is trying to get &lt;a href=&quot;http://www.cbsnews.com/stories/2009/01/08/earlyshow/main4707809.shtml&quot;&gt;his divorcing wife to settle $1.5 million for a kidney he donated to her a few years ag&lt;/a&gt;o.&lt;br /&gt;&lt;br /&gt;I see a different angle on this. I know that in China and other shady places around the globe, people can go to sleep one day, and wake up the next in a bathtub with a few of their organs removed, while certain people collect the profits. What I think this may lead to is Chinese (or other place) mail-order brides, who come over to the United States at the behest of some really rich single person in need of an organ, donate it to that person, and then collect their fee in the divorce through a big hush-hush settlement. Scary future...</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/8167349446680610165/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/8167349446680610165' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/8167349446680610165'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/8167349446680610165'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2009/01/nice-kidneys-can-i-touch-them.html' title='Nice kidneys, can I touch them?'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10034633.post-3813845025696319211</id><published>2008-12-04T09:17:00.002-05:00</published><updated>2008-12-04T09:20:54.971-05:00</updated><title type='text'>2nd Amendment</title><content type='html'>This past fall I decided that it was time for me to join the ranks of those permitted to bear arms. In Illinois, state law dictates that you must possess a FOID card in order to purchase a firearm. I applied for mine back in September, and recently received it. I also attended and passed hunter&#39;s safety (50 hicks and me out in New Baden, IL, most of them under the age of 13).&lt;br /&gt;&lt;br /&gt;I purchased a firearm to make my home safer (argue what you may), but now it seems like even the &lt;a href=&quot;http://idle.slashdot.org/article.pl?sid=08%2F12%2F04%2F0433234&amp;amp;from=rss&quot;&gt;elderly are able to do that, but this time, via a prescription from their doctor&lt;/a&gt;. I&#39;m sorry, but this is pretty scary, and even makes me upset somewhat that insurance can be used for that purpose.&lt;br /&gt;&lt;br /&gt;Happy Thursday :).</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/3813845025696319211/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/3813845025696319211' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/3813845025696319211'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/3813845025696319211'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2008/12/2nd-amendment.html' title='2nd Amendment'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10034633.post-8818609150693531189</id><published>2008-11-26T09:20:00.003-05:00</published><updated>2008-11-26T09:28:20.795-05:00</updated><title type='text'>Gas @ 1.39</title><content type='html'>On the way to my school, I drive on a less than desirable street Grand Blvd., south from I-70. I lock my doors immediately when I know I&#39;ll be driving any distance on it, and luckily I&#39;m only on it for 2 and a half miles.&lt;br /&gt;&lt;br /&gt;However, it also has the cheapest freakin&#39; gas in the bi-state area around St. Louis. Prices are consistently 10 cents cheaper than anywhere else in St. Louis, and they&#39;re often 25 to 30 cents cheaper than what I can get on the Illinois side. However, often I do not believe the risk premium of stepping out of my car to pump the cheaper gas is worth the dollar savings I&#39;d make in filling my little tank up.&lt;br /&gt;&lt;br /&gt;That is, until yesterday. If you&#39;re like me, and you&#39;ve been watching gas prices fall for the past month and a half, you have to wonder when it&#39;s all going to end, and we&#39;ll reach the end of the valley. I have to believe that time is coming soon. I&#39;ve noticed the price decreases at least slowing down a little bit (instead of 20 cents a week, they might be 10 cents now). The price yesterday at the BP I filled up at stood at $1.39, so I had to do it. I don&#39;t know when they will ever be that low again, and since it stands at a cheaper price than it was even 10 years ago, I think the historical significance of that choice far outweighs any potential risk on my life I incurred by stopping to get gas there.&lt;br /&gt;&lt;br /&gt;Prices might keep falling, and if so I&#39;ll keep reveling in that, but seriously, it is getting a lot easier to get around town.&lt;br /&gt;&lt;br /&gt;P.S. Don&#39;t worry, not only does the BP have the cheapest gas, it&#39;s also the most well-lit gas station along the dangerous part of the road. So, either I&#39;ll be safer, or the bad guys will have an easier time trying to snuff me out because they&#39;ll be able to aim better.</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/8818609150693531189/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/8818609150693531189' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/8818609150693531189'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/8818609150693531189'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2008/11/gas-139.html' title='Gas @ 1.39'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10034633.post-5091125751507173947</id><published>2008-11-07T09:59:00.004-05:00</published><updated>2008-11-07T10:07:15.030-05:00</updated><title type='text'>Post-Election Living</title><content type='html'>I&#39;m pretty sure everyone is excited that Barack Obama is going to be our next president. Before you express objection to that, the reason I said it was that now we do not have to watch 24/7 political coverage telling us why this candidate or that is better on this topic or that anymore.&lt;br /&gt;&lt;br /&gt; Instead, we get to enjoy the fall, which I feel that God has sort of postponed for us this year, so that we could fully enjoy it after the election ;). The colors around here are just starting to peak, and the weather is starting to turn. I heard on the radio this morning our low tonight is 35. WHOO HOO! 30&#39;S!&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhnRJD83n0eHV-nrpY6mm-tzxma-F7ylPH5WTct8TOLQFqGVnhiX6dIedm4vxw1bpininYmDySa0QeMHV11aSSz3V6RfaCxT9UyUZ8Y4oP2lMxUbXmFSNt3WjQR38ciceM-Qenw/s1600-h/Fall-Leaves.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 246px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhnRJD83n0eHV-nrpY6mm-tzxma-F7ylPH5WTct8TOLQFqGVnhiX6dIedm4vxw1bpininYmDySa0QeMHV11aSSz3V6RfaCxT9UyUZ8Y4oP2lMxUbXmFSNt3WjQR38ciceM-Qenw/s320/Fall-Leaves.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5265932198821721874&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt; So kick back with some cider and a loved one, and enjoy the indoor living you&#39;ll get to do for the next 4 or 5 months. Try to get outdoors to see the colors and enjoy a couple of activities, but rest up :). I know I&#39;ll be enjoying all the family time and otherwise taking part in things I really enjoy doing.</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/5091125751507173947/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/5091125751507173947' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/5091125751507173947'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/5091125751507173947'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2008/11/post-election-living.html' title='Post-Election Living'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhnRJD83n0eHV-nrpY6mm-tzxma-F7ylPH5WTct8TOLQFqGVnhiX6dIedm4vxw1bpininYmDySa0QeMHV11aSSz3V6RfaCxT9UyUZ8Y4oP2lMxUbXmFSNt3WjQR38ciceM-Qenw/s72-c/Fall-Leaves.jpg" height="72" width="72"/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10034633.post-324397622755716353</id><published>2008-11-03T14:58:00.004-05:00</published><updated>2008-11-03T15:05:58.820-05:00</updated><title type='text'>Cruise!</title><content type='html'>Well I&#39;m back from my cruise with Staci and my parents. We had a great time, even if the weather did not cooperate. We were able to stop in Cozumel and ride a scooter around the island, allowing us to visit desolate beaches, margarita stands without any electricity, and a hidden tequila factory for some creamy tequila! (That should be good for winter-time hot cocoa or something).&lt;br /&gt;&lt;br /&gt;   We also visited Jamaica and hiked &lt;a href=&quot;http://dunnsriverfallsja.com/&quot;&gt;Dunn River Falls&lt;/a&gt;! That was pretty awesome, and had a great time doing it.&lt;br /&gt;&lt;br /&gt;   As for our time on the boat, we ate a TON, enjoying it immensely. I probably had sushi about 4 times, which was pretty good. As a family we collected 4 different ships on a stick, from 4 trivia contests (note we were 4 for 4, we thought about taking our previous trophies to our next trivia events, but didn&#39;t feel like scaring the competition that much). After that we decided that 4 was enough since we couldn&#39;t lose and felt bad for everyone else that was stick-less.&lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://4.bp.blogspot.com/_MbixIk1PB7M/SQ9ZGqU4azI/AAAAAAAAABg/vt9wVzs3Bzs/s1600-h/Western+Caribbean+Staci+And+I+Oct+2009+092.jpg&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;&quot; src=&quot;http://4.bp.blogspot.com/_MbixIk1PB7M/SQ9ZGqU4azI/AAAAAAAAABg/vt9wVzs3Bzs/s320/Western+Caribbean+Staci+And+I+Oct+2009+092.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5264524460395359026&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;   The water was pretty choppy, and the wind was crazy. The sun that we actually received was only shone upon us on Friday afternoon, and we soaked it up like crazy while we could.&lt;br /&gt;&lt;br /&gt;   It&#39;s sad to be back, but we can look forward to having plenty of fun vacations in the future! :). Come by and we can show you our souvenir cup collection sometime....</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/324397622755716353/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/324397622755716353' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/324397622755716353'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/324397622755716353'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2008/11/cruise.html' title='Cruise!'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_MbixIk1PB7M/SQ9ZGqU4azI/AAAAAAAAABg/vt9wVzs3Bzs/s72-c/Western+Caribbean+Staci+And+I+Oct+2009+092.jpg" height="72" width="72"/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10034633.post-1232040350481532693</id><published>2008-11-03T14:53:00.002-05:00</published><updated>2008-11-03T14:57:50.621-05:00</updated><title type='text'>Sunday School</title><content type='html'>Since when did going to Sunday School become an endorsement of the Republican party only? I love going to church, and I really enjoy the people I&#39;ve come into contact with through my Sunday School, but man do they over-politicize this political season. I am definitely in the pro-life camp, but it&#39;s as if that stance is the only one that matters in the coming election, and is the only one that has the ethics of God in mind.&lt;br /&gt;&lt;br /&gt;    I even have fellow Christians telling me that the &#39;socialistic&#39; ways of Obama wanting to give money from the rich to the poor is ungodly.&lt;br /&gt;&lt;br /&gt;    I think we pick too few social issues to determine our candidate, and are willfully choosing to remain ignorant by trying to label one candidate or another as more in line with our beliefs, basically forcing square pegs into round holes.&lt;br /&gt;&lt;br /&gt;    I am no longer calling myself a republican nor a democrat. I am definitely a Christian, but loving all of God&#39;s children I can vote for whomever will do the best for them as a whole.</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/1232040350481532693/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/1232040350481532693' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/1232040350481532693'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/1232040350481532693'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2008/11/sunday-school.html' title='Sunday School'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-10034633.post-4704985689990764179</id><published>2008-10-20T12:35:00.000-04:00</published><updated>2008-10-20T12:36:39.395-04:00</updated><title type='text'>Michigan, how I feel for you...</title><content type='html'>&lt;span class=&quot;story_comment_back_quote&quot;&gt;Michigan, you know I love you. I&#39;d love to live there if you had the jobs that keep me gainfully employed, but alas you don&#39;t. Chicken and the egg?&lt;br /&gt;&lt;br /&gt;For a humorous/scary/wtf way to end an &lt;a href=&quot;http://www.foxnews.com/story/0,2933,440947,00.html&quot;&gt;article&lt;/a&gt;, please see the last paragraph.&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://larryboymi.blogspot.com/feeds/4704985689990764179/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/10034633/4704985689990764179' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/4704985689990764179'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/10034633/posts/default/4704985689990764179'/><link rel='alternate' type='text/html' href='http://larryboymi.blogspot.com/2008/10/michigan-how-i-feel-for-you.html' title='Michigan, how I feel for you...'/><author><name>Monogenes</name><uri>http://www.blogger.com/profile/15754260567844330918</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='26' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgapRoaaniDzsdCIvMRG_NhnRUoOZW3qwSmdV8qb8GaFNax6QmrocyOADR0wepsnW_ckUqrOtJ6kW_GvGk0CMWFFv6f6GtQPHKZA9DLNFvKyCPX6EezW0heNerlfXoJUg/s220/p.jpg'/></author><thr:total>0</thr:total></entry></feed>