- Home
- Computers
- ASUS Eee PC For Dummies
ISBN: 9780470411544
List Price:
Add to Quote
Your Price per Book:
Total for copies: Save
Found a lower price on another site? Request a Price Match
Quantity
Price
FREE Ground Shipping in US
Expect Delivery in 4-10 weekdays
Shipping Savings
$24.99
- SKU:
- 9780470411544
- Availability:
- 499.75
- Minimum Purchase:
- 25 units
- Bulk Pricing:
- Buy in bulk and save
- Buy 25 - 99 and get 20% off
- Buy 100 - 249 and get 23% off
- Buy 250 - 499 and get 26% off
- Buy 500 - 999 and get 28% off
- Buy 1000 or above and get 31% off
Bulk discount rates
×
Below are the available bulk discount rates for each individual item when you purchase a certain amount
Overview
What can you do with your Eee PC? Find out how to get the most fromthis mini-laptop with Asus Eee PC For Dummies. It shows youhow to get things done—using the Linux operating system andapplications, navigating the tabbed desktop, adding hardware andsoftware, backing up and restoring the Eee PC, and more.
You’ll learn how to set up Windows, take advantage of allthe pre-installed software, ensure that your computer is secure,and even run your Eee PC on solar power. You’ll find tips forconfiguring printers and changing touchpad settings, techniques formaking Skype phone calls and listening to Internet radio, andadvice for adding storage and peripherals. It also helps you:
- Take full advantage of this exciting, ultra-portable“netbook” PC
- Set up your wireless connection
- Make free Skype phone calls and video calls
- Use OpenOffice.org, Thunderbird e-mail, Mozilla Firefox, andother included applications
- Use the versatile OpenOffice productivity suite, includingWriter for word processing, Calc for spreadsheets, and Impress forpresentations
- Compare the advantages of Windows vs. Linux
- Discover the science, language, math, and art functions thatkids can enjoy on the Eee
- Enjoy built-in games, watch videos, play music, organize andview photos, and more
- Boost storage and memory with SD cards and USB drives, goBluetooth, and add a GPS
- Get the scoop on backups, explore the advanced desktop, andcustomize the user interface
The Eee PC makes it simple to surf the Web, play games, work,and more. Asus Eee PC For Dummies makes it easier!
This book title, ASUS Eee PC For Dummies, ISBN: 9780470411544, by Joel McNamara, published by Wiley (December 10, 2008) is available in paperback. Our minimum order quantity is 25 copies. All standard bulk book orders ship FREE in the continental USA and delivered in 4-10 business days. Expedited shipping is also available.
Unlike Amazon and other retailers who may also offer ASUS Eee PC For Dummies books on their website, we specialize in large quantities and provide personal service, from trusted, experienced, friendly people in Portland, Oregon. We offer a Price Match Guarantee, and QuickQuote form, to make purchasing quick and easy.
Prefer to work with a human being when you order ASUS Eee PC For Dummies books in bulk? Our Book Specialists are standing by Monday-Friday 8-5 PST, ready to help!
Product Details
Ordering Details
- Product Availability: Typically, all books are in stock and ready to ship. If a title becomes unavailable unexpectedly, you will be contacted with 24 business hours.
- Standard Shipping: FREE Shipping via ground transportation within the continental United States.
- Estimated Delivery: Most orders deliver within 4-10 business days from order date (excluding weekends and holidays). Due to recent supply chain delays, some titles may take up to 15 business days to deliver. Orders shipping to Alaska or Hawaii should allow a minimum of 3 weeks for delivery. Rush Shipping is currently not available.
- Important Note: Books ship from various warehouses and may receive multiple cartons to fill the complete order. Do not assume your order is shipping from Portland, OR.
- Payment Terms: Visa, MC, Amex, PayPal, Purchase Orders and P-Cards can be used to purchase online. Check and wire-transfer payments are available offline through Customer Service
×
Submit a product page URL from any BULK bookseller\'s website, including Amazon, and we\'ll try our best to match or beat the price. Order Minimums: $100/25 copies per title We do not offer Price Matching for: A Book Specialist will respond via email later today or early tomorrow (weekdays only). | ||
![]() ASUS Eee PC For Dummies |
'; var content = '
PRICE MATCH REQUEST FORM
Submit a product page URL from any BULK bookseller\'s website, including Amazon, and we\'ll try our best to match or beat the price. Order Minimums: $100/25 copies per title We do not offer Price Matching for: A Book Specialist will respond via email later today or early tomorrow (weekdays only). | ||
![]() ASUS Eee PC For Dummies |
';$.featherlight(content);Reamaze.reload();return false;}); // Pricing Grid var prices = [{"discount":{"formatted":"20%","value":20},"max":99,"min":25,"type":"percent"},{"discount":{"formatted":"23%","value":23},"max":249,"min":100,"type":"percent"},{"discount":{"formatted":"26%","value":26},"max":499,"min":250,"type":"percent"},{"discount":{"formatted":"28%","value":28},"max":999,"min":500,"type":"percent"},{"discount":{"formatted":"31%","value":31},"max":0,"min":1000,"type":"percent"}]; prices.sort(function(a, b) { return a.min - b.min; }); console.log(prices); var price_lowest = 0; var $grid = $('.PricingGridInner'); for(var i in prices) { var price = prices[i]; //if(i == 0 && price.min < quantity_minimum) quantity_minimum = price.min; if(i == 0 && price.min != quantity_minimum) quantity_minimum = price.min; // Allow to be greater or less than console.log('quantity_minimum: '+quantity_minimum); // Price console.log('price.type: '+price.type); if(price.type == "fixed") price.price = price.discount.value; else price.price = toFixed(global_price - (price.type == "percent" ? global_price * (price.discount.value / 100) : price.discount.value),2); price_lowest = price.price; console.log(price.min+': '+ price.price); // Store bulk_prices[price.min] = price; // Display $grid.append('
'+price.min+''+(price.max ? '-'+price.max+'' : '+')+'
$'+numberWithCommas(toFixed(price.price,2))+'
'); }$grid.append('
'); // Minimum Quantity console.log('case_qty: '+case_qty+', case_select: '+case_select);if(case_select && case_qty) quantity_minimum = case_qty;else case_select = 0;console.log('quantity_minimum: '+quantity_minimum);$('.minimum_qty').html(quantity_minimum); // Message below input$('.form-atc-qty') // Add to Cart Input .val(quantity_minimum) .keydown(function (e) { if ( $.inArray(e.keyCode, [46, 8, 9, 27, 110, 190]) !== -1 || (e.keyCode == 65 && ( e.ctrlKey === true || e.metaKey === true ) ) || (e.keyCode >= 35 && e.keyCode <= 40) ) return; if(e.keyCode == 13) { CheckQTY(); e.preventDefault(); } if((e.shiftKey || (e.keyCode < 48 || e.keyCode > 57)) && (e.keyCode < 96 || e.keyCode > 105)) { e.preventDefault(); } }) .keyup(function(e){ //console.log("key: "+e.keyCode); if(parseFloat($(this).val()) >= quantity_minimum) { CheckQTY(); } }).blur(function() { CheckQTY(1); }); // Check Quantity / Totals CheckQTY();// Reviews headerif("0" == "1") $('.ReviewsLabel').html('Review'); /** * Product Options *//** * !!!!!!!!!!!!!!!!!!!!!! NOTE: !!!!!!!!!!!!!!!!!!!!!! * NEED TO ALSO UPDATE THIS IN /bigcommerce/tbc/template/Snippets/ProductAddToCart.php AND THE $publisher_identifiers ARRAY IN config.php */// Publisher Identifiervar publishers = {// These are the actual listed 'Publisher' listed under 'Publisher' Custom Field (which also includes (date published)"Albert Whitman & Company": "P-AW", // Was P-IPG, now their own thing"Allworth Press": "P-SS", // Used to be P-SKYH"Arcade": "P-SS", // Used to be P-SKYH"Arcadia": "P-ARCA","Atlas": "P-ATLAS","B&H Publishing Group": "P-B&H","B&H Publishing Group": "P-B&H","Carrell Books": "P-SS", // Used to be P-SKYH"Chronicle Books": "P-CHRONICLE","Clydesdale Press": "P-SS", // Used to be P-SKYH"Crossway": "P-CROSS",//"DK": "P-DK", // Is now P-RH"DK": "P-RH","Federal Street Press": "P-FSP",//"Gallup": "P-GALP", // Switched back to SS (below)"Gallup": "P-SS","Gary Null": "P-SS", // Used to be P-SKYH"Good Books": "P-SS", // Used to be P-SKYH"Good Night books": "P-RH", // Used to be P-PER"Hardie Grant": "P-CHRONICLE","Helios Press": "P-SS", // Used to be P-SKYH"Hot Books": "P-SS", // Used to be P-SKYH"Ignatius Press": "P-MISC", // Comes in through IPG folder (P-IPG), but want it to be MISC"Merriam Webster": "P-MW","Night Shade": "P-SS", // Used to be P-SKYH"Not for Tourist": "P-SS", // Used to be P-SKYH"Racehorse for Young Readers": "P-SS", // Used to be P-SKYH"Racehorse Publishing": "P-SS", // Used to be P-SKYH"Redleaf Press": "P-MISC", // Comes in through CONSORTIUM folder (P-PER), but want it to be MISC"Regnery Publishing": "P-MISC", // Yep, want to force it to be MISC (would be SS otherwise)"Research & Education Association": "P-MISC","Rosen": "P-ROSEN","Rourke Educational Media": "P-ROURKE","Seahorse Publishing": "P-SS", // Used to be P-SKYH"Sky Pony": "P-SS", // Used to be P-SKYH"Skyhorse": "P-SS", // Used to be P-SKYH"Sporting Classics": "P-SS", // Used to be P-SKYH"Sports Publishing": "P-SS", // Used to be P-SKYH"Talos Press": "P-SS", // Used to be P-SKYH"The Creative Company": "P-MISC","Yucca": "P-SKYH"};// Commented out all the "P-MISC" as that'll be the defaultvar files = {"-hbgusa": "P-HACH", // All hbgusa whould be HACH, even if placed in Macmillan Trade folder//"HC (Harper Collins)-sourcebooks_05_19_2017-20170519.xml": "P-SOURCEBK", // Using below instead"sourcebooks": "P-SOURCEBK", // So it catches anything with sourcebooks"Wiley": "P-WIL", // Sometimes also matches 'Collins' if uploaded to that directory"Workman": "P-WORK", // Sometimes also matches 'Harper Collins' if uploaded to that directory, should be in Eloquence directory"BTPS": "P-BTPS", // Needs to come before 'ATLAS' (it's in that folder)//"-DEMOSDemos_Health": "P-MISC","-hc_onix_full": "P-HC","-hc_onix_delta": "P-HC","-hcus_onix_full": "P-HC","-NortonNorton": "P-WWN","-REA_": "P-DOVER","AlbertWhitman": "P-AW", // Was P-AW, then P-IPG, now back to P-AW//"ALL_BOOK_IMAGES-Greenleaf": "P-MISC","ALL_BOOK_IMAGES-Simon": "P-SS",//"Amacom": "P-MISC",//"ARBORDALE": "P-MISC",//"Arcadia": "P-MISC","ASCD": "P-ASCD","ATLAS": "P-ATLAS","B_and_H": "P-B&H","BAKER": "P-BAKER","BAREFOOT": "P-BAREF","Barrons": "P-BARR","BerrettKoehler": "P-BERRETT","CAPSTONE": "P-CAP","CHILDSPLAY": "P-CHILDSPLAY","Compendium": "P-COMP","CONSORTIUM": "P-PER","Corwin": "P-CORWIN","CRABTREE": "P-CRAB","Dover": "P-DOVER", // Was P-DOV"Eloquence-Time": "P-HACH", // Keeping 'Eloquence-' on this one as 'Time' might be used on others// These used to be "Eloquence-...", but sometimes in Macmillian Trade folder"FreeSpirit": "P-FREESPIRIT","FWMedia": "P-FW", "EERDMANS": "P-EERD", //"Eloquence-Greenleaf": "P-MISC","HNA": "P-ABRAMS", // Used to be Eloquence-HNA, but sometimes in Macmillian Trade folder"Houghton": "P-HM","IPG": "P-IPG","LERNER": "P-LERN", // Lerner"NewHarbinger": "P-NWHARB","PEACHTREE": "P-PEACH", // Peachtree"Perseus": "P-PER", // Needs to be before IPS"IPS": "P-IPS","PRH": "P-RH","Scholastic": "P-SCH","Sterling": "P-STER", // Used to be 'Eloquence-Sterling', but sometimes in 'Macmillian Trade' folder//"WhitakerHouse": "P-MISC",// End 'Eloquence' section//"FoxChapel": "P-MISC","Greenleaf": "P-GLEAF", // Usually in Eloquence folder, used to be MISC"HarperChristian-Nelson": "P-TNELSON","HarperChristian-THEBOOKCOMPANY": "P-TNELSON","HarperChristian-Tyndale": "P-TNELSON","HarperCollins": "P-HC","HarvestHouse": "P-HARVEST", "HayHouse": "P-HAYH","Houghton": "P-HM","Perseus": "P-PER", // Sometimes gets something like "HC (Harper Collins)-Perseus_Distribution_02012017_complete_onix21-20170203a.xml", need Perseus catch to be before the next "Collins" match // Could also replace the Eloquence-Perseus match above"Collins": "P-HC", // HC%20(Harper%20Collins)-wiley.1.20161115-20161118.xml//"HCI-": "P-MISC","McGrawHill": "P-MCGRAW",//"MIDPOINT": "P-MISC","MOODY": "P-MOOD","NBN-": "P-NBN","ORCA-": "P-ORCA", // Used to be P-Misc//"Paraclete": "P-MISC",//"Parragon": "P-MISC","PGW-LEGATO": "P-PER","Propulsion-cherrylake": "P-CHERRY", // Used to be P-MISC"Propulsion-sleepingbear": "P-CHERRY", // Used to be P-MISC//"RandomHouse-PRH": "P-RH", // Now caught by 'PRH' above//"Sellers-sourcebooks": "P-MISC","Simon": "P-SS","TCM": "P-TCM","TWO RIVERS-PERSEUS": "P-PER","TYNDALE-Tyndale": "P-TYNDALE", // Was P-TNELSON//"WILLOWCREEK": "P-MISC","Macmillan": "P-STM" // NOTE: this can catch a lot of things mistakenly put in the Macmillian folder (Scholastic, etc.) so keep at bottom};var publisher_identifier;if(publisher) {publisher = publisher.toLowerCase();console.log('Publisher: '+publisher);for(var p in publishers) {if(publishers.hasOwnProperty(p)) {//console.log(p+": "+publishers[p]);if(publisher.indexOf(p.toLowerCase()) > -1) {console.log('match (publisher)');publisher_identifier = publishers[p];break;}}}}if(!publisher_identifier && file) {file = file.toLowerCase();console.log('File: '+file);for(var f in files) {if(files.hasOwnProperty(f)) {//console.log(f+": "+files[f]);if(file.indexOf(f.toLowerCase()) > -1) {console.log('match (file)');publisher_identifier = files[f];break;}}}}if(!publisher_identifier) publisher_identifier = "P-MISC"; // Defaultpublisher_identifier = "BOOKS:"+publisher_identifier;console.log('option - publisher identifier - '+publisher_identifier);// List Price (text field) / Retail Price (dropdown)console.log('option - list price - '+global_price);// Set$('.PurchaseCart .form-field, .productView-options .form-field').each(function() { // Do for '.productView-options' too. Not used when adding to cart, but other scripts (QN) aren't determining which field to use correctly so just make sure it's set correctly in all places it appearsvar field = $(this);var label = $.trim($('.form-label',field).text());console.log('label: `'+label+'`');// Publisher Identifierif(label == "Publisher Identifier:") { console.log('setting '+label+' to `'+publisher_identifier+'`');$('.form-select option',field).filter(function() {console.log($(this).text()); return $(this).text() == publisher_identifier;}).prop('selected',true);}// Retail Priceelse if(label == "Retail Price:") { console.log('setting '+label+' to `'+global_price+'`');$('.form-select option',field).filter(function() { //console.log(($(this).text() * 1)+' == '+global_price+' = '+(($(this).text() * 1) == global_price ? "Yes" : "No")); return ($(this).text() * 1) == global_price;}).prop('selected',true);}// List Priceelse if(label == "List Price:") { console.log('setting '+label+' to `'+global_price.toFixed(2)+'`');$('.form-input',field).val(global_price.toFixed(2));}});});function CheckQTY(blur) { var error_minimum = 0; var error_multiples = 0; // Get quantity = quantity_original = parseFloat($(".form-atc-qty").val()); console.log('quantity: '+quantity+', quantity_minimum: '+quantity_minimum); // Nothing entered if(quantity == "" ) { quantity = quantity_minimum;error_minimum = 1; } // Less than minimum else if (quantity < quantity_minimum || quantity == "NaN") { quantity = quantity_minimum;error_minimum = 1; } // Case Pack Select - must select in multiples else if(case_select) { var QtyMultiple = Math.floor(quantity / quantity_minimum) * quantity_minimum; if(QtyMultiple != quantity) { quantity = QtyMultiple; $('.ProductMultiples').show(); error_multiples = 1; } else $('.ProductMultiples').hide(); } // Add to Quote if(quantity_original < 15) $('.AddToQuoteLink').hide(); else $('.AddToQuoteLink').show(); // Quantity Minimum errorif(error_minimum) $('.ProductMinimum').addClass('form-field--error');else $('.ProductMinimum').removeClass('form-field--error'); // Pre-order - make button orange // Will check date validity (can't order more than 30 days out) in another scriptif($('.ProductRelease').length) {$('.PurchaseCart #form-action-addToCart').addClass('button--orange');} // Error? var error = 0;if(quantity != quantity_original) {error = 1;// Flash//$("#text_qty_2").css('background','#D26418').animate({backgroundColor:'white'},500);// Disable submitconsole.log('disabling submit (quantity issue)');$('.PurchaseCart #form-action-addToCart').attr('disabled','disabled');$('.ProductQty').addClass('form-field--error');}else if(!$('.PurchaseCart #form-action-addToCart').hasClass('disabled')) { // If disabled by something else (preorder date is too far in future) don't re-enable// Enable submitconsole.log('enabling submit');$('.PurchaseCart #form-action-addToCart').removeAttr('disabled');$('.ProductQty').removeClass('form-field--error');} // Set // No longer doing, just error, disable submit //$(".form-atc-qty").val(quantity); // Total Price for(var i in bulk_prices) { var price = bulk_prices[i]; if(quantity >= price.min && (quantity <= price.max || !price.max)) { $('.PPB-value').html('$'+numberWithCommas(toFixed(price.price,2))); $('.PTC-qty').html(quantity); $('.PTC-value').html('$'+numberWithCommas(toFixed(price.price * quantity,2))); $('.PTC-save-value').html('$'+numberWithCommas(toFixed((global_price - price.price) * quantity,2))); } } // Shipping savingsvar shipping_per = 1.27;$('.PricingShippingSavings').html('$'+numberWithCommas(toFixed(shipping_per * quantity,2)));}// http://stackoverflow.com/questions/10015027/javascript-tofixed-not-roundingfunction toFixed(num,precision) {return (+(Math.round(+(num + 'e' + precision)) + 'e' + -precision)).toFixed(precision);}// https://stackoverflow.com/a/2901298function numberWithCommas(x) {return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");}var google_tag_params = { ecomm_prodid: '713999', ecomm_pagetype: 'Product', //ecomm_totalvalue: new Array(global_price) ecomm_totalvalue: [global_price]};var product_code = "9780470411544";// Ad Roll Product ID - https://help.adroll.com/hc/en-us/articles/216673657-Getting-Started-with-Dynamic-Creativeadroll_custom_data = {"product_id":"713999"};