Up to Newsletter Index

October 2008 Newsletter

 

Quotable Quotes

 

Remember that there is nothing stable in human affairs; therefore avoid undue elation in prosperity, or undue depression in adversity.  –Socrates

 

That which is obvious is not always known, and what is known is not always present.  –Samuel Johnson

 

If I had asked people what they wanted, they would have said faster horses.  –Henry Ford

 

Be wary of the man who urges an action in which he himself incurs no risk.  –Joaquin Setanti

 

All that is necessary to break the spell of inertia and frustration is this: Act as if it were impossible to fail.  –Dorothea Brande

 

Courage is the human virtue that counts most—courage to act on limited knowledge and insufficient evidence. That's all any of us have.  –Robert Frost

 

If men could only know each other, they would neither idolize nor hate.  –Elbert Hubbard

 

Our lives improve only when we take chances—and the first and most difficult risk we can take is to be honest with ourselves.  –Walter Anderson

 

Return to top

 

Software Development Process

Article:  IT: Ending the whining

A longtime IT manager laments about IT workers who gripe that the business "just doesn't understand IT" and offers some suggestions for building a better relationship with their business customers and counterparts, such as by using collaboration to solve problems.

http://blogs.techrepublic.com.com/tech-manager/?p=559

 

Article:  Good Old Advice

On the occasion of the 20th anniversary of Crosstalk journal, Alistair Cockburn laments that many of the improvements in software development over the past 20 years still go widely unheeded.   Software development continues to be (and will be for the foreseeable future!) a human-centered activity, but most of the research and practical improvement efforts fail to recognize this.

http://www.stsc.hill.af.mil/crosstalk/2008/08/0808Cockburn.html

 

Article:  Cargo Cult Methodology: How Agile Can Go Terribly, Terribly Wrong

Many agile pundits tout it as a panacea for all of your methodology ills.  However, as this cautionary tale points out, organizational maturity in adopting any new methodology, including agile, is a key factor which can't be overlooked.

http://www.cio.com/article/442264/Cargo_Cult_Methodology_How_Agile_Can_Go_Terribly_Terribly_Wrong

 

Article:  How To Write An Effective Design Document

Many projects jump straight from requirements-gathering into development (or even skip requirements!).  This author makes a good argument for why a design document is a valuable resource, especially for on-going maintenance, and gives some practical and adaptable tips on how write a good document without getting too far into the weeds.

http://blogs.sun.com/Simon_Wu/entry/how_to_write_effective_design

 

Report:  2008 InformationWeek 500

In this 20th anniversary InformationWeek 500 report, the top innovators in IT across 21 industries are profiled.

http://www.informationweek.com/1202/

 

Article:  Time to Vanquish the Mythical Man Month

This author suggests that, instead of Brooks' claim that adding developers to a late project makes it later is due to communication problems from the increase in communication channels, the real reason is because of the increase in dependencies which cause additional "waiting time" by developers who need others' code (or other deliverables) to proceed.

http://blog.assembla.com/assemblablog/tabid/12618/bid/6213/Time-to-Vanquish-the-Mythical-Man-Month.aspx

 

Article:  Ivar Jacobson: Developers are too fashionable

One of the "three amigos" of the unified process methodology family, Ivar Jacobson, laments that developers tend to be too distracted by the latest "fashion" in the industry that is supposedly going to solve all of their problems (the "silver bullet").  He suggests that instead of simply looking for something better, developers need to focus and creativity and take the techniques that work for them and adapt them to improve.  He also warns against "ivory tower" mandates on specific methodologies.

http://www.builderau.com.au/strategy/developmentprocess/soa/Ivar-Jacobson-Developers-are-too-fashionable/0,339028278,339291697,00.htm

 

Article:  7 Agile Leadership Lessons for the Suits

Agile development methodologies often revolve around grassroots "management" of the process and this is something that executives and management have difficulty adapting to.  This article discusses ways that management can support agile development.

http://www.cio.com/article/447712

 

Article:  Why Crunch Mode Doesn't Work: 6 Lessons

Most industries gave up on the concept of working more than 40 hours per week for extended periods for one simple reason:  It simply doesn't work because productivity decreases and error rates increase.

http://www.igda.org/articles/erobinson_crunch.php

 

Article:  IT And Business Alignment Remains CIO's Top Concern

According to a new survey by the Society for Information Management, alignment of IT with business objectives is the main concern of top IT management, as it has been for 6 of the past 7 years.  It seems telling that this is an exceedingly difficult problem to resolve, since it has ranked so high for so long.

http://www.informationweek.com/news/management/trends/showArticle.jhtml?articleID=210300331

 

Article:  8 Reasons Why CIOs Think Their Application Developers Are Clueless

In an equal-time counterpoint to recent articles where developers expressed their frustrations with senior management, CIOs discuss the deficiencies that they see in programmers.

http://www.cio.com/article/447189

 

Return to top

 

Software Testing & Quality

Site:  A Course on Software Quality

This site provides slides from a college course on software quality engineering.

http://www.csis.ul.ie/Modules/CS4157/default.htm

 

Article:  Second-Class Software Quality in Major IT Projects

Failure to consider software quality, on both COTS and in-house developed applications, is a major factor in IT project failure.

http://www.baselinemag.com/c/a/Application-Development/SecondClass-Software-Quality-in-Major-IT-Projects/

 

Article:  Debugging and The Five Stages of Grief

Bugs are inevitable in software development (no matter what anyone else tells you!).  What separates good developers from the rest of the pack is not just their ability to produce a small number of bugs, but also to successfully resolve defects when they are found.

http://itmanagement.earthweb.com/entdev/article.php/3771466/

 

Article:  The QA Catchall

What is the difference between testing and QA?  How do you get started with a QA function?  Read this article to find the answer to these and other questions.

http://www.stickyminds.com/BetterSoftware/magazine.asp?fn=cifea&id=96

 

Return to top

 

Tutorials/References

Reference:  97 Things Every Software Architect Should Know

Software architect is now an established discipline and role in software development.  This wiki, which you can contribute to, gives overviews of some of the strategic and tactical responsibilities of architects.

http://97-things.near-time.net/wiki

 

Tutorial:  Sesame Street Explains TCP

This cute web comic is actually a reasonable explanation of how TCP/IP works from a non-technical angle.

http://adi.stav.org.il/sesame-street-explains-tcp/main.htm

 

Reference:  Bentley's Rules from Writing Efficient Programs

With the development of cheaper and more powerful computers, programming efficiency seems to have fallen out of the fashion.  Here are some tips from algorithmist Jon Bentley on keeping efficiency in mind.

http://www.hipecc.wichita.edu/bentley.htm

 

Tutorial:  A Tutorial On Pointers And Arrays In C

Pointers are the most powerful feature of C, allowing C programs do directly access memory and hardware.  But they are notoriously difficult to understand and to master.  This detailed tutorial takes a step-by-step approach with excellent examples.

http://home.netcom.com/~tjensen/ptr/pointers.htm

 

Tutorial:  Introduction to REST

REST (Representational State Transfer) is one of the key technologies of interactive web design.  This article explains the REST architectural principles and the concepts behind stateless communication.

http://www.dzone.com/links/introduction_to_rest.html

 

Return to top

 

Career Development/Miscellaneous

Article:  How to Lead Change in Your Organization

In my opinion, one of the great differentiators between leaders and managers is that leaders know how to help others adapt to change.  This article emphasizes that most people actually like change, but that it's feeling like they are forced to change that they resist.

http://www.lifehack.org/articles/management/how-to-lead-change-in-your-organization.html

 

Article:  Most Workers Are Afraid to Telecommute

Even though technology has certainly made it easier to telecommute, most workers don't want to do it for fear of not being the office damaging their careers.

http://www.usnews.com/blogs/the-inside-job/2008/08/12/most-workers-are-afraid-to-telecommute.html

 

Article:  10 Keys to Work/Life Balance

Productive people are usually busy people and this often results in poor balance between work and personal life.  Here are some brief, but great tips on how to bring good balance.  While not one of the specific tips on the list, I would wrap the tips up into one overarching principle:  set boundaries on your time and tasks.

http://www.lifehack.org/articles/lifestyle/10-keys-to-worklife-balance.html

 

Directory:  9 Sites for Successful Job Interviews

So you've got your resume in shape and have landed a job interview.  If you haven't interviewed in a while, how to do you prepare?  This site provides links to some excellent resources on planning and practicing for your interview.

http://mashable.com/2008/09/17/job-interview-preparation/

 

Video:  No Time To Think

At a talk at Google, Dr. David Levy discusses the apparent paradox that technology was supposed to improve our ability to move to more deep, creative, and mature thinking, but that we seem to have greater information overload than ever before.  He cites Vannevar Bush's essay As We May Think and talks about how we can counteract the flood of information that everyone deals with on a daily basis, especially by considering Josef Pieper's view of leisure as the mentally contemplative mode of preparing the mind to receive information.

http://www.youtube.com/watch?v=KHGcvj3JiGA

 

Article:  Email becomes a dangerous distraction

A report from a British researcher shows that, on average, it takes a person 64 seconds to resume their train of thought after checking e-mail.  For a person who checks e-mail every 5 minutes, this results in a lost of 8-1/2 hours (!) of time per week.

http://www.smh.com.au/news/biztech/youve-got-interruptions/2008/09/08/1220857455459.html

 

Video:  It's Not Information Overload. It's Filter Failure.

Technology pundit Clay Shirky suggests that information overload in the current environment is due to the fact that the economics of producing content allow anyone to publish material which has removed the filters (prioritization) of what is valuable and important information.

http://web2expo.blip.tv/file/1277460/

 

Article:  Wall Street Crisis Won't Impact IT Jobs... At First

With the economic meltdown in full swing, everyone has their eye on the longer term effects, especially the job market.  Technology jobs are generally seen as remaining strong for now, but there are already certain regions that are struggling.

http://www.informationweek.com/news/management/careers/showArticle.jhtml?articleID=210602715

 

Article:  How to save your job

The authors of a new article in Harvard Business Review explain that most workers react to worries about a layoff in the wrong way.  They recommend that maintaining a positive attitude and taking risks to get your name out there are the most important tactics.  Furthermore, it helps to have a good perspective about what a job really is.

http://www.computerworld.com/action/article.do?command=viewArticleBasic&articleId=324316

 

Return to top

 

Telecommunications/Networking Industry

Article:  How the 'Net works: an introduction to peering and transit

Many people trace the origins of the net neutrality debate to AT&T CEO Ed Whitacre's famous (infamous?!) comments in 2005 about content providers using telecom provider's pipes for free.  Peering and transit are the linchpins of the Internet as we know and this article explains how the system works in the free-market environment.

http://arstechnica.com/guides/other/peering-and-transit.ars

 

Article:  Tech Czar Might Rule Policy Under Obama

A Barack Obama presidential administration is likely to have a Cabinet-level "Chief Technology Officer".  Specially, this CTO would probably have responsibility to keep the power of the FCC in check.  This would be an interesting shift from the historical independence of the FCC.

http://www.nationaljournal.com/congressdaily/cda_20080910_6421.php?related=true&story1=cda_20080910_6421&story2=null&story3=null

 

Article:  Researchers' new algorithm significantly boosts routing efficiency of networks

UC San Diego researchers have developed a new network routing algorithm that reduces the communication overhead of route calculations by an order of magnitude

http://www.universityofcalifornia.edu/news/article/18410

 

Article:  ISPs: Video Flood Will Drive Tiered Broadband Pricing

Substantial increases in streaming video content are pushing providers toward tiered pricing in order to better manage traffic growth.  However, the types of tiers are not clear yet.

http://www.contentinople.com/author.asp?section_id=450&doc_id=164493

 

Article:  U.S. Bounds Ahead on Broadband Proliferation

For all of the recent discussion about how the U.S. is behind the rest of the developed world in broadband Internet, here's some good news.  According to an Akamai report, broadband connections (5Mbps or greater speeds) grew 29% in the second quarter of 2008 compared to the first quarter, which brings the total of U.S. broadband connections to 26%.

http://www.internetnews.com/infra/article.php/3770371/US+Bounds+Ahead+on+Broadband+Proliferation.htm

 

Return to top

 

Useful Utilities

CRP  (Free – Windows 2000/XP/2003/Vista – 304kB)

CRP (or Control Running Programs) is a handy Windows utility that allows you to automatically restart a program if it crashes or to limit the number of instances of a program to conserve memory and system resources.  Simply drag a program executable from Windows Explorer onto CRP window and indicate the number of instances that should be run.

http://www.troupware.com/software/main/crp.htm

 

MobaLiveCD  (Free – Windows 2000/XP/2003/Vista – 1.6MB)

MobaLiveCD is a freeware portable packaging of the lean and excellent QEMU emulator that allows you to simply run Linux live CDs, such as Ubuntu, under Windows by simply downloading the ISO image of the live CD.  Furthermore, it is a small, single executable that can even be run from a USB thumbdrive.

http://mobalivecd.mobatek.net/en/

 

GBridge  (Free – Windows 2000/XP/2003/Vista – 2.0MB)

GBridge is a free tool that allows you to set up a VPN between PCs using your GMail/GTalk account.  It allows you to securely share files, quickly sync or backup files between PCs, and even do desktop remote control (via VNC).  You can even set up multi-node VPNs with any other GMail/GTalk user.

http://www.gbridge.com/

 

SchemaSpy  (Free – Cross-platform/Java – 214kB)

SchemaSpy is a free tool that will generate textual metadata descriptions and graphical representation (using the Graphviz library) of your database schema, including FK relationships, etc.  It supports most database servers, including Oracle, MySQL, and MS SQL Server (really any database with JDBC support).

http://schemaspy.sourceforge.net/

 

Rohos Mini Drive  (Free – Windows 2000/XP/2003/Vista – 1.3MB)

Rohos Mini Drive (RMD) is a free encryption tool for USB thumb drives.  If you carry any sensitive information on your thumb drive, it is imperative to secure it properly.  RMD creates a hidden, encrypted partition on the thumb drive for storing your files.  It does not require Administrator privileges on your system to open/view the partition.

http://www.rohos.com/free-encryption/

 

Return to top

 

Just For Fun

Nietzsche's Guide to Tech Support (recommended by Frank Elkins)

For a thoroughly post-modern (and certainly tongue-in-cheek) view of technical support, check this out!

http://home.tiac.net/~cri/1998/nietzsche.html

 

5 Really Weird Things About Water

Water is the stuff of life and is ubiquitous on Earth, but, even for all of its simplicity, water has some strange and unique properties.  No wonder so much attention is paid to the hope of finding water on Mars and elsewhere in the universe.

http://www.neatorama.com/2008/08/22/5-really-weird-things-about-water/

 

Custom Sign Generator Page

This site boasts links to over 5000 online image creation tools.  Create your very own vanity license plate or custom wallpaper.  Excellent resource for web developers.

http://www.customsigngenerator.com/

 

LEGO Difference Engine

This probably only fits the very narrow category of geek/nerd fun, but it is somewhat amazing, as well.  This site discusses the construction of a classic Babbage difference machine entirely from Legos.  The site provides fascinating (well, I thought so, anyway!) details about difference machines in general and the author's specific implementation.  And if such an esoteric use of Lego's doesn't tickle your fancy, you can always make a miniature Lego trebuchet!

http://acarol.woz.org/

 

Return to top