Thursday, December 10, 2009

Darrin's request












Test4













Test 3













Tuesday, June 16, 2009

Fixing the prototype

The management of tacit knowledge is something that plagues many organization large and small in the battle for productivity. Synthesis is intrinsically more valuable than process as we can see in the market place with the development of methodologies that are synthesis oriented like Agile… but to balance the proverbial equation the problem with not fixing the prototype is that the fidelity of historical context is diminished greatly.

For your consideration.

########



That or “only Siths speak in absolutes” - Obi Wan Kenobi

Tuesday, June 9, 2009

Python 3 and greater

I'm listening to a Python CBT and it appears that Python 2.x is going to be around for a long time. But with 3.x which is already out the Python team will be making some intrinsic changes to how the compiler handles certain things and they will be have only one type of int, they will have true division as opposed to integer division (i.e. 1/2 == 0.5) instead of 0. Integer division will still be available via //. print was a statement or could be used in it's declarative form but not anymore, it's a function print ("param") . Strings are unicode, honestly that's great because, if you are writing an app that has to process content that is aggregating strings from all over the world, Korean, Japanese and Chineses are a must. They are adding iterables, basically data structure that are intrinsically iterable which is very Ruby-ish I must say.

So if you are starting out with a new app that is not dependent on a Python 2.x framework then 3.x is the way to go.

Thursday, May 28, 2009

A thought on cognitive simulacra

A thought to consider as thought for the day regarding cognitive simulacra:

Certain ways of processing information are more adaptive than other are, and all our ancestors survived long enough and did the right thing to have and raise children.

Our abilities to communicate with metaphors to ascribe meaning, and to discern pattern in noise are beyond the reach of any computer yet programmed.

By James Levenick

Simply Java: An Introduction to Java Programming

Tuesday, May 5, 2009

Listing applications running on a port? Windows XP

netstat -a -b

I piped it to a file so that I can then do a search.

netstat -a -b>ports.txt

Sunday, April 26, 2009

Copying dir content to another dir in linux

cp -r /home/hope/files/* /home/hope/backup

Monday, April 20, 2009

Determining How Much Space You Have On Your Hard Drive - Ubuntu

df

This will then show the list of the file structure and how full they are in percentage numbers.

Sunday, March 22, 2009

Installing IDLE on Ubuntu

sudo apt-get install idle