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.
Josh
hey im josh mayzler. my friends just call me mayzler. im 16 yrs old n im gonna b a junior in hs. i live in NJ, n it sucks here. my main interests are halo, the NY giants n fball in general, riding 4-wheelers, and girls. hit me up on xbl: Mayzler. Im a white jewish kid and i have a great sense of humor and can laugh at myself every now and then. that pretty much sums it up.
Where do I go to get guidance on car performance upgrades?
I have a 2000 celica gts, and I'm pretty sure it's all stock.
My parents and grandparents offered to get me a new car after I graduate college, but the thing is I love that car too much and decided to use the 25k to revitalize it instead.
Exterior needs a fresh coat of paint and new brakes/rims/tires etc, but I don't know much about engines or performance upgrades. I would like a new engine, turbo or s/c, new intake, transmission, exhaust, etc., but I don't know what's compatible/possible/best for overall performance.
If I go to a custom shop or mechanic, would they guide me through what upgrades to get/are worth it? Any advice on where to start for a project like this would be helpful.
Tl;dr: 2000 celica gts needs upgrades, who do I consult to find what's best/possible in doing so.
3 AnswersMaintenance & Repairs8 years agoGood audio/speaker shows/conventions in NJ tristate area?
Looking to go to an event where they show off new and high end speakers to check out some of the equipment.
Any event in the NJ/NY/PA area would be great. Thanks in advance!
2 AnswersHome Theater8 years agoWhat are some good audio shows to go to?
I'd like to get a feel for what real audiophile-quality speakers sound like as I'm used to the crap they sell at best buy and the like. Any good ones coming up in the nj/nyc area this year or next?
4 AnswersHome Theater8 years agoWhat is net long term debt in this Finance problem?
During 2010, Raines Umbrella Corp. had sales of $730,000. Cost of goods sold, administrative and selling expenses, and depreciation expenses were $500,000, $125,000, and $180,000, respectively. In addition, the company had an interest expense of $56,000 and a tax rate of 35 percent. (Ignore any tax loss carryback or carryforward provisions.)
Suppose Raines Umbrella Corp. paid out $64,000 in cash dividends. Is this possible? If spending on net fixed assets and net working capital was zero, and if no new stock was issued during the year, what is the net new long-term debt?
1 AnswerPersonal Finance8 years agoWhat should I buy to close off my living room?
I have a livingroom in my home that has two openings, one into my kitchen and the other to a hallway. We don't have central air and want to put in a window a/c unit, but all the air would escape into the kitchen and hallway and it'd be ineffective, so I was wondering if there were any solutions for covering up those openings (not sure if there is a better word for what im describing, but basically the entrance from one room to the next) to keep the air inside. The opening is about the size of a door, and I want to know if there are like mats that you can hang down from the top of the opening or anything like that to cover the area and keep the air on.
Any and all help is appreciated, thanks in advance.
3 AnswersDecorating & Remodeling8 years agoHelp me find a good spot for a big party?
So I'm looking to throw a big party. Last time I just threw it at my off-campus house and about 300 people came. While the house survived and stuff, we almost got busted for loud noise, so we cleared everyone out after we got a wiff of the police at only 1:30am. They showed up a bit after but everyone left and we turned all of our speakers and dj equipment off so we didnt get a ticket.
Anyway, I'm looking to throw another party of about that size, with kegs, hard alc, and loud music, but I'd like a nice space thats more secluded so we don't have to worry about the men in blue who do their jobs.Are there any good places/venues to throw a big party like that in the central nj area or in general (if anyone knows of a good abandoned and secluded spot that works too haha).
Thanks in advance for the help!
1 AnswerEntertaining9 years agoHelp me find a great spot for a big party?
So I'm looking to throw a big party. Last time I just threw it at my off-campus house and about 300 people came. While the house survived and stuff, we almost got busted for loud noise, so we cleared everyone out after we got a wiff of the police at only 1:30am. They showed up a bit after but everyone left and we turned all of our speakers and dj equipment off so we didnt get a ticket.
Anyway, I'm looking to throw another party of about that size, with kegs, hard alc, and loud music, but I'd like a nice space thats more secluded so we don't have to worry about the men in blue who do their jobs.Are there any good places/venues to throw a big party like that in the central nj area or in general (if anyone knows of a good abandoned and secluded spot that works too haha).
Thanks in advance for the help!
1 AnswerOther - Entertainment9 years agoHelp me write this loop in JavaScript?
Watch out, this guy is a doozey.
Here is what the instructions say as far as the JS is concerned:
11. Create a variable to hold the total cost of the order (all product purchases). Your program is going to loop, this means that on each iteration of the loop you will add the current product price to this running-total variable.
12. Have 2 prompt boxes to take as input the name of the service the customer wants from the table and the quantity they want to purchase.
Note: You will start your loop between the previous instruction and this instruction.
13. Use the if-else structure to determine what the price and discount of the product is based on the product name entered by the user.
Note: Assume the product name will be entered in as all lower-case characters.
Hint: You will have an if-else condition for each possible product/service; the statements that run for each of these conditions will set the discount and price.
14. If a user enters a product name that does not match the choices displayed in the table, display the following message:
Sorry, Jim. You entered an invalid product name. We will not include this in your order.
Hint: This can be done in the final else part of the if- else structure that looks up the product price and discount.
15. Based on these inputs (if you have a valid price and discount) calculate the cost of the purchase using the formula:
cost_of_current_item = price_of_product * quantity_required
discount = price_of_product * item_discount * quantity_required
16. Add the cost_of_current_item - the discount to the variable that is keeping track of the current running total of the order.
17. Output the current product purchase using document.write. The format is like so:
The cost of buying 2 of Ice Cream Cone is $5.32.
The discount for this purchase is $ .53
18. Using a confirm, ask the user if they would like to order another product. If they hit cancel, proceed to instruction #19. Otherwise, using a loop, go back up to #12 and repeat the ordering process.
19. Finally have an output using the document.write. The format should be as follows:
Thank you for placing an order with us, Jim.
The total order cost is $12.64"
This is what I have so far for my JS:
<script type="text/javascript">
var user_name;
user_name=prompt("Welcome to Mayzler Financial! Please enter your name.","");
alert("Hello, "+user_name+". Please look through our list of available services before placing your order.");
var service_name;
service_name=prompt("Enter the service you would like to purchase","");
var quantity;
quantity=prompt("Thank you for choosing a "+service_name+"! How many would you like?","");
var price;
var discount;
var a;
a=confirm(user_name+", you ordered "+quantity+" of our "+service_name+". Is this correct?");
if(a==true)
{
if (service_name=="large and small business consultation")
{
var price=250,discount=.15
}
else if(service_name=="consultation for personal finances")
{
var price=50,discount=.1
}
else if(service_name=="premium month-to-month service plan for large and small business")
{
var price=10000,discount=.3
}
else if(service_name=="premium month-to-month service plan for personal finances")
{
var price=500,discount=.2
}
else
{
alert("Sorry, "+user_name+". You entered an invalid product. Refresh the page to reload and place the order again.")
}
}
else
{
alert("Refresh the page to reload and place a new order.")
}
var cost_of_order;
cost_of_order=price* quantity
var discount;
discount= price* discount* quantity
var total;
total=cost_of_order- discount
document.write("Thanks for placing your order with us, "+user_name+". The cost of buying "+quantity+" of "+service_name+" is "+cost_of_order+". The discount of this purchase is $"+discount+". With our Annual Fall Sale discount, your total is now only $"+total+"!");
</script>
tl;dr How do I incorporate a loop so that I am able to ask if the user wants to purchase another product? The current state of my js is what we did for an old assignment and now they basically want us to add the ability of purchasing multiple products for out "business". I happened to choose a consulting firm.
Any and all help is appreciated, sorry for the length!
1 AnswerProgramming & Design9 years agoAre there places availale to rent out for a party?
Last night me and my housemates threw a massive party at my house and we had over 300 people there at one point. Luckily, and I don't know how, we managed to get everyone out before the cops showed up, so we didnt get a ticket. The whole time i couldnt even enjoy it cus i was manning our door and making sure we kept noise at a decent level so the party could last as long as possible.
Now that that was successful, I want to out do it and actually enjoy it this time.
So my question is this: are there places that rent out like empty factories or sheds that can host parties (preferably in the central NJ area)?
2 AnswersEntertaining9 years agoHow do you access mac files on windows partition?
I have bootcamp on my mac and I have been using the windows side a lot for music production software. The trouble is that all of my music is on my mac side and I can't access the files when using my windows side. Is there a way to access my music from my mac whilst on windows?
5 AnswersSoftware9 years agoParty Speaker System Help?
So me and my friends just rented a house at college for the year. We have so far thrown one party and it was successful for the most part, except for one little thing; our audio system was weak as hell.
We are looking into DJ equipment as well (basic mixers and cdj systems and the like), but for this question I am more focused on the audio aspect.
So the first thing I would like answered is what are some cheaper audio systems that provide enough power and bass to cover a four-door garage (which we have in our backyard as a part of the house where we plan on hosting our dance parties) with plenty of loud music. I have seen a bunch of set ups where there massive boxes with subs and speakers n tweeters all in one, and others with massive subs and then speakers/tweeters on poles and vice versa, but what would the cheapest (and by cheap i mean from about $500-$1000 systems) set up to deliver a good amount of sound to a space that size.
My second question is if I can use speakers from my old surround sound home theatre system and hook them up to w/e set up we use. Also, can the massive boxes from the home theatre systems (not sure what they are called but its what everything is plugged into) can be used to hook up speakers systems as mentioned in the first question.
Thank you for any and all answers and assistance, it really means a lot. Also, links to sound systems would be really helpful too so i can check em out and get an idea of what the pricing will be, thanks!!
4 AnswersHome Theater9 years agoParty Speaker Setup Help?
So me and my friends just rented a house at college for the year. We have so far thrown one party and it was successful for the most part, except for one little thing; our audio system was weak as hell.
We are looking into DJ equipment as well (basic mixers and cdj systems and the like), but for this question I am more focused on the audio aspect.
So the first thing I would like answered is what are some cheaper audio systems that provide enough power and bass to cover a four-door garage (which we have in our backyard as a part of the house where we plan on hosting our dance parties) with plenty of loud music. I have seen a bunch of set ups where there massive boxes with subs and speakers n tweeters all in one, and others with massive subs and then speakers/tweeters on poles and vice versa, but what would the cheapest (and by cheap i mean from about $500-$1000 systems) set up to deliver a good amount of sound to a space that size.
My second question is if I can use speakers from my old surround sound home theatre system and hook them up to w/e set up we use. Also, can the massive boxes from the home theatre systems (not sure what they are called but its what everything is plugged into) can be used to hook up speakers systems as mentioned in the first question.
Thank you for any and all answers and assistance, it really means a lot. Also, links to sound systems would be really helpful too so i can check em out and get an idea of what the pricing will be, thanks!!
1 AnswerMusic & Music Players9 years agoproduct rule in integrals?
Is it possible to come up with the reverse of the product rule, and then use it to find ∫f(x)g(x)dx?
4 AnswersMathematics9 years agohelp me with integrals?
l |'''''
l |(e^((cosx)+3))*sin(x)*dx
_|
l |'''''
l |e^(e^x)*(e^x)*dx
_|
1 AnswerMathematics9 years agoCan you help me with optimization?
A fence 4 feet tall runs parallel to a tall building at a distance of 7 feet from the building. What is the length of the shortest ladder that will reach from the ground over the fence to the wall of the building?
1 AnswerMathematics9 years agoHelp with graphing in calculus?
So i have do sketch a graph with a bunch of conditions. basically, there are asymptotes at x= -2,0, and 2 and y=3. for the area under y=2, f(x)=0 at =1 and -1. the conditions i dont understand are the following: f'(x)=0 at x=-1 and f"(x)=0 at x=1. the conditions for domain (-2,0) is that f"(x)<0 and f'(x)<0 on (0,2). can you help me understand what i need to draw for the graph to satisfy the conditions of f'(x)=0 at x=-1 and f"(x)=0 at x=1? thanks!
1 AnswerMathematics9 years agoHelp with implicit differentiation?
find slope of curve y/(x+5y) = x^6+3
at point (1,4/-19)
1 AnswerMathematics9 years agoCan you help me with an implicit differentiation problem?
If 3 x^2+ 4 x + xy = 2 and y( 2 ) = -9, find y'( 2 ) by implicit differentiation.
I know that dy/dx= (6x+4+y)/-x (or at least i think it is) but im not sure what to do with the whole y(2)=-9 and y'(2) bit.
any and all help is appreciated, thanks :)
1 AnswerMathematics9 years agoWhat does the russian word sovisty mean in english?
As in the phrase "U tebya sovisty yest?"
2 AnswersLanguages9 years agoWhat does the russian word "sovisty" mean?
As in "U tebya sovisty yest?"
2 AnswersLanguages9 years ago