Archive for the ‘Operating Systems’ Category

The User Doesn’t Want To Wait

December 9th, 2008

Too often user interfaces are muddied by this fact that seems lost on software developers. When I install software, I want to answer all of the questions UP FRONT and then let the computer do the dirty work. I should be able to leave without wondering if the computer will need babysitting later on! Not only should user interfaces do this, but they should INDICATE when they are doing this so that I know it’s safe to leave :)

Some prime examples:

  • Operating System Install
  • New Software Installation
  • Upgrades
    • Redesign debian apt-get to ask any and all configuration questions up-front! I realize there are technical challenges to this, but we’re software developers, and I’m sure there are harder things to figure out…
    • FreeBSD could do the same with portupgrade, etc…
    • Ironically, Microsoft has this just about right with Windows Update – although Debian is quite similar if you schedule a cron job to download and install the updates.
  • Microsoft Windows – Deleting files should be a background process (at least optionally). The file system should be able to mark a tree for deletion so that explorer doesn’t see it, etc… and then the delete should just happen. I don’t really care when it finishes! If the user wants to create a new file that conflicts with a file scheduled for deletion, then the OS should be able to deal with that too …

The goal should be to let the user do as much as possible in as short amount of time as possible. The software should save the time intensive tasks for later and manage them in a way that does not impact the user.

Posted in Favorites, Operating Systems, Software Development | Comments (0)

Amazing DOS Tricks :)

June 19th, 2008

http://www.dostips.com/DtTipsStringManipulation.php – Lots of String Manipulation tricks…

Posted in Windows | Comments (0)

Functions In DOS!

June 17th, 2008

…Do Stuff Here…

call :MakeShortCut

… Do Stuff Here
Goto End
:MakeShortCut
echo [InternetShortcut]>> “%CreateLinkAt%%NAME%.url”
echo URL=%URL%>> “%CreateLinkAt%%NAME%.url”
GOTO :EOF

:End

Posted in Favorites, Windows | Comments (0)

Store all files in a folder to a text file

April 29th, 2008

Gives a nice list that can be used in excel or your favorite text editor :)

dir /S /B /A-D > theList.txt

Posted in Windows | Comments (0)