-
Archives
- December 2018
- October 2018
- March 2018
- October 2017
- February 2017
- April 2016
- March 2016
- February 2016
- March 2015
- December 2014
- October 2014
- August 2014
- July 2014
- February 2014
- October 2013
- September 2013
- August 2013
- July 2013
- June 2013
- April 2013
- March 2013
- January 2013
- October 2012
- July 2012
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- January 2010
- December 2009
- November 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
- March 2006
- February 2006
- January 2006
- December 2005
- June 2005
-
Meta
Category Archives: technical
Quick and dirty upgrading a SaaS (Software-as-a-Service) when then there is bad data
One of the under-appreciated, but very important, parts of running a SaaS (Software-as-a-Service) business is the upgrade path. This is particularly hard when you are trying to be a lean startup. The pure SAAS (Software-as-a-Service) model means “no installed” software … Continue reading
Posted in technical
Leave a comment
Does the javascript community have a repository
Apple, Microsoft, Google, Adobe, et. al. install software have automatic code to handle pushing out security fixes. On the development side, Java has maven or ivy to retrieve dependent jars from various public repositories. Ruby has even better dependency retrieval … Continue reading
Always check twice
You should always double check your timing testing methodology. Robbie Ferguson got very excited about: So I thought, let’s run the world’s simplest test: how fast does wget receive the jQuery library on Linux? It may not be a realistic … Continue reading
Code Review #9 : The importance of doing the small things right
Do the small things right. Make sure your craftmanship shows pride. The code “working” is not enough. The craftmanship. The attention to detail is equally important. Part of the way that Steve Jobs made Apple great is his insistance on … Continue reading
Posted in code review
Leave a comment
10gui window management not innovative enough
A friend suggested that I look at the R. Clayton Miller’s 10gui video (2009) for ideas on window management and interaction. The video makes some interesting observations about human-computer interactions (HCI): mice excel at pointing on the screen without obstructing … Continue reading
Posted in technical
Leave a comment
A criminal says trust is stupid but security “experts” trust
Sam Antar, convicted white collar criminal, says trusting is stupid clearly and explicitly: President Ronald Reagan said: “Trust, but verify.” As a convicted felon, I say: “Don’t trust, just verify.” “Verify, verify, verify.” As a criminal, I considered people’s humanity … Continue reading
Indifference to process leads to Mozilla contributor departing
Tyler Downer announced he was no longer contributing to Mozilla because the Mozilla bug triaging process was being sacrificed on the altar of “rapid release”. Tyler likes the idea of the Rapid Release, but rather the tools to handle bug … Continue reading
Posted in management, software design, starting a company, technical
Leave a comment
Excellent Css tools
Here are some websites I have found useful when learning css: http://css-tricks.com/ http://quirksmode.org http://www.css3.info/ Css3 tutorial via Css Tricks: CSS3Please.com Border-Radius.com HTML-Ipsum.com Button Maker Update ( 28 July 2011 ) : Now for some excellent tools: Sass (http://sass-lang.com ) Compass … Continue reading
Posted in how to, technical
Leave a comment
Installing private ruby gem in rails project using heroku
If you have a private gem, deploying to heroku can be frustrating.. In my case, I do not have even a server so I am not looking (yet) to set up a private rubygem server. I just have another project … Continue reading
Posted in help notes, ruby, technical
Leave a comment
Use Subclasses and alternative interface implementations to reduce “future” bugs
One of the little-appreciated consequences of subclassing or alternative implementations of Java interfaces is to reduce or eliminate “future bugs”. “Future bugs” are bugs that are currently not wrong, but will cause problems in the future. Every conditional ( if, … Continue reading
Posted in code review
Leave a comment