Author Topic: Sl-6000l On Amazon For $300 Right Now!  (Read 103841 times)

Omicron

  • Hero Member
  • *****
  • Posts: 608
    • View Profile
    • http://
Sl-6000l On Amazon For $300 Right Now!
« Reply #15 on: December 02, 2004, 02:33:00 pm »
Quote
I contacted the seller of the $300 Zaurus and he informed me that he had "17". They are back in Amazon for that price. Don't know how long it'll last.



$300 price is still there.  Kinds strange though, I mean how could someone (besides Amazon) sell then so cheaply ??

But at least there is the Amazon guarantee behind them.



Amazon Safe Buying Gaurantee
« Last Edit: December 02, 2004, 02:33:57 pm by Omicron »
"You Shall Not Pass"    
....Gandalf, Lord Of The Rings
--------------------------------------------------------------
C-860 (Cacko), 3x4gb MD  
DLINK 660W, 1GB SD,  
Upgraded Archos AV320 w/80GB HDD
Pocketop and Targus IR keyboards
Favorite Deal Site: SaveCity.net (pretty cool, good deals daily on one page)

Nexus7

  • Newbie
  • *
  • Posts: 16
    • View Profile
Sl-6000l On Amazon For $300 Right Now!
« Reply #16 on: December 02, 2004, 02:39:51 pm »
Will Amazon cover the difference between $379 and $300, or does that only apply when Amazon itself sells it at $300?
« Last Edit: December 02, 2004, 02:40:24 pm by Nexus7 »

sk3tch

  • Newbie
  • *
  • Posts: 9
    • View Profile
Sl-6000l On Amazon For $300 Right Now!
« Reply #17 on: December 02, 2004, 02:47:47 pm »
They would not cover that difference, only applies to Amazon.com pricing.  You can always call and see...can't hurt.

bluedevils

  • Hero Member
  • *****
  • Posts: 1284
    • View Profile
    • http://
Sl-6000l On Amazon For $300 Right Now!
« Reply #18 on: December 02, 2004, 02:53:35 pm »
Hmmm...if amazon was sneaky, they could use a psuedo vendor to sell of the units at a low price and not have to pay completed purchases as backpay.
I'm now an iphone user and use my zaurii as serial terminals, perl and shell scripting and when I need 640x480 screens

sl-c3100/pda cacko 1.23 | sl-6000l/needs battery | sl-c760/server pdaxrom rc12 | Former sl-5500/tkcrom owner (sister's birthday gift)

brosen

  • Newbie
  • *
  • Posts: 9
    • View Profile
    • http://
Sl-6000l On Amazon For $300 Right Now!
« Reply #19 on: December 02, 2004, 02:57:28 pm »
I just bought one in Amazon at US$ 300, I hope everything will be ok

nilch

  • Hero Member
  • *****
  • Posts: 668
    • View Profile
    • http://
Sl-6000l On Amazon For $300 Right Now!
« Reply #20 on: December 02, 2004, 04:17:53 pm »
So did I, ...

relax, usually Amazon vendors should provide good service otherwise in case of problems, Amazon takes the responsibility too - since your payment is made thru Amazon.
New no more-C1000 / 5000D (sold my 6000 and 750) | Cacko ROM 1.23 on C1000 | 256 MB CF | 2GB PNY SD card | Socket Networker WiFi CF Card | USB Host cable from StreamlineCPUS | Mini Microphone (for voice recording) |

f1oyd1an

  • Jr. Member
  • **
  • Posts: 52
    • View Profile
Sl-6000l On Amazon For $300 Right Now!
« Reply #21 on: December 02, 2004, 05:28:06 pm »
code to beep as soon as the zaurus is back on amazon... i was running this for 2 days but never got a beep
Maybe someones interested...

Code: [Select]
import java.awt.Toolkit;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.net.URLConnection;
import java.util.Date;

public class AzonWatch {
    public static String SEARCH_STRING = "List Price";
    public static int INTERVAL_SECS = 10;

    public static void main(String args[]) throws Exception{
  String url = "http://www.amazon.com/exec/obidos/tg/detail/-/B0001W17H2/002-4332521-8846444?v=glance";
  
  String htmlString;
  while(true) {
      for(int i=0; i    try { Thread.sleep(1000); } catch(Exception e) { }
    System.out.print(".");
      }


      htmlString = dlURL(new URL(url));
      if(htmlString.indexOf(SEARCH_STRING) == -1)
    notAvailableAction();
      else
    availableAction();
  }

    }



    
    private static void availableAction() {
  System.out.println(" " + new Date() + " <<<------------------------ AVAILABLE ------------------------>>> ");
  Toolkit.getDefaultToolkit().beep();
    }




    private static void notAvailableAction() {
  System.out.println(" " + new Date() + " <-- NOT AVAILABLE --> ");
    }

    
    private static String dlURL(URL src) {
  int BUF_SIZE = 4096;
  try {
      byte[] buf = new byte[BUF_SIZE];
  
      URLConnection urlCon = src.openConnection();
      InputStream in = urlCon.getInputStream();
  
      StringBuffer sBuf = new StringBuffer("");
      int size;
      while((size = in.read(buf, 0, BUF_SIZE)) != -1) {
    sBuf.append(new String(buf, 0, size));
      }
  
      in.close();
      return sBuf.toString();
  }catch(Exception e) {
  e.printStackTrace();
  return "";
  }
    }


    
}
« Last Edit: December 02, 2004, 05:54:03 pm by offroadgeek »
ripped by jpettins dude
hunting for a z6k (379$ please..)

adf

  • Hero Member
  • *****
  • Posts: 2807
    • View Profile
    • http://
Sl-6000l On Amazon For $300 Right Now!
« Reply #22 on: December 02, 2004, 11:34:27 pm »
thanks  That saved me a lot on an upgrade
**3100 Zubuntu Jaunty,(working on Cacko dualboot), 16G A-Data internal CF, 4G SD, Ambicom WL-1100C Cf, linksys usb ethernet,  BelkinF8T020 BT card, Belkin F8U1500-E Ir kbd, mini targus usb mouse, rechargeble AC/DC powered USB hub, psp cables and battery extenders.

**6000l  Tetsuized Sharprom, installed on internal flash only 1G sd, 2G cf

neuroshock

  • Sr. Member
  • ****
  • Posts: 269
    • View Profile
    • http://
Sl-6000l On Amazon For $300 Right Now!
« Reply #23 on: December 03, 2004, 02:04:38 am »
As always you're very welcome!  It's what we do here on the ZUG- look out for one another.
-NeuroShock
[span style=\'font-size:8pt;line-height:100%\']SL-6000L & C3100.[/span]

johnw

  • Jr. Member
  • **
  • Posts: 94
    • View Profile
    • http://wallacesoftware.com/zaurus
Sl-6000l On Amazon For $300 Right Now!
« Reply #24 on: December 03, 2004, 11:05:39 pm »
There is at least one $300 SL-6000L Zaurus available as I write this (3Dec @ 22:10 CST)  Get it HERE.

Post a note here if you bought it.

UPDATE:  4-Dec - Its been sold.
« Last Edit: December 04, 2004, 12:29:04 pm by johnw »
Sharp SL6000L Sharp SL5000d Intel PRO Wireless 802.11b CF 512MB Toshiba SD Sharp CE-AG06 camera Pocketop

fiveinarow

  • Newbie
  • *
  • Posts: 4
    • View Profile
Sl-6000l On Amazon For $300 Right Now!
« Reply #25 on: December 04, 2004, 04:15:07 pm »
This just gets stranger and stranger. I ordered at $499 on 10/24. Two days later it went down to $479 and Amazon refunded $20. Several days later it was offered at $379 and I requested an adjustment and Amazon refunded an additional $100. On Friday I saw the thread about the unit offered at $300 and I again requested a price adjustment and today Amazon credited my credit card ANOTHER $79!!

So... in a week's time they've given me $199.99 in refunds. I think I love Amazon.com!!!



Steve - Who would have enjoyed his new 6000L even at $500 let ALONE at $300!!

Omicron

  • Hero Member
  • *****
  • Posts: 608
    • View Profile
    • http://
Sl-6000l On Amazon For $300 Right Now!
« Reply #26 on: December 05, 2004, 09:05:36 pm »
Quote
This just gets stranger and stranger. I ordered at $499 on 10/24. Two days later it went down to $479 and Amazon refunded $20. Several days later it was offered at $379 and I requested an adjustment and Amazon refunded an additional $100. On Friday I saw the thread about the unit offered at $300 and I again requested a price adjustment and today Amazon credited my credit card ANOTHER $79!!

So... in a week's time they've given me $199.99 in refunds. I think I love Amazon.com!!!



Steve - Who would have enjoyed his new 6000L even at $500 let ALONE at $300!!


YOU got VERY lucky as Amazon only Price adjuts to THEIR OWN prices, not third party sellers.  I think you must ahve gotten a cust service Rep who was ill-trained or full of the holday spirit (or scotch   )

Good For You !!!!

PS(I suggest anyone getting the 6000L for $300 to call Sharp and give them the serial number and make sure they are not refurbished...I mean, they are probably nice anyway, but the warranty might be shortened, and it's a good thing to know in any case...oh yeah, and post here and tell us what you find out !!).
« Last Edit: December 05, 2004, 09:08:38 pm by Omicron »
"You Shall Not Pass"    
....Gandalf, Lord Of The Rings
--------------------------------------------------------------
C-860 (Cacko), 3x4gb MD  
DLINK 660W, 1GB SD,  
Upgraded Archos AV320 w/80GB HDD
Pocketop and Targus IR keyboards
Favorite Deal Site: SaveCity.net (pretty cool, good deals daily on one page)

adf

  • Hero Member
  • *****
  • Posts: 2807
    • View Profile
    • http://
Sl-6000l On Amazon For $300 Right Now!
« Reply #27 on: December 05, 2004, 10:37:18 pm »
I bought one
I await it anxiously. Have to sell my 5600 though
adf
**3100 Zubuntu Jaunty,(working on Cacko dualboot), 16G A-Data internal CF, 4G SD, Ambicom WL-1100C Cf, linksys usb ethernet,  BelkinF8T020 BT card, Belkin F8U1500-E Ir kbd, mini targus usb mouse, rechargeble AC/DC powered USB hub, psp cables and battery extenders.

**6000l  Tetsuized Sharprom, installed on internal flash only 1G sd, 2G cf

Lance

  • Newbie
  • *
  • Posts: 14
    • View Profile
    • http://pages.suddenlink.net/nitch-z
Sl-6000l On Amazon For $300 Right Now!
« Reply #28 on: December 06, 2004, 12:02:42 am »
Seeing the success of fiveinarow, I wrote Amazon customer service and asked for a refund of the difference between my cost I paid early last week of $379.99 and the $300.00 it was offered for later in the week.  I got an email back from them today saying I'm getting a refund of $158.00 (I bought 2 SL-6000Ls, one for me, the other as a gift to OZ developer Mickeyl).  So it's not just fiveinarow getting lucky.  I guess I'll get a 1GB SD card with the extra money.

Lance
Enid, OK, USA
SL-C3000 - OpenBSD 4.2 (GENERIC) #168: Tue Aug 28
CF Wireless LAN card: wi0
SL-6000L - original sharp rom
SL-C760 - openzaurus 3.5.4
Desktop: OpenBSD 4.1 (GENERIC)

xjqian

  • Sr. Member
  • ****
  • Posts: 497
    • View Profile
    • http://
Sl-6000l On Amazon For $300 Right Now!
« Reply #29 on: December 06, 2004, 12:17:15 am »
Thank you for writing to Amazon.com.

I have checked the item "Sharp Zaurus SL-6000L Handheld" which is
currently unavailable on our website. The discounts we offer on items
on our web site do vary from time to time.  However, please be
assured that lowest price of this item on website was $379.99 the
amount your credit card has been charged.

Also, please note that some prices listed on an item's product detail page are offered by Amazon Merchants, or by individual sellers
through Amazon Marketplace.  Because Amazon.com does not have a
price matching policy, we cannot match the price offered by another
seller on our web site.

I got shotdown. not as lucky as your guys.
My Blog | 6000L Tosa + sled | is: Angstrom | was: pdaXrom 1.1.0beta1 | was: stock 1.12 rom + no-ffpe fash kernel + X/Qt Debian |
CF GPS (FGPCFCD01) | USB "Prolific 2303" GPS (USB-UG-200) | Socket CF BT rev. H |  USB "Pegasus II" Ethernet (ADM8511) | PocketTop IR kbd | sip:527630@fwd.pulver.com
Todo: OESF wiki | stable VOIP app | usable GPS app |      Wishlist: VOIP + Bluetooth | GPS + Routing Calc