<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Pencils Down</title>
	<atom:link href="http://www.dantoomeysoftware.com/pencils-down/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dantoomeysoftware.com/pencils-down</link>
	<description>This weblog is about my experiences in software development</description>
	<lastBuildDate>Fri, 27 Jan 2012 13:43:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Help for Web Programmers at the Mercy of Designer Fonts</title>
		<link>http://www.dantoomeysoftware.com/pencils-down/2012/01/27/help-for-web-programmers-at-the-mercy-of-designer-fonts/</link>
		<comments>http://www.dantoomeysoftware.com/pencils-down/2012/01/27/help-for-web-programmers-at-the-mercy-of-designer-fonts/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 13:43:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Software Tools]]></category>

		<guid isPermaLink="false">http://www.dantoomeysoftware.com/pencils-down/?p=282</guid>
		<description><![CDATA[Working with a client where the designer they hired produced a nice looking design.  However, even though promising to just use standard fonts there are a couple of very conspicuous parts of the design that use non-standard fonts.  Sound familiar?
Google to the rescue! (I don&#8217;t know how they control what people spend time/money developing)  I [...]]]></description>
			<content:encoded><![CDATA[<p>Working with a client where the designer they hired produced a nice looking design.  However, even though promising to just use standard fonts there are a couple of very conspicuous parts of the design that use non-standard fonts.  Sound familiar?</p>
<p>Google to the rescue! (I don&#8217;t know how they control what people spend time/money developing)  I saw a reference to <a href="https://developers.google.com/webfonts/">Google Fonts</a> in a <a href="http://news.ycombinator.com/">HN </a>post the other day.  What&#8217;s that?</p>
<blockquote><p>Google Web Fonts provides high-quality web fonts that you can include in your pages using the Google Web Fonts API.</p></blockquote>
<p>Just like everything else you can use google for, (especially CDN access to includes and the like) you can make reference to some non-standard font in the Google font set and then use it pretty much like any other font in CSS (have to quote the font name versus plain text(=standard font)).  Again, with their simple example:</p>
<p>&lt;html&gt;</p>
<p>&lt;head&gt;</p>
<p><span style="color: #ff9900;">&lt;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;http://fonts.googleapis.com/css?family=Tangerine&#8221;&gt;</span></p>
<p>&lt;style&gt;</p>
<p>body {</p>
<p>font-family:<span style="color: #ff9900;"> &#8216;Tangerine&#8217;,</span> serif;</p>
<p>font-size: 48px;</p>
<p>}</p>
<p>&lt;/style&gt;</p>
<p>&lt;/head&gt;</p>
<p>&lt;body&gt;</p>
<p>&lt;div&gt;Making the Web Beautiful!&lt;/div&gt;</p>
<p>&lt;/body&gt;</p>
<p>&lt;/html&gt;</p>
<p>So, next time you are graced with a design present you can just smile.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dantoomeysoftware.com/pencils-down/2012/01/27/help-for-web-programmers-at-the-mercy-of-designer-fonts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finally, Rounded Tabs Without Using Images</title>
		<link>http://www.dantoomeysoftware.com/pencils-down/2012/01/13/finally-rounded-tabs-without-using-images/</link>
		<comments>http://www.dantoomeysoftware.com/pencils-down/2012/01/13/finally-rounded-tabs-without-using-images/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 14:00:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.dantoomeysoftware.com/pencils-down/?p=277</guid>
		<description><![CDATA[Someone smart figured out a way to get rounded corner tabs in HTML/CSS without using any images at css-tricks.com.  You can see an example at http://css-tricks.com/examples/RoundOutTabs2/.
Here is an image of the sample (note, the round outs at the bottom of the selected tab):

]]></description>
			<content:encoded><![CDATA[<p>Someone smart figured out a way to get rounded corner tabs in HTML/CSS without using any images at <a href="http://css-tricks.com">css-tricks.com</a>.  You can see an example at<a href="http://css-tricks.com/examples/RoundOutTabs2/"> http://css-tricks.com/examples/RoundOutTabs2/</a>.</p>
<p>Here is an image of the sample (note, the round <span style="text-decoration: underline;">outs </span>at the bottom of the selected tab):</p>
<p><a href="http://www.dantoomeysoftware.com/pencils-down/wp-content/uploads/2012/01/rounded-tabs.png"><img class="size-medium wp-image-279" title="rounded-tabs" src="http://www.dantoomeysoftware.com/pencils-down/wp-content/uploads/2012/01/rounded-tabs-300x43.png" alt="" width="300" height="43" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dantoomeysoftware.com/pencils-down/2012/01/13/finally-rounded-tabs-without-using-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why are images &#8216;lighter&#8217; on FF vs IE?</title>
		<link>http://www.dantoomeysoftware.com/pencils-down/2012/01/11/why-are-images-lighter-on-ff-vs-ie/</link>
		<comments>http://www.dantoomeysoftware.com/pencils-down/2012/01/11/why-are-images-lighter-on-ff-vs-ie/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 14:03:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Debugging]]></category>

		<guid isPermaLink="false">http://www.dantoomeysoftware.com/pencils-down/?p=274</guid>
		<description><![CDATA[Take your favorite site with images.  Load the same site on IE and FF.  Compare.  The images on FF are lighter &#8211; a slight foggy effect.
Long term client asked why their logo was all foggy.  Odd, since it hasn&#8217;t changed in months.  Didn&#8217;t notice the change until I compared browsers.
Any ideas?
]]></description>
			<content:encoded><![CDATA[<p>Take your favorite site with images.  Load the same site on IE and FF.  Compare.  The images on FF are lighter &#8211; a slight foggy effect.</p>
<p>Long term client asked why their logo was all foggy.  Odd, since it hasn&#8217;t changed in months.  Didn&#8217;t notice the change until I compared browsers.</p>
<p>Any ideas?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dantoomeysoftware.com/pencils-down/2012/01/11/why-are-images-lighter-on-ff-vs-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Should a Designer Produce HTML and CSS?</title>
		<link>http://www.dantoomeysoftware.com/pencils-down/2012/01/06/should-a-designer-produce-html-and-css/</link>
		<comments>http://www.dantoomeysoftware.com/pencils-down/2012/01/06/should-a-designer-produce-html-and-css/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 13:23:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Business Practice]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Software Development Process]]></category>

		<guid isPermaLink="false">http://www.dantoomeysoftware.com/pencils-down/?p=272</guid>
		<description><![CDATA[I have a long term client that wants to rework their web site.  We tried a designer I had worked with, but they weren&#8217;t happy with the result.  Probably too much part-time and indirect contact to convey their needs to the designer.
So, they hired a designer on their own.  After selection I talked with the [...]]]></description>
			<content:encoded><![CDATA[<p>I have a long term client that wants to rework their web site.  We tried a designer I had worked with, but they weren&#8217;t happy with the result.  Probably too much part-time and indirect contact to convey their needs to the designer.</p>
<p>So, they hired a designer on their own.  After selection I talked with the guy to make sure it wouldn&#8217;t just be a PSD as the output: he agreed.  Once the design was agreed upon he didn&#8217;t just give me the PSD, he gave me a bunch of PNG files that he cut from the PSD.  How nice.</p>
<p>Now we are going into week two of the process trying to get HTML and CSS out of him.  I don&#8217;t think he has ever done this before.  He is good at coming up with nice pictures with the right color schemes and fonts and the like, probably an art background.  He is just lost coming up with the parts of the design you need to actually develop a web site &#8211; HTML, CSS and Javascript for any widgets/special effects in the design (there are a few).</p>
<p>Maybe I am expecting too much?  Every other designer I have worked with has produced the initial HTML&#8230; layouts.  Maybe I have  just been lucky?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dantoomeysoftware.com/pencils-down/2012/01/06/should-a-designer-produce-html-and-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Does Phishing Work?</title>
		<link>http://www.dantoomeysoftware.com/pencils-down/2012/01/04/does-phishing-work/</link>
		<comments>http://www.dantoomeysoftware.com/pencils-down/2012/01/04/does-phishing-work/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 22:02:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Brilliant Idiot]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.dantoomeysoftware.com/pencils-down/?p=270</guid>
		<description><![CDATA[I don&#8217;t know about you but I get phishing attempts on a daily (seems like hourly at times) basis.  The phishing is in a couple of categories:
- Slick &#8211; these really look like the supposed company.  But then they fall on their face with a yahoo email address or oddball url for &#8216;click here&#8217; to [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know about you but I get phishing attempts on a daily (seems like hourly at times) basis.  The phishing is in a couple of categories:</p>
<p>- Slick &#8211; these really look like the supposed company.  But then they fall on their face with a yahoo email address or oddball url for &#8216;click here&#8217; to enter your info.</p>
<p>- Wordy &#8211; these are jam-packed emails from innocuous sounding senders with reasonable titles as well.  Maybe I do know a John Galway?  And he&#8217;s writing about the Patriots game (something I care about).  It&#8217;s only when you scroll down to the &#8217;stop email&#8217; link that you can clearly see it&#8217;s phishing.</p>
<p>- Pathetic &#8211; English is definitely not the first language of the sender.  Typically not one complete, correctly spelled and grammatically correct sentence.  Worse is the Asian character set email &#8211; complete jibberish.</p>
<p>- Million dollars &#8211; any number of swindles &#8211; African, Libyan, Middle East, orphan, cripple &#8211; you name it</p>
<p>So, given the bunch of junk that streams in continuously &#8211; does it work?</p>
<p>I have to believe everyone knows better about the Million Dollars; will ignore the Pathetic; realize the Wordy is junk.  Even the Slick should sound alarms once you realize the kind of information being provided (of course, it&#8217;s too late &#8211; just clicking put you on a spam list)</p>
<p>Now, then, who is accepting the phishing attempt?  I am guessing close to zero.</p>
<p>Then why keep sending them out?</p>
<p>It takes time to build a phishing list (or money to buy one).  Takes money and time to develop an email program that won&#8217;t get you cut off from your ISP.  If someone actually responds you have to do something smart (money and time) with the information to take advantage of it.</p>
<p>I wonder if the key is &#8216;close to zero&#8217; acceptance and the laws of large numbers.  Assuming you got 0.0001% response of any kind it would be just a matter of time before you had a quantity of information to work with.</p>
<p>Still feels like a complete waste of time (and money).  Why not spend that much (time and money) on developing a neato iPhone or Droid app?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dantoomeysoftware.com/pencils-down/2012/01/04/does-phishing-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maven ClassDefNotFound org codehouse classworlds Launcher</title>
		<link>http://www.dantoomeysoftware.com/pencils-down/2011/12/19/classdefnotfound-org-codehouse_classworlds_launcher/</link>
		<comments>http://www.dantoomeysoftware.com/pencils-down/2011/12/19/classdefnotfound-org-codehouse_classworlds_launcher/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 16:04:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Maven]]></category>

		<guid isPermaLink="false">http://www.dantoomeysoftware.com/pencils-down/?p=268</guid>
		<description><![CDATA[Got this error running maven as part of Spring Roo ten minute project.
Lots of references on the internet about Linux users running maven 2 and maven 3 at the same time.  That&#8217;s not me.  I am a Windows user only running maven 2.
I had thought maven was setup previously as I use it regularly in [...]]]></description>
			<content:encoded><![CDATA[<p>Got this error running maven as part of <a href="http://static.springsource.org/spring-roo/reference/html/intro.html#intro-first-steps">Spring Roo ten minute project</a>.</p>
<p>Lots of references on the internet about Linux users running maven 2 and maven 3 at the same time.  That&#8217;s not me.  I am a Windows user only running maven 2.</p>
<p>I had thought maven was setup previously as I use it regularly in Eclipse.  Guess not.</p>
<p>Needed to do:</p>
<p>- MAVEN_HOME environment variable</p>
<p>- M2 environment variable</p>
<p>Then still getting the above error trying to run mvn &#8211;version.</p>
<p>On Windows there is a mvn.bat file in the maven/bin directory.  Setting MAVEN_BATCH_ECHO=on then running the version command showed that the classworlds jar file was still not found  &#8211; even though the above directory settings are correct.</p>
<p>So, forced setting CLASSWORLDS_JAR=&#8221;path to classworlds jar&#8221; in the mvn.bat file and everything is working correctly now.</p>
<p>My guess is I never really completed the install of maven, but was using the Eclipse plugin maven to actually run.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dantoomeysoftware.com/pencils-down/2011/12/19/classdefnotfound-org-codehouse_classworlds_launcher/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chrome is Odd</title>
		<link>http://www.dantoomeysoftware.com/pencils-down/2011/11/18/chrome-is-odd/</link>
		<comments>http://www.dantoomeysoftware.com/pencils-down/2011/11/18/chrome-is-odd/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 21:27:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Chrome]]></category>

		<guid isPermaLink="false">http://www.dantoomeysoftware.com/pencils-down/?p=266</guid>
		<description><![CDATA[I have started using Chrome more and more often.  It sounds like that is happening with a lot of other people as well.  It is nice having such a clean interface.  Seems like every time IE gets upgraded they odd more noise around the edges.
It is odd though:
- some sites do not support IE, but [...]]]></description>
			<content:encoded><![CDATA[<p>I have started using Chrome more and more often.  It sounds like that is <a href="http://blog.prominenthosting.com/2011/01/05/firefox-overtakes-ie-but-chrome-is-the-big-winner/">happening</a> with a lot of other people as well.  It is nice having such a clean interface.  Seems like every time IE gets upgraded they odd more noise around the edges.</p>
<p>It is odd though:</p>
<p>- some sites do not support IE, but do support Chrome.  At first I thought this was just a lark, but becoming more common as developers get tired of jumping through hoops to support version x of IE.</p>
<p>- when I first installed Chrome it kept complaining about a MS VC++ dll missing.  Why on earth is Google counting on MS for anything?</p>
<p>- happened to pull up task manager for another reason and saw quite a few instances of chrome running.  from my desktop I only had 1 running (pandora, but so what).  why all these processes running?</p>
<p>- not sure I am hearing about many corporate desktops promoting Chrome as the browser of choice.  or is Google even pushing that way?</p>
<p>- chrome store is a nice idea.  it makes sense when running from your smartphone.  doesn&#8217;t feel like the metaphor really works on the desktop.</p>
<p>I always fall back to what do non-tech users use.  Not sure if installing Chrome (even though google.com pesters them every time the page is run) is a common enough occurrence outside of tech arenas.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dantoomeysoftware.com/pencils-down/2011/11/18/chrome-is-odd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>oc4j Permgen Error Probably Isn&#8217;t</title>
		<link>http://www.dantoomeysoftware.com/pencils-down/2011/11/15/oc4j-permgen-error-probably-isnt/</link>
		<comments>http://www.dantoomeysoftware.com/pencils-down/2011/11/15/oc4j-permgen-error-probably-isnt/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 20:26:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Memory]]></category>
		<category><![CDATA[OC4J]]></category>

		<guid isPermaLink="false">http://www.dantoomeysoftware.com/pencils-down/?p=264</guid>
		<description><![CDATA[After chasing down a PERMGEN error deploying/running a site on oc4j for a while I did the smarter thing and did something else for a while. Of course it doesn&#8217;t help that the top N google hits for &#8220;PERMGEN&#8221; aren&#8217;t even from Oracle/Java.  So, you get all sorts if interesting advice for changes to Java [...]]]></description>
			<content:encoded><![CDATA[<p>After chasing down a PERMGEN error deploying/running a site on oc4j for a while I did the smarter thing and did something else for a while. Of course it doesn&#8217;t help that the top N google hits for &#8220;PERMGEN&#8221; aren&#8217;t even from Oracle/Java.  So, you get all sorts if interesting advice for changes to Java memory management.</p>
<p>Then it occurred to be: the site was working fine before a recent set of changes, maybe something got broken?</p>
<p>Even better, it had to be some kind of configuration setting that was wrong, incorrect, bad.  Any pure coding/linking error would have been more specific.  I was betting config errors were buried in the oc4j logging somewhere and only the resultant &#8220;PERMGEN&#8221; showed up.</p>
<p>Turns out a couple of items were off in the config XMLs for the project: missing setters for injections, not including a new hibernate mapping file in the list of mappings.  (I think that was the killer).</p>
<p>Took under 10 minutes to fix these things and everything started working again.</p>
<p>I really don&#8217;t like oc4j.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dantoomeysoftware.com/pencils-down/2011/11/15/oc4j-permgen-error-probably-isnt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Browser Addin to Tell You What Font is in Use</title>
		<link>http://www.dantoomeysoftware.com/pencils-down/2011/10/31/browser-addin-to-tell-you-what-font-is-in-use/</link>
		<comments>http://www.dantoomeysoftware.com/pencils-down/2011/10/31/browser-addin-to-tell-you-what-font-is-in-use/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 12:55:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Software Tools]]></category>

		<guid isPermaLink="false">http://www.dantoomeysoftware.com/pencils-down/?p=262</guid>
		<description><![CDATA[http://www.chengyinliu.com/whatfont.html
Simple: point and click
]]></description>
			<content:encoded><![CDATA[<p>http://www.chengyinliu.com/whatfont.html</p>
<p>Simple: point and click</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dantoomeysoftware.com/pencils-down/2011/10/31/browser-addin-to-tell-you-what-font-is-in-use/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best Editor I Have Ever Seen</title>
		<link>http://www.dantoomeysoftware.com/pencils-down/2011/10/27/best-editor-i-have-ever-seen/</link>
		<comments>http://www.dantoomeysoftware.com/pencils-down/2011/10/27/best-editor-i-have-ever-seen/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 19:28:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Software Tools]]></category>

		<guid isPermaLink="false">http://www.dantoomeysoftware.com/pencils-down/?p=259</guid>
		<description><![CDATA[Codify is used to develop apps for the iPad on the iPad!  The integration of touch with the editor is astounding.  If only Eclipse did something even close to this for us mere mortals&#8230;

Oh, I forgot, one more thing: price is $7.99.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://twolivesleft.com/Codify/">Codify</a> is used to develop apps for the iPad on <strong><span style="text-decoration: underline;">the iPad</span></strong>!  The integration of touch with the editor is astounding.  If only Eclipse did something even close to this for us mere mortals&#8230;</p>
</p>
<p>Oh, I forgot, one more thing: price is $7.99.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dantoomeysoftware.com/pencils-down/2011/10/27/best-editor-i-have-ever-seen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

