Wednesday, 17 March 2010
Looking through “An Introduction to Postscript” link, there is a section on Adobe’s history.
Adobe Systems formed was in 1982 with $2.5 million in initial backing.
It went public in August 1986.
Adobe has been profitable since day one.
Adobe does not manufacturer printers. It sesigns controllers and software and then licenses manufacturing rights to OEMs.
Originally, the only items Adobe sold to the general public were fonts.
Adobe has branched into the software market, developing some software internally, and purchasing some software (and software companies) for others.
- PhotoShop – Image manipulation software.
- Illustrator – Object oriented image editing software.
- PageMaker – Page Layout software.
- StreamLine – bitmap to spline converion software.
- Acrobat – Cross platform electronic document distribution.
Posted in General | No Comments »
Tuesday, 16 March 2010
This little factoid is only useful for people living in Toowoomba. We bought a trampoline for the kids today, and it was too big to fit in the car and we got a third party courier to deliver it.
Well, the delivery guy said I would have saved $10 if I had contacted him directly, instead [...]
Posted in General | No Comments »
Tuesday, 16 March 2010
Since I live in Australia, shipping books from Amazon can be a significant cost in addition to the book price. Therefore, I was attracted to a New Zealand e-tailer called Fishpond who offers an Amazon lowest price guarantee.
However, there was some fine print where it can end up being more expensive than purchasing from Amazon. [...]
Posted in General | No Comments »
Thursday, 11 February 2010
Ever rebuilt a VB dll and find that it would no longer act as a drop-in replacement for an existing dll that has been released?
VB hides a lot of the complexity of COM implementation, and it can be rather difficult to track down how far back when binary compatibility was broken.
One way to tackle this [...]
Tags: vb
Posted in General | No Comments »
Sunday, 13 December 2009
Interesting study commisioned by Google on SMB buying behaviours for IT products. In order of importance:
Reliable 73%
Integrates easily with existing systems
Service/support
Appropriate for a company of my size
Flexible 44%
Inexpensive to service/ maintain
Lower cost 37%
Requires minimal training/ education
Company is a well-known, established brand
Scalable
Includes comprehensive training/education
Discounts/promotions
Have purchased from company in the past 27 %
var addthis_language = ‘en’;
Posted in General | No Comments »
Saturday, 28 November 2009
I have been trying to reduce memory usage on our application server, and experimented with using __slots__ to reduce memory usage.
The memory overhead of using __dict__ vs __slots__ turned out to be 147 bytes per object.
Here are my results
Test
Total Memory
Bytes per object
slots
40880K
41
dicts
183840K
188
Using the following test script
class C(object):
#__slots__ = ('abc', 'defg')
pass
a = []
for i in xrange(1000000):
c [...]
Posted in Python | 4 Comments »
Wednesday, 11 November 2009
Sometimes winning projects can make one forget to gather competitive intelligence. Here is a list of questions one should ask the clients during a de-briefing:
Customer Details
Organisation name
Name, title
Opportunity Details
Products
Deal Value (License fee, Annual License fee, Consulting)
Main decision-makers (Name, title, role)
Main competitors (Organisation, products)
Main reason for win/loss
Process
Engagement – when first engaged
What did customer know about us [...]
Posted in Marketing | No Comments »
Wednesday, 11 November 2009
There has been a lot of commentary written about News Corp playing with the idea of exiting Google’s search index. Cringely said that News Corp would be denying themselves valuable traffic, handing them to competitors. Mark Cuban, on the other wrote that Twitter is heading to be THE news search site, leaving Google News has [...]
Posted in General | No Comments »
Thursday, 5 November 2009
Once in a while, one comes across a problem that is so totally perplexing, and people have various success with different approaches that it makes me think of the tale of the blind men and the elephant.
Recently, in a production environment, we are seeing errors in our SQL Server clients: reporting
TCP Provider, error: 0 – [...]
Posted in database | 2 Comments »
Thursday, 29 October 2009
Brad Wilson has a nice long post about the use of model metadata in ASP.NET MVC.
While most of these do not deal with database operations, they have a certain place in database modelling. The following are must haves:
Short Display Names – a sane toString() for tabular listings
Simple Display Text – a sane toString() for summarizing [...]
Tags: 4GL, database, rad
Posted in database | No Comments »
Monday, 19 October 2009
It used to be that one could simply rename a Word Template .dot file to .doc. However, Microsoft has made it somewhat harder today.
One way to do this is through using Word Automation. However, another way is to do some XML manipulation, given that .dotx and .dotcx files are actually zip archives.
import xml.dom.minidom
import zipfile
def dotx2docx(src, [...]
Posted in Python | 2 Comments »
Monday, 5 October 2009
I don’t know if you recall this article from the New Scientist discussing whether obesity is spreading through social norms.
However, there may be another pathway.
A 2007 Scientific American article mentions that bacteria can cause subjects to gain weight faster.
For one thing, bacteria produce chemicals that help us harness energy and nutrients from our food, Huffnagle [...]
Posted in General | No Comments »
Monday, 5 October 2009
Over the term 3 school holidays, we (my family) spent 11 days travelling in Japan, and I’d like to share some observations.
Osteoporosis is common among the elderly, far more prevalent than Australia for example. Despite the (relatively) higher consumption of soy products in Japan, this comes across as a little surprising
People are generally taller in [...]
Posted in General | 2 Comments »
Thursday, 17 September 2009
According to The Register article here:
[Special Operations contractor] will, at a minimum, develop Internet-based marketing procedures such as use of Google AdWords and Search Engine Optimization to prioritize search result listing of the applicable websites
What next? Affiliate programs? Cost per action? I know! email submits. Any creatives with landing page ideas?
Here’s a visualization of what [...]
Tags: seo
Posted in General | No Comments »
Thursday, 17 September 2009
Came across this site Allergy Translation Cards. They do a supreme good.
var addthis_language = ‘en’;
Tags: allergy translation
Posted in General | No Comments »
Wednesday, 16 September 2009
The information is supplied here: http://dotgov.gov/help_qualify.aspx
Good luck!
var addthis_language = ‘en’;
Tags: seo
Posted in General | No Comments »
Friday, 4 September 2009
I have this problem when driving my wife’s car: Why Do Cars Have Fuel Doors on Different Sides
But here’s the kicker. Commenter spewlman advised:
Want to avoid the frustration of not knowing what side your gas tank is on? Car manufacturers actually solve this mystery for you. On your dash is a picture of a fuel [...]
Posted in General | 4 Comments »
Friday, 4 September 2009
Mary Garden writes about her thirst for transcendence, but instead finds mystics and charlatans, who make ordinary human beings look like saints. Serpent Rising 2nd Ed
It is now thirty years since I first set foot in India and felt at last I had come home. From time to time in my now busy life, I [...]
Posted in General | No Comments »
Saturday, 22 August 2009
I don’t know what it is about xml configuration files that simply turn me off learning a particular library or framework. For example, here is a Hibernate XML monstrosity.
I realize it all makes sense, but there is something terribly off-putting about xml. To me it’s a sign that the host language is not sufficiently dynamic [...]
Posted in Thinking IT, lisp | 6 Comments »
Saturday, 15 August 2009
I just tried to “go back” to the previous page, but still want to retain the current page I’m reading. Middle click on the back arrow did the trick, and opened the previous page on a new tab.
Sweet.
var addthis_language = ‘en’;
Posted in General | No Comments »