December 2009 - Digital Tool Factory blog December 2009 - Digital Tool Factory blog

The Digital Tool Factory Blog

Review of Ignore Everybody by Hugh MacLeod

Overall Ranking: 8/10

The first book I purchased on my new Kindle was Ignore Everybody by Hugh MacLeod. I bought it based on this review by Derek Sivers. On the whole, I liked it very much. In fact, I read it in one sitting. Here are my thoughts:

What the book is not:

  • A step by step manual for doing anything
  • A specific guide to doing anything
  • Case studies

What the book is:

  • A collection of generalized lessons learned from 20 odd years in the creative business
  • Extremely well written
  • Largely a collection of aphorisms, similar to the work of Eric Hoffer
  • Highly motivational

Continue reading →


31
Dec 09


Written By Steve French

 

Review of the Amazon Kindle

Overall Ranking: 10/10

This Christmas I succumb to pressure and purchase a Kindle. First thoughts

The Good

  • The clarity is superb
  • The Kindle screen increases readability slightly compared to the printed page
  • The Kindle page is slightly smaller than an ordinary paperback page. This was nice actually.
  • The software is intuitive
  • It arrives pre-setup for the most part
  • Taking notes is quite easy and easy to review
  • The dictionary feature is wonderful

The Bad

  • It is far too easy to purchase books accidentally. The purchases are reversible
  • They should include a cover and light as accessories. Those two items are essential to the safe operating of the Kindle (the cover anyway) and are not included with the Kindle.

On the whole, the Kindle is wonderful and I reccomend it to everyone.

 

This post originally appeared on the Stronico blog – with the absorption of Stronico into Digital Tool Factory this post has been moved to the Digital Tool Factory blog


31
Dec 09


Written By Steve French

 

A quick guide to prioritizing email

Estimated read time – 3 minutes
Estimated completion time – 20 minutes
Estimated payback period – 10 working days

I have had my current work account for seven and a half years. I signed up for many email newsletters and alerts over the past seven years. I did a quick check and found I had over 7,000 emails in my inbox in the past year alone. I also need to keep all of my work-related emails forever.

In the past I had created rules to send the newsletters to different folders. I had “Marketing”, “Microsoft”, “Offers” folders, and the like. However, this proved impractical as I tend to sign up for lots of newsletters and seldom updated my Outlook Rules.

As part of my preparation for 2010 I decided to merge all of my separate folders and create a single “ReadThenDelete” folder for all newsletters and other automated mailings. I then modified all of my existing outlook rules to move all newsletter type emails to the new folder. I then went through my inbox and created a lengthy rule based on sender’s address to move all of the stragglers into the “ReadThenDelete” folder.

It took about 20 minutes, but it created a 50% reduction in my inbox emails, while losing nothing of value.

Benefits:

  • I now have only one rule to update as the new subscriptions arrive
  • I can skim the subjects and delete everything at once, instead of browsing by topic, and then deleting everything

This is not the most life-changing productivity tip I, but it has helped me save several minutes each day.

Before anyone says anything, yes, I know that reading newsletters subtracts from productivity, but I can skim and sort the written word extremely quickly and I probably spend less than two seconds per email (most get deleted based on the subject). My skimming process is now much easier now that everything is in one folder instead of categorized by subject.

Also, the “Read Time” and “Completion Time” was blatantly stolen from Tim Ferriss. Go read his blog right now

 

This post originally appeared on the Stronico blog – with the absorption of Stronico into Digital Tool Factory this post has been moved to the Digital Tool Factory blog


28
Dec 09


Written By Steve French

 

Merry Christmas Everyone

 

This post originally appeared on the Stronico blog – with the absorption of Stronico into Digital Tool Factory this post has been moved to the Digital Tool Factory blog


24
Dec 09


Written By Steve French

 

How to fix “The entry ‘ScriptModule’ has already been added.” error

The Problem: The web application works just fine on the local machine, but when you upload it to the web server you get the error “The entry ‘ScriptModule’ has already been added.”

The Cause: It is a conflict between asp.net versions.

The Solution: Simply comment out the <add name=”ScriptModule” type=”System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35″/> line in the web.config file and you should be good to go.

 

This post originally appeared on the Stronico blog – with the absorption of Stronico into Digital Tool Factory this post has been moved to the Digital Tool Factory blog


23
Dec 09


Written By Steve French

 

A surprise productivity tip – posture edition

Try this, I went through an abnormally focused period today and it seemed to be caused by a slightly different posture.

  1. Sit in chair normally with good posture, nothing special.
  2. Arch back slightly
  3. Lean forward about 3 inches more than normal
  4. Open your eyes about 5 millimeters more than normal

See if that works. I happened into it today and it seems to bring a much higher degree of focus than one might think.

 

This post originally appeared on the Stronico blog – with the absorption of Stronico into Digital Tool Factory this post has been moved to the Digital Tool Factory blog


22
Dec 09


Written By Steve French

 

The wisdom of Tim Ferriss

If you know me personally, then you’ve heard me rave about the work of Tim Ferriss. I heard him give a talk about the release of the new edition of his book, the Four Hour Work Week. Here are some adages I thought were particularly powerful, and true, at least in my case

Whenever you depend on willpower, you will fail.
and
It’s easier to control environment than behavior.

and the Oscar Wilde quote –

If you’re going through Hell, keep going

 

This post originally appeared on the Stronico blog – with the absorption of Stronico into Digital Tool Factory this post has been moved to the Digital Tool Factory blog


18
Dec 09


Written By Steve French

 

How to create a fully validated asp.net calendar control

The Problem: You have to have a fully validated date box. The dates must be valid dates and there must be data entered in the field.

The Cause: Not a problem really, I wind up rewriting it slightly differently each time. I thought I would put a definitive version here.

The Solution: Use this code
<asp:TextBox ID=”tbDate” runat=”server” CssClass=”body” />
<ajaxToolkit:MaskedEditExtender ID=”meeDate” runat=”server”
TargetControlID=”tbDate”
Mask=”99/99/9999″
MessageValidatorTip=”true”
OnFocusCssClass=”MaskedEditFocus”
OnInvalidCssClass=”MaskedEditError”
MaskType=”Date”
DisplayMoney=”Left”
AcceptNegative=”Left”
ErrorTooltipEnabled=”True” />
<ajaxToolkit:CalendarExtender ID=”ceDate” runat=”server” TargetControlID=”tbDate” PopupButtonID=”imgDate” />
<asp:RequiredFieldValidator ID=”rfvDate” runat=”server” ControlToValidate=”tbDate”
Display=”none” ErrorMessage=”<b>Required Field Missing</b><br />You must supply a date”
SetFocusOnError=”true” ValidationGroup=”MainB” />
<ajaxToolkit:ValidatorCalloutExtender ID=”vceDate” runat=”server” TargetControlID=”rfvDate” Width=”300″ />

<asp:CompareValidator ID=”compVDate” runat=”server” ValidationGroup=”MainB”
ControlToValidate=”tbDate” Display=”None” ErrorMessage=”<b>Required Field Missing</b><br />You must supply a valid date”
Operator=”DataTypeCheck” Type=”Date” />
<ajaxToolkit:ValidatorCalloutExtender ID=”vceCompDate” runat=”server” TargetControlID=”compVDate” Width=”300″ />
<asp:ImageButton runat=”Server” ID=”imgDate” ImageUrl=”img/icon_calendar.gif” AlternateText=”Click to show calendar” />

That’s it!

 

This post originally appeared on the Stronico blog – with the absorption of Stronico into Digital Tool Factory this post has been moved to the Digital Tool Factory blog


17
Dec 09


Written By Steve French

 

How to fix problem with intellisense in Visual Studio 2008

The Problem: For whatever reason Intelliense in Visual Studio shows up for standard asp.net web controls appears on some pages and not on others.

The Cause: Visual Studio is a tricky little program, I have no idea why this happened. I went though the web.config files, encoding, rebooted and still got no resolution.

The Solution: Recreate the master page for the web form pages where the error occurs, then change the master page on those pages to the new master page. For whatever reason this works well. All told, it took me 45 minutes to get the problem resolved.

 

This post originally appeared on the Stronico blog – with the absorption of Stronico into Digital Tool Factory this post has been moved to the Digital Tool Factory blog


16
Dec 09


Written By Steve French

 

How to fix the Adobe Acrobat “Save As” error

The Problem: You attempt to save a dynamically generated pdf built from a website and get the error “The document could not be saved, a number is out of range”

The Cause: Incompatibility of settings between the version of Acrobat that created the pdf and the version of Acrobat that is being used to view the pdf

The Solution: Go to preferences, go to “General” and uncheck “Save As optimizes for Fast Web View” and see if that fixes the problem. HT Planet PDF for the tip.

 

This post originally appeared on the Stronico blog – with the absorption of Stronico into Digital Tool Factory this post has been moved to the Digital Tool Factory blog


14
Dec 09


Written By Steve French

 




Copyright 2011 Digital Tool Factory. All Rights Reserved. Powered by raw technical talent. And in this case, WordPress.