eBay Seller Bait and Switch Maneuvers

So here’s a little story about eBay, inspired by my recent attempts to buy a used laptop, from a (likely, highly unreputable) seller. I will name names.

I spent a good part of Sunday this week trolling eBay, searching for the best deal on a used laptop for some upcoming programming projects I have in mind. After researching and researching, digging up Thinkpad Personal Systems Reference books, and all sorts of other Manufacturer parts specs, I bid on a Dell from a user named “terbusinesses“.

The bid was on item 200884952022, which was initially a Buy It Now auction with a $350 starting bid and a $400 Buy It Now option. So, at 12:26pm Central Time, I bid $350. And I received a confirmation notice from eBay that I was the High Bidder. It looked like this:

Confirmation e-mail from eBay, that I opened the bidding on item 200884952022.
Confirmation e-mail from eBay, that I opened the bidding on item 200884952022.

For those in the know, once a bid has been placed on a Buy It Now auction, the actual option to Buy It Now goes away, the auction becomes a normal highest-bidder-wins type of auction.

A few hours later, I’m browsing eBay, and notice that “terbusinesses” has listed the identical item that I’m bidding on under a second auction, item 200886900878, which is the same sort of Buy It Now auction with a $350 starting bid with a $400 Buy It Now option. I don’t have a screenshot of this, but I know what I saw.

A few hours later, I get an e-mail: “eBay Bid Cancellation Notice – Item 200884952022 : DELL LATITUDE E6420 LAPTOP MOUSE, 4GB, CORE i5 WIN 7 INTEL HD 2.5 GHZ 320 GB HDD”. It looks like this:

The notice eBay sent me after the buyer rigged a second auction with the same item.
The notice eBay sent me after the buyer rigged a second auction with the same item.

That’s interesting, I think.

So somehow, this seller/scammer is hooking people into Buy It Now deals, and cancelling previous in-progress auctions. I’m not sure how this works on eBay’s side, because I don’t believe it should be possible to prematurely end a normal in-progress auction. And it certainly shouldn’t be legit to list the same item twice, then accept only the auction result that you want. In any case, this certainly doesn’t do much to build my confidence that the platform is fair, if this is a widespread thing.

The stupid bullshit reason that eBay gives when I look at the original item I bid on is: “This listing was ended by the seller because the item is no longer available.”, which is crazy. Tell me that at 12pm today there were “2” of the same item being sold by someone, and now there are none?

What eBay says when someone bait and switches an auction on you.
What eBay says when someone bait and switches an auction on you.

OS X User Account Control Popup: “finish_installation” wants to make changes.

Playing with my Mac this evening, the following system popup appeared, while I’m browsing around the web:

“finish_installation wants to make changes. Type an administrator's name and password to allow this.”

I’m always a bit suspicious, esp. if it shows up when I’m wandering around the web in Chrome. I assume nothing can get out of the sandbox, but who knows? I’ve already disabled the Java plugin, and nondescript programs asking me to type in my admin password always make me pause.

Various Google searches return non-helpful results, since it splits “finish” and “installation”, and, again doesn’t do order-dependent or phrase searches. And since most of the phrase is pretty non-unique, the results aren’t great.

But, I did manage to find this post on MacRumors.

Turns out the “finish_installation” is part of Sparkle, which is that handy-dandy autoupdate framework. But it’s not helpful when you don’t know which app is requesting the update, and/or if this app is legit.

So open up Activity Monitor, and Inspect the finish_installation process, which will tell you what you want to know.

Digging up info on the finish_installation process.
Digging up info on the finish_installation process.

In this case, the app to be updated is the Amazon Cloud Drive program, which is legit.

Shows us where this executable is being called from.
Shows us where this executable is being called from.

spatial_ref_sys and geometry_columns

Let’s say you have a little accident while messing with the schema of your PostGIS-enabled database, and the spatial_ref_sys and geometry_columns tables get wiped out. When you go to install a GeoDjango-enabled app such as the example “world” app, Python will yell at you, and you will be very sad:

It fails, because you accidentally dropped some very important PostGIS tables from the database. So you google a bit and find this: http://postgis.refractions.net/documentation/manual-1.5/ch02.html#id418654 which tells you what you need to do to set up a clean PostGIS installation.

So you dig around in the shared host, until you find where the PostGIS files are, and in particular spatial_ref_sys.sql:

So you try to run spatial_ref_sys.sql, and it fails, and you are sad:

Normally to create the missing table, you would run the postgis.sql script, and it would create these tables alongside the various GIS stored procedures. On a shared host, this probably won’t be possible, because you won’t have the permissions:

If you dig through postgis.sql for the proper CREATE TABLE statements, you’ll see something like:

You can pop these into a PostgreSQL admin shell and recreate these tables. Then you just have to rerun the spatial_ref_sys.sql file, and you should see:

Then, when you run the Django management script again, it should succeed.