Search results

  1. C

    10th Annual Tax Thread - 2012

    Last year, I had some restricted stock units vest. Taxes on this stock was due at vest so a number of stock was automatically sold to cover my tax liability. The sell price was lower then the value price which was added to my W-2 income. Can I claim a loss on my taxes?
  2. C

    Want advice on updating an old amd x2 desktop

    Both the 250 GB drives are SATA but I would lose the 160GB HDD and the DVD-RW drive as they are IDE. I do not have a micro center nearby :(
  3. C

    Want advice on updating an old amd x2 desktop

    Currently, I am setting up a computer that my sister can use for procrastination college work (e.g. internet/office). I have my old desktop: socket 939 AMD X2 3800+ 2.0ghz Manchester 2x512mb DDR1 utt-bh5 ram Nvidia 6600gt DFI NF4 lanparty motherboard 2x250GB + 1x160GB hard drives 600w...
  4. C

    C++ .h file help!

    I just glanced at your code, but it looks like you have some extra right parens in your setTime function definition.
  5. C

    Python help

    Well, if you treat white space as your delimiter, a word would simply be a continuous sequence of non white space characters. If you want a simple solution, a python string should have some sort of split() function that will return an array of all of the words in the string. You could then...
  6. C

    Math geeks chime in, help me solve this problem that's hot on reddit:

    That seems correct. To count them, you could choose all unique subsets of 10 from the 110. For each subset, choose 5 of the 10 to be on team 1 and the rest default to be team 2. http://www.wolframalpha.com/input/?i=%28110+choose+10%29+*+%2810+choose+5%29
  7. C

    What is the difference between make and g++?

    make is a utility to build programs, g++ is a C++ compiler (gcc is a C compiler). As a program grows in complexity, it becomes unfeasible to compile/build it without the aid of a build utility.
  8. C

    Scala

    Currently, I'm only aware of mobile using node.js. We mostly used Java here at LinkedIn and Scala is highly compatible with Java as they both compile down to Java bytecode. Scala code should be able to call any Java code and Java code should be able to call most Scala code. It pretty much...
  9. C

    Scala

    I use it at LinkedIn. I love it so far.
  10. C

    recommend me a RAID card

    Then is any real advantage to buying an HBA card like the LSI or the HighPoint card? These don't come with an onboard processor to handle the XOR operations involved with RAID5 or a cache so how would performance compare to the intel chip on my motherboard? I don't really want to spend $400+...
  11. C

    recommend me a RAID card

    I have 4x3TB sata drives that I would like to run in RAID 5. Currently I'm using the Intel fakeRAID of my motherboard but I don't really like the idea that my data is attached to the motherboard. I assume that if my motherboard dies or that I wish to move the disks to another computer, I'm SOL...
  12. C

    Is a 2008 Mac Pro for $625 a good deal?

    Work is shedding some old dev boxes and giving employees an opportunity to buy them. The specs of the mac pro I am eyeing are: 2*2.8 ghz xeon harpertown quad cores 4 GB ecc ram 500 GB HDD 256mb ATI 2600xt http://support.apple.com/kb/SP11 Also I can get a 2006 model for $375 2*2.66...
  13. C

    Help me finish my fileserver/htpc

    because the CPU + mobo were $235 which isn't a whole lot more then a budget CPU + a mobo with sufficient SATA ports.
  14. C

    Help me finish my fileserver/htpc

    So a visit to Microcenter and Frys today left me with an intel core i5 2500k CPU an Asus P8Z68-V LX ATX LGA1155 Z68 Motherboard 5 Seagate 3 TB external drives which should have these inside. An el cheapo keyboard mouse combo and $770 poorer Originally, I was just planning on...
  15. C

    3TB 7200 RPM 64MB Cache: $100+Tax Seagate

    I see them as $150 at amazon
  16. C

    Rant about modern elementary education

    btw, 56898/9 is 6322 ;)
  17. C

    Many US Kids confused by equals sign

    It means assignment - duh!
  18. C

    Two eggs one... .... ... egg.

    Alton says otherwise http://www.youtube.com/watch?v=bsgx6NeHlWk#t=1m50s
  19. C

    Color Acuity Test

    Got 4 on a laptop. All four errors were in the light reddish-purple region.
  20. C

    Anime recommendations

    If you are a fan of Hayao Miyazaki then take a look at Future Boy Conan
  21. C

    would like some advice on a new build

    Well my brother is currently living with my parents and with the way the computers in the house are setup across the basement + 2 floors, wifi is kind of necessary. With my dad's office and the ps3 in the basement, that's where the dsl modem/router is. My brother will likely want his computer...
  22. C

    would like some advice on a new build

    Don't need an OS as I have a few Windows 7 Pro keys through MSDNAA. I have a high end 19" CRT that is currently collecting dust else I was looking at this http://accessories.us.dell.com/sna/p...768f9fp0c0s441 Gigantopithecus, I can't see your list. What is the list ID? is it public?
  23. C

    would like some advice on a new build

    Aye Aye! Responses in italics
  24. C

    would like some advice on a new build

    My brother wants a desktop. I was leaning towards just recommending him a prebuilt but when I saw his options ... D: I've been out of the loop for desktop components for a bit. Does something like this look sane? http://secure.newegg.com/WishList/PublicWishDetail.aspx?WishListNumber=14060692...
  25. C

    looking for a desktop

    The problem is that I feel almost guilty recommending something like over build $1,395.46 +monitor $240 = $1635 :\
  26. C

    looking for a desktop

    I would think it would be safe to assume that anything with a discreet graphics card would have to have a PCI-Express slot. What else would the card be plugged into? PCI? :P
  27. C

    looking for a desktop

    I having a hard time finding anything with a 58xx that isn't a super overpriced alienware. Is the XPS my best bet? It still seems quite a bit overpriced. Would getting a mainstream model and swapping out the video card be an option or would this totally void the warranty and/or overload...
  28. C

    looking for a desktop

    Or more precisely, my brother is. I'm hesitant to build him a custom pc as 1) I'm only going to be home for about a week (and not till august) and 2) playing the role of long distance tech support kinda sucks so I'm thinking it would be best if I just recommend him a prebuilt one from a major...
  29. C

    easy way to tell when a background image of a div has finished loading?

    say I have a div <div id='myDiv' onload='myCallback()' style="background-image : url('foo') /> and I change the background image jQuery("#myDiv").css("background-image", "url('bar')"); The callback doesn't get called when "bar" is loaded. The div element is already "loaded".
  30. C

    easy way to tell when a background image of a div has finished loading?

    Correct me if I'm wrong, but doesn't the onload event fire only once when the page is first loaded? For what I'm doing, an ajax call is changing the sources of background images of a few divs. Some of these images are quite large. I need to know when the new images brought in by the ajax call...
  31. C

    easy way to tell when a background image of a div has finished loading?

    With img elements you can check the complete attribute. Is there an easy way to do something similar with a div?
  32. C

    What can I do to get Oracle and Java hash codes to match?

    Tell me when you find one that works in the general case.
  33. C

    Our Robot made the Finals - FIRST Robotics FTW - Video of Robot Soccer! EDIT:We're #1

    As a representative of team 1625, I and I'm sure the rest of my team wish you the best of luck at Ann Arbor. Week 1 we also narrowly missed taking home the gold (lost by 2 pts at the Greater Kansas City Regional) and we've been quite busy preparing for Midwest. Hope you guys make it to Atlanta.
  34. C

    So I just got an Amazon Internship...

    I assume I will find out tomorrow.
  35. C

    So I just got an Amazon Internship...

    Well my interviewers certainly didn't look like scammers...
  36. C

    So I just got an Amazon Internship...

    as a software development engineer. I should be receiving a call tomorrow to go over my offer. Any ATOTer who is or has been affiliated with Amazon care to chime in as to what exactly I have gotten myself into :D?
  37. C

    Value of a degree from big name schools?

    Full-time students pay a flat rate for tuition. It's only when you are not full-time that you pay per unit (credit hour).
  38. C

    Value of a degree from big name schools?

    Now its even bigger... :( Sorry but that's a load of B.S. Total cost of tuition, room/board, food, and school supplies is under $50k a year so the max you will have to pay for an undergrad degree is $200k. However, since the tuition is high, the financial aid office is much more generous...
  39. C

    Anyone here intern for Microsoft (SDE)?

    Well in about two weeks I'll be flying to Redmond/Seattle for a final round of interviewing for a Microsoft Software Development Engineer internship position. I assume there has to be at least a few people here that have interned for Microsoft before so if you are reading this thread, care to...
sale-70-410-exam    | Exam-200-125-pdf    | we-sale-70-410-exam    | hot-sale-70-410-exam    | Latest-exam-700-603-Dumps    | Dumps-98-363-exams-date    | Certs-200-125-date    | Dumps-300-075-exams-date    | hot-sale-book-C8010-726-book    | Hot-Sale-200-310-Exam    | Exam-Description-200-310-dumps?    | hot-sale-book-200-125-book    | Latest-Updated-300-209-Exam    | Dumps-210-260-exams-date    | Download-200-125-Exam-PDF    | Exam-Description-300-101-dumps    | Certs-300-101-date    | Hot-Sale-300-075-Exam    | Latest-exam-200-125-Dumps    | Exam-Description-200-125-dumps    | Latest-Updated-300-075-Exam    | hot-sale-book-210-260-book    | Dumps-200-901-exams-date    | Certs-200-901-date    | Latest-exam-1Z0-062-Dumps    | Hot-Sale-1Z0-062-Exam    | Certs-CSSLP-date    | 100%-Pass-70-383-Exams    | Latest-JN0-360-real-exam-questions    | 100%-Pass-4A0-100-Real-Exam-Questions    | Dumps-300-135-exams-date    | Passed-200-105-Tech-Exams    | Latest-Updated-200-310-Exam    | Download-300-070-Exam-PDF    | Hot-Sale-JN0-360-Exam    | 100%-Pass-JN0-360-Exams    | 100%-Pass-JN0-360-Real-Exam-Questions    | Dumps-JN0-360-exams-date    | Exam-Description-1Z0-876-dumps    | Latest-exam-1Z0-876-Dumps    | Dumps-HPE0-Y53-exams-date    | 2017-Latest-HPE0-Y53-Exam    | 100%-Pass-HPE0-Y53-Real-Exam-Questions    | Pass-4A0-100-Exam    | Latest-4A0-100-Questions    | Dumps-98-365-exams-date    | 2017-Latest-98-365-Exam    | 100%-Pass-VCS-254-Exams    | 2017-Latest-VCS-273-Exam    | Dumps-200-355-exams-date    | 2017-Latest-300-320-Exam    | Pass-300-101-Exam    | 100%-Pass-300-115-Exams    |
http://www.portvapes.co.uk/    | http://www.portvapes.co.uk/    |