<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Lamoree Software Blog</title>
<link>http://www.lamoree.com/machblog/</link>
<description>Lamoree Software Blog</description>
<language>en-us</language>
<pubDate>Fri, 18 May 2012 15:07:04 -0700</pubDate>
<lastBuildDate>Fri, 02 Mar 2012 10:56:00 -0700</lastBuildDate>
<generator>MachBlog</generator>
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
<managingEditor>admin@lamoree.com</managingEditor>
<webMaster>admin@lamoree.com</webMaster>
<item>
<title>JRun failed to start because its side-by-side configuration is incorrect</title>
<link>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=1C35D18C%2D4E18%2D4D78%2D82C489E4511C6F82</link>
<description>
After a Windows Update to a Windows Server 2008 64-bit R2 machine a couple months ago, a few services stopped working properly. Specifically, the JRun service launcher (%JRUN_HOME%\bin\jrunsvc.exe) and the version of Apache Solr packaged with ColdF...
</description>
<category>ColdFusion</category>
<category>Windows</category>
<pubDate>Fri, 02 Mar 2012 10:56:00 -0700</pubDate>
<guid>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=1C35D18C%2D4E18%2D4D78%2D82C489E4511C6F82</guid>
</item>
<item>
<title>OpenCF Summit 2012</title>
<link>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=C145967B%2D40E9%2D4457%2DA3293C315AB0BC4F</link>
<description>
I&apos;m presenting today at OpenCF Summit on automating CFML application build, test, and deploy.
I&apos;m actively working on my slides for two upcoming presentations. I&apos;ve created a Github repository for the slides and the sample application: Automat...
</description>
<category>CFML</category>
<pubDate>Sun, 26 Feb 2012 00:25:00 -0700</pubDate>
<guid>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=C145967B%2D40E9%2D4457%2DA3293C315AB0BC4F</guid>
</item>
<item>
<title>Checking Apple Repair Status</title>
<link>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=281A98E2%2D92EA%2D441A%2D8C8CE169404A2E1C</link>
<description>
My iMac is in the shop. Again. This time it&apos;s getting a replacement hard disk. It&apos;s been almost 6 days since I dropped it off. I got tired of refreshing the Apple Repair Status page, so I wrote a script to do it:
RDU=https://selfsolve.apple.com/...
</description>
<category>Apple</category>
<pubDate>Mon, 12 Dec 2011 11:47:00 -0700</pubDate>
<guid>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=281A98E2%2D92EA%2D441A%2D8C8CE169404A2E1C</guid>
</item>
<item>
<title>&quot;For a Limited Time!!&quot; Adding a CSS class for a short duration.</title>
<link>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=4B35EB4A%2DABA6%2D4EFA%2DBBBEC13BA5512DCE</link>
<description>
I recently had a reason to create a visual effect in which a bit of text pulsed with a bright color once. I wanted to use CSS3 animation to be kind to the CPU and provide a smooth transition from the text&apos;s normal color to the highlight color. I co...
</description>
<category>JavaScript</category>
<pubDate>Wed, 02 Nov 2011 17:12:00 -0700</pubDate>
<guid>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=4B35EB4A%2DABA6%2D4EFA%2DBBBEC13BA5512DCE</guid>
</item>
<item>
<title>Password Managers</title>
<link>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=91CB9BF4%2D7AD4%2D4FBA%2DA16855EF669D81B6</link>
<description>
I&apos;m often asked which password manager I use. Almost a decade ago, I actually wrote a web application that stored passwords in a blowfish encrypted file. It worked well, but it required internet connectivity and had a tiny feature set. I switched t...
</description>
<category>Security</category>
<pubDate>Thu, 20 Oct 2011 11:30:00 -0700</pubDate>
<guid>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=91CB9BF4%2D7AD4%2D4FBA%2DA16855EF669D81B6</guid>
</item>
<item>
<title>jQuery.data() and integer lists and strings and numbers. Oh my.</title>
<link>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=242BE33A%2DEAA4%2D4C20%2D841CC812EDA8CEA1</link>
<description>
The jQuery Data feature is pretty awesome. However, there&apos;s a gotcha that has, um, gotten me several times when stuffing an HTML5 data attribute with a list of integers that I expect to parse as an array in my JavaScript. For example, consider the...
</description>
<category>JavaScript</category>
<category>jQuery</category>
<pubDate>Mon, 17 Oct 2011 12:24:00 -0700</pubDate>
<guid>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=242BE33A%2DEAA4%2D4C20%2D841CC812EDA8CEA1</guid>
</item>
<item>
<title>Pining for Ternary Operations in CFML</title>
<link>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=E6E9D3B0%2D33D0%2D48C4%2DB27F219579F41A66</link>
<description>
The lack of a ternary operation often makes for extra verbosity in CFML. When I&apos;m pining for this feature, it&apos;s often when doing something like this:
&amp;lt;cfif structKeyExists(names, &amp;quot;name&amp;quot;)&amp;gt;
&amp;lt;cfset doSomethingInteresting(nam...
</description>
<category>CFML</category>
<pubDate>Wed, 12 Oct 2011 11:09:00 -0700</pubDate>
<guid>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=E6E9D3B0%2D33D0%2D48C4%2DB27F219579F41A66</guid>
</item>
<item>
<title>Dealing with UUID values in URLs</title>
<link>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=1DD14B3A%2D12A6%2D4F4C%2D96C54FE3C5950BAE</link>
<description>
A few days ago, David Flinner posted a comment via Google+ about a blog post I made recently. I saw the ugly URL back to my blog and clicked on it for no particular reason. My instance of MachBlog threw an exception because the URL contained a UUID...
</description>
<category>Apache</category>
<category>MachBlog</category>
<pubDate>Fri, 30 Sep 2011 12:36:00 -0700</pubDate>
<guid>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=1DD14B3A%2D12A6%2D4F4C%2D96C54FE3C5950BAE</guid>
</item>
<item>
<title>Removing a double-slash sequence from URLs</title>
<link>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=664DAD55%2D7F63%2D4A0B%2DA500704F0547F6EF</link>
<description>
Here&apos;s a mini, nay micro, tip on Java regex goodness. I often build up URLs from bits and pieces of strings where there is not a strict convention for whether a leading/trailing slash should exist before/after a directory. The easiest way to deal ...
</description>
<category>CFML</category>
<category>Java</category>
<pubDate>Tue, 13 Sep 2011 16:57:00 -0700</pubDate>
<guid>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=664DAD55%2D7F63%2D4A0B%2DA500704F0547F6EF</guid>
</item>
<item>
<title>Charles Proxy Firefox Extension Manual Installation</title>
<link>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=40365293%2DAE81%2D42ED%2DBB0A5668639CF811</link>
<description>
This post will probably be useful to about four people in the world. But I&apos;ll throw it up here for their benefit.
I installed a copy of Firefox 6.0.1 to do some work on HTML5 forms. So that it wouldn&apos;t discombobulate my existing Firefox 3.6.21...
</description>
<category>Firefox</category>
<pubDate>Thu, 01 Sep 2011 06:17:00 -0700</pubDate>
<guid>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=40365293%2DAE81%2D42ED%2DBB0A5668639CF811</guid>
</item>
<item>
<title>CFLDAP and master/slave failover</title>
<link>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=9F2D5F47%2DBE80%2D4EF8%2DB5DC4F79B1A22642</link>
<description>
Anybody who has used tags like CFLDAP and CFHTTP much knows that the timeout attribute is frustratingly ineffectual. If the target server is down or otherwise slow to respond, it can hold up the CFML engine response. Charlie Arehart has a great pos...
</description>
<category>CFML</category>
<category>Java</category>
<pubDate>Fri, 26 Aug 2011 08:26:00 -0700</pubDate>
<guid>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=9F2D5F47%2DBE80%2D4EF8%2DB5DC4F79B1A22642</guid>
</item>
<item>
<title>Error 0xD0000022</title>
<link>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=44C224D5%2DF06C%2D485C%2DA28AEBA0EA6BCE17</link>
<description>
I encountered an issue launching Microsoft Internet Explorer 7 from Multi-Browser Viewer. Specifically, C:\Documents and Settings\All Users\Application Data\Multi-Browser Viewer\MBV_IE7.exe displayed an error message in a Spoon Studio: The app has ...
</description>
<category>Windows</category>
<pubDate>Fri, 12 Aug 2011 10:28:00 -0700</pubDate>
<guid>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=44C224D5%2DF06C%2D485C%2DA28AEBA0EA6BCE17</guid>
</item>
<item>
<title>ColdFusion File Uploads and Content-Type</title>
<link>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=B8070912%2D8A81%2D4AB5%2D874F9E04B68028C4</link>
<description>
I only today stopped to think about the content type members of the structure returned from a CFFILE[@action=&quot;upload&quot;] tag. ColdFusion splits the value into two elements, contentType and contentSubType. Consider the following:
&amp;lt;cffile actio...
</description>
<category>ColdFusion</category>
<pubDate>Thu, 28 Jul 2011 16:09:00 -0700</pubDate>
<guid>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=B8070912%2D8A81%2D4AB5%2D874F9E04B68028C4</guid>
</item>
<item>
<title>Please don&apos;t create zipx archives.</title>
<link>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=99D4D0B8%2D4449%2D459C%2D947CAA17E079D546</link>
<description>
What is a zipx file you ask? It&apos;s an archive created with WinZip 12.1, or later, that takes advantage of modern compression methods. The so-called legacy zip archive has been around for very long time, and since then advances have been made that pr...
</description>
<category>Interoperability</category>
<pubDate>Tue, 12 Jul 2011 10:57:00 -0700</pubDate>
<guid>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=99D4D0B8%2D4449%2D459C%2D947CAA17E079D546</guid>
</item>
<item>
<title>QueryParam Scanner from ANT</title>
<link>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=622FE913%2D5190%2D4B1C%2DB23B043DDA7159B2</link>
<description>
A little bit ago, I added VarScoper to my ANT build script. That was something I had wanted to do for a long time, and it was silly easy. I also wanted to add QueryParam Scanner, but it was a bit trickier. Today I spent some time with it and whipp...
</description>
<category>CFML</category>
<pubDate>Sun, 19 Jun 2011 17:51:00 -0700</pubDate>
<guid>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=622FE913%2D5190%2D4B1C%2DB23B043DDA7159B2</guid>
</item>
<item>
<title>Mocking ColdFusion ORM Entities</title>
<link>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=06728B8A%2D7B91%2D4E48%2DACD23F8231C97FB7</link>
<description>
Consider that I have a service, say ProjectService, that is my component under test (CUT). It has a method called getProjectsByUser(), which expects an instance of model.user.User to be provided as the argument. The User is a ColdFusion ORM entity ...
</description>
<category>ColdFusion</category>
<pubDate>Wed, 04 May 2011 14:38:00 -0700</pubDate>
<guid>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=06728B8A%2D7B91%2D4E48%2DACD23F8231C97FB7</guid>
</item>
<item>
<title>MockBox Generation Path</title>
<link>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=6C5CF24E%2DE140%2D4DD1%2DA9E881FD1D3E03B3</link>
<description>
When using the MockBox ColdFusion Mocking Framework to generate mock objects dynamically, it requires that the ColdFusion server have write access to a filesystem location to save the CFC files. By default, this path is /[mockbox|coldbox]/system/test...
</description>
<category>ColdFusion</category>
<pubDate>Wed, 04 May 2011 14:30:00 -0700</pubDate>
<guid>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=6C5CF24E%2DE140%2D4DD1%2DA9E881FD1D3E03B3</guid>
</item>
<item>
<title>Mach-II Environment and CGI.SERVER_NAME</title>
<link>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=0A9AD97D%2D7E94%2D4697%2D84C5CD45D0CE5CF0</link>
<description>
I&apos;m running an instance of ColdFusion in a container that doesn&apos;t provide the original request hostname in the CGI.SERVER_NAME variable. That&apos;s a problem because I&apos;m also using the Mach-II EnvironmentProperty, which rocks pretty hard, to match envi...
</description>
<category>ColdFusion</category>
<category>Mach-II</category>
<pubDate>Wed, 20 Apr 2011 19:45:00 -0700</pubDate>
<guid>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=0A9AD97D%2D7E94%2D4697%2D84C5CD45D0CE5CF0</guid>
</item>
<item>
<title>IIS 7 and HTTP status codes from ColdFusion</title>
<link>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=49B1EA02%2D4EBD%2D49F3%2D9AB2B5432E4E1F28</link>
<description>
First, some background. I am configuring a machine with Windows &amp;ldquo;Server&amp;rdquo; 2008 R2 running IIS 7 to be the host of a CFML application, written in ColdBox and making use of RESTful URL patterns. The application serves an API to gain access...
</description>
<category>ColdFusion</category>
<pubDate>Mon, 04 Apr 2011 14:28:00 -0700</pubDate>
<guid>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=49B1EA02%2D4EBD%2D49F3%2D9AB2B5432E4E1F28</guid>
</item>
<item>
<title>A Large Prime, Please</title>
<link>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=47B6D348%2D7DC2%2D44AA%2D97315F0E8F38EFE9</link>
<description>
I wanted a largish prime number with which I could test a hash table that uses the modulo of the prime to select a bucket. Anyway, there&apos;s a handy command line option in OpenSSL to determine which inputs are prime. So, say I wanted a prime of somet...
</description>
<category>Shell Programming</category>
<pubDate>Mon, 31 Jan 2011 22:22:00 -0700</pubDate>
<guid>http://www.lamoree.com/machblog/index.cfm?event=showEntry&amp;entryId=47B6D348%2D7DC2%2D44AA%2D97315F0E8F38EFE9</guid>
</item>
</channel>
</rss>
		
		
		

