March 26, 2003
US Anti-Canadian Trade Backlash Begins

Hot on the heels of the US Ambassador to Canada Paul Cellucci's statement that "security will trump trade," implying possible implications for cross-border traffic, comes a story on Wired News indicating that CompAtlanta, a company selling computer equipment on eBay, is refusing to "ship to, or accept bids from, Canada, Mexico, France, Germany or any other country that does not support the United States in our efforts to rid the world of Saddam Hussein. If you are not with us, you are against us."

EBay spokesman Kevin Pursglove said CompAtlanta was the only eBay merchant he knew of that is boycotting buyers for reasons related to the war. He said sellers can decide with whom they want to do business, but eBay frowns on posting overtly political messages. Pursglove said eBay ordered CompAtlanta to remove the auction item and to modify its message to bidders from Canada, Mexico, France and Germany.

Posted by Darren Wershler-Henry at March 26, 2003 12:40 PM
Comments

Remember.when.airspace.was.shut.down.following.the.World.Trade.Center,leaving.thoussnads.stranded.in.canada?.Hundreds,perhaps.thousands.opened.up.their.homes.and.provided.shelter,hospitalily.and.comfort.durning.a.time.of.intence.distress.and.uncertinly.That.is.the.type.of.neighbourly.support.the.US.and.the.rest.of.the.world.can.expect.from.CANADA.and.CANADIANS.BUT.WE.WILL.NOT.BLINDLY.FOLLOW.THE.US.ADMINISTRATION.ON.AN.ILLEGAL.MILITARY.CAMPAIGN.WITH.HIGHLY.SUSPECT.MOTIVES.AND.NO.CLEAR,IRREFUTABLE.EVODENCE.OF.THREAT.
Freedom.of.expression.is.still.a.right.in.our.democratic.societY---something.the.US.Ambassador.Paul.Cellucci.conveniently.forgot.about.when.criticizing.CANADA.for.its.lack.of.participation.in.President.Bush's.war.with.Iraq.I'm.VERY.thankful.Prime.Minster.Jean.Chretien.stood.up.to.an.aggressive.president.who.has.shown.he.is.only.with.his.agenda.and.interests,dispite.the.world's.objections. "We like nonfiction and we live in fictitious times. We live in a time where we have fictitious election results, that elect a fictitious president. We live in a time where we have a man sending us to war for fictitious reasons. Shame on you Mr. Bush. We're against this war."

Posted by: Jordan.james on April 3, 2003 10:05 AM

This code should compile and run just fine, and you should see no changes in how the program works. So why did we do all of that?

Posted by: Prudence on January 19, 2004 01:36 AM

Since the Heap has no definite rules as to where it will create space for you, there must be some way of figuring out where your new space is. And the answer is, simply enough, addressing. When you create new space in the heap to hold your data, you get back an address that tells you where your new space is, so your bits can move in. This address is called a Pointer, and it's really just a hexadecimal number that points to a location in the heap. Since it's really just a number, it can be stored quite nicely into a variable.

Posted by: Cadwallader on January 19, 2004 01:37 AM

When a variable is finished with it's work, it does not go into retirement, and it is never mentioned again. Variables simply cease to exist, and the thirty-two bits of data that they held is released, so that some other variable may later use them.

Posted by: Denton on January 19, 2004 01:37 AM

This variable is then used in various lines of code, holding values given it by variable assignments along the way. In the course of its life, a variable can hold any number of variables and be used in any number of different ways. This flexibility is built on the precept we just learned: a variable is really just a block of bits, and those bits can hold whatever data the program needs to remember. They can hold enough data to remember an integer from as low as -2,147,483,647 up to 2,147,483,647 (one less than plus or minus 2^31). They can remember one character of writing. They can keep a decimal number with a huge amount of precision and a giant range. They can hold a time accurate to the second in a range of centuries. A few bits is not to be scoffed at.

Posted by: Henry on January 19, 2004 01:38 AM

When Batman went home at the end of a night spent fighting crime, he put on a suit and tie and became Bruce Wayne. When Clark Kent saw a news story getting too hot, a phone booth hid his change into Superman. When you're programming, all the variables you juggle around are doing similar tricks as they present one face to you and a totally different one to the machine.

Posted by: Evan on January 19, 2004 01:39 AM
-->