Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Lv 31,732 points

t3po7re5

Favorite Answers16%
Answers375
  • Exhaust smells like gas and blows out smoke.?

    So my Toyota recently has been having oil issues where it would loose oil at a quick pace. Recently a mechanic has said it had something to do with a small leak and it wasn't too much of a concern. I drove it 200 miles yesterday full of oil and now when I turned it on it kicked out a lot of exhaust which smelled like gas. After I turned it off I check the oil and it was below the minimum line. Any ideas what it could be?

    2 AnswersMaintenance & Repairs7 years ago
  • Using data from a SQL server using Javascript?

    So I'm trying to display the color of an element depending on a variable in an sql database. I'm split on either pulling the data using PHP into a textbox or trying to use AJAX to pull the data later and by doing that I'm not sure whether to use Ajax or JQuery Ajax, thanks!

    1 AnswerProgramming & Design7 years ago
  • Good host for hosting a web server?

    I need to build a backend that will handle GET and POST calls fairly frequently. A friend recommended EC2 but I can't seem to get mysql working on the linux instance I installed. Also I have no idea how much I'm getting billed or if the instance I launched was considered to be part of the "free" tier or not. I'm thinking about just using a web host for now then switching over to something else if we need to scale.

    2 AnswersProgramming & Design8 years ago
  • How to advertise a startup Computer Repair business?

    My roommate and I are starting up a Computer Repair business and are not sure how to market it other than ads on Craigslist, I posted a few flyers up in a few grocery stores as well but other than that I'm not sure how to get the word out.

    2 AnswersSmall Business8 years ago
  • Best language to write a web crawler?

    So I need to write a script to crawl websites for information based on an Apache server and I was wondering which language would be best for this, I found a few Python tutorials but a friend recommended Ruby which I found hardly anything on about website crawling.

    1 AnswerProgramming & Design8 years ago
  • Doing PC repair, how do these prices sound?

    Tuneup / Maintenance $40

    Malware Removal $50

    Data Recovery $50

    Factory Restore (if available) $50

    Reinstall Windows from scratch $65

    Install Word Processor, iTunes, Skype, Anti virus, etc $10

    With a free diagnostics test

    1 AnswerSmall Business8 years ago
  • Transfering universities as a senior?

    So long story short, I just got kicked out of my major and was curious about what the process was like to transfer universities as a senior, GPA's kinda shot but Community college is kind of out of the question since I've already taken and completed advanced courses in Mathematics and Computer Science.

  • CSS rendering in Chrome problems?

    I'm working on a website (www.letsdrinkup.com) and when I run the files locally in chrome, everything renders just fine. But as soon as I upload them to my server a Div tag (adbox) completely fails to render. It also renders fine on Firefox and Internet Explorer which has me really confused. Thanks for any help!

    1 AnswerProgramming & Design8 years ago
  • Ex-gf started talking and flirting with me over Winter Break but now seems distant.?

    So my exgf[21] and I[20] dated for about 9 months last year then she broke things off over the summer. I tried doing no Contact which killed me to do but still remained friendly to her whenever we saw each other. Then I heard she dated a few other guys which killed me but still never lost my cool whenever she was around.

    Over winter break she broke no contact wishing me a merry Christmas and she just started talking to me again. I never initiated any of our conversations but she me if I was ok with us talking again and I said sure since I thought I had myself under control and really wanted to be friends. Then we started talking between 2-4 hours a day and went over why she ended the relationship. It was like we were dating again and I was tempted to remind her that we weren't. She asked if I was dating anyone and she made it clear she wasn't. Also she mentioned that seeing me during the last semester caused her pain which made her avoid me whenever possible. Then a few days before I went back I got a bunch of I miss you texts which kind of caught me really off guard. She mentioned how she wanted me to save her a dance at an upcoming dance and that we'd be spending a lot of time together over the summer if I stayed for summer classes.

    When I got back she made me dinner and invited myself and a bunch of friends out rock climbing with her. We also hung out a few times but our talking kind of slowed and now we havn't talked in 3 days. I'm worried I was just being used as someone to talk to when she was bored which is driving me insane. I plan to talk to her this weekend about what she meant over winter break and tell her to never do this to me again if she doesn't have any intention. What do you think she's doing?

    2 AnswersSingles & Dating8 years ago
  • Javascript convert to Hex?

    This is the current function that I'm using to convert the values

    function componentToHex(c) {

    var hex = c.toString(16);

    return hex.length == 1 ? "0" + hex : hex;

    }

    The value before the toString(16) is the exact same as the output. I've run tests on toString(16) and had it output the correct values before but now it just won't seem to work.

    1 AnswerProgramming & Design9 years ago
  • Using php to see if user is logged in?

    I'm trying to write a php script that displays the home page of a site. If the user is logged in it displays the user's personal page if not then it displays a page with different content but the same url. How would I do that?

    2 AnswersProgramming & Design9 years ago
  • Question about solving Monty Hall problem in java?

    Here's my code, when I run i get a value of 0 and when I debug eclipse won't even give me the variable values.

    import java.util.Random;

    /**

    * Main class for the 21 problem.

    * @author t3po7re5

    *

    */

    public class Main {

    //true is the prize

    private static boolean door1 = false;

    private static boolean door2 = false;

    private static boolean door3 = false;

    private static int choice;

    private static int score;

    private static double percentage;

    private static int numTimesRun;

    public static void main(String [] args)

    {

    runTest(1000);

    }

    private static void runTest(int numOfRun) {

    numTimesRun = numOfRun;

    for (int j = 0; j < numOfRun; j++)

    {

    //Randomize, pick, swap, clear, collect result run again

    randomize();

    swap();

    score();

    clear();

    }

    percentage();

    System.out.print(percentage);

    }

    private static void randomize() {

    if (door1 != false && door2 != false && door3 != false)

    {

    clear();

    }

    Random rand = new Random();

    int temp = rand.nextInt(2);

    if (temp == 0)

    {

    door1 = true;

    }

    else if (temp == 1)

    {

    door2 = true;

    }

    else

    {

    door3 = true;

    }

    }

    private static void clear()

    {

    door1 = false;

    door2 = false;

    door3 = false;

    }

    /**

    * Checks to see if the middle door is the prize, if not then it opens it.

    * If it is the prize then it opens door 3.

    * This is where the 66% should come in.

    */

    public static void swap()

    {

    if (door2 == true)

    choice = 2;

    else

    choice = 1;

    }

    /**

    * Checks to see if the door you chose won.

    * @return true if the computer won.

    */

    public static boolean checkAnswer()

    {

    if (door1 == true)

    {

    return false;

    }

    else if (door2 == true && choice == 1)

    {

    return true;

    }

    else if (door3 == true && choice == 2)

    {

    return true;

    }

    //This code should never be reached.

    return false;

    }

    public static void score()

    {

    if (checkAnswer() == true)

    {

    score++;

    }

    }

    public static double percentage()

    {

    return score - (numTimesRun + 100);

    }

    }

    2 AnswersProgramming & Design9 years ago
  • Is keeping an Itouch on near you when you sleep dangerous?

    I've heard that some devices can be dangerous if you have them on close to you for too long of a time. I use a REM alarm clock app but I turn of the wireless capability before hand.

    2 AnswersMental Health9 years ago
  • Yahoo Messenger question?

    How do I prevent Yahoo Messenger from popping up after every time I take my pc out of sleep mode? I don't mind it launching on start up.

    1 AnswerOther - Yahoo Messenger1 decade ago
  • What's with the political flame war?

    There's no black and white when it comes to politics. Someone of your opposing political party isn't necessarily "evil". Why do we keep acting like they are?

    4 AnswersPolitics1 decade ago
  • Physics Help: Work Energy Theorem?

    A volcano ejects a boulder directly upward 513 into the air. How fast was the boulder moving just as it left the volcano?

    I tried using the Acceleration formula but I can't get an answer that way.

    1 AnswerPhysics1 decade ago
  • Physics question:A flea jumps to .35m, what is the initial velocity?

    Assume that gravity is 9.8m/s^2. I can't find an equation in my book to find out how to do this.

    3 AnswersPhysics1 decade ago
  • HTML 5 Video Question?

    I'm making a website that uses HTML 5 as the video player for video. When I test the site out on my computer it runs fine and the video works. However when I upload it to a server it says "no plug-in is available for this content".

    2 AnswersProgramming & Design1 decade ago
  • Sending a coaches gift to a coach, what type of paper should I write the message on?

    I'm sending a coaches gift to my old track coach (I know it's a little bit late). I also wanted to write a letter of thanks. Should I just write it on printer paper or something else?

    1 AnswerOther - Society & Culture1 decade ago
  • Postcard pen or pencil?

    I'm sending a postcard to a former teacher, are they suppose to be written in pen?

    2 AnswersOther - Society & Culture1 decade ago