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.
Alex Bueschleb
i am a man and i am studying in college right now for Computer Programming i am 20 and in 2010 i suffered from a sever brain injury
Where can I find a video describing the very unique design of the pyramids?
A few years ago i found a video on YouTube that was describing how the Egyptian pyramids have been built aligned with the axis of the earth and several other factors that were incredibly interesting and it was also describing very interesting points suggesting that aliens had helped build them. I was trying to find this video again to show a friend but for the life of me I couldn't find it anywhere. Can anyone please link me to this video or a similar one? Thanks!
3 AnswersHistory2 years agoHow does Facebook code their tagging system for tagging the photos?
I have been hired by someone to create a small company website and they want me to create a photo gallery that enables them to tag the photos similar to the way you can tag on Facebook. How can i do this? I know how to create a photo gallery easily but i have no idea how to code tagging. What i am wondering about is how to actually set up a gallery so that the user can press a button that enables them to place tags. I asked this question a couple days ago and got answers related to databases but i am wondering how to create an actual setup so that i can place tags on a photo in a gallery. Are there any tutorials somewhere that will give a walkthrough of how to create this with JavaScript or something like that?
Thanks in advance
2 AnswersProgramming & Design4 years agoHow does Facebook code their tagging system?
I have been hired by someone to create a small company website and they want me to create a photo gallery that enables them to tag the photos similar to the way you can tag on Facebook. How can i do this? I know how to create a photo gallery easily but i have no idea how to code tagging. Are there any tutorials somewhere that will give a walkthrough of how to create this with JavaScript or something like that?
Thanks in advance
3 AnswersProgramming & Design4 years agoHow can i create an app with 3d models for the internet?
2 AnswersProgramming & Design4 years agoWhy does Mozzilla import bookmarks?
So i have seperate browers for seperate things i do online. but i have noticed that Mozilla firefox imports the bookmarks from Internet explorer every time i restart my computer, and it just keeps adding the same bookmarks to the bookmarks tab. so i have a massive list of the same bookmarks repeated in mozilla firefox and they all come from internet explorer. How can i easily remove all these bookmarks without individually right clicking and deleting every single one and prevent this from reoccurring?
1 AnswerOther - Internet6 years agoWhats wrong with my C# code?
i created a class called army man and im trying to create an instance of armyman in a click event, but it says that army man doesnt have a constructor that takes 8 arguments even though you can see in my code below that it does take 8 arguments. My code:
public class armyMan
{
armyMan(string h, string rF, string lF, string lH, string rH, string hat, string t, string c)
{
Head = h;
rFoot = rF;
lFoot = lF;
lHand = lH;
rHand = rH;
Hat = hat;
Torso = t;
custom = c;
}
string Head;
string rFoot;
string lFoot;
string lHand;
string rHand;
string Hat;
string Torso;
string custom;
}
private void MenuItem_Click(object sender, RoutedEventArgs e)
{
armyMan m = new armyMan(HeadLbl.Content, RightFootLbl.Content, LeftFootLbl.Content, LeftHndLbl.Content, RightHndLbl.Content, HatLbl.Content, TorsoLbl.Content, CustomItmLbl.Content);
}
4 AnswersProgramming & Design6 years agoHow can i log into my computer?
So i recently bought a new laptop, so i gave my old one to my mother. She didnt want to always use my login details to get on to the computer so i created a local account with a password and named the account after her. But just after creating that account and removing my account from the computer it wont let me log in. It says the password is incorrect even though i am 100% positive that the password i am trying is the same password i set up for the computer. I tried to log in minutes after creating the password. So i am wondering if anyone knows of a way to get by the log in to get into windows 8.1 so i can get rid of the password? Thanks in advance
1 AnswerSecurity6 years agoWhat service can you get to route your internet connection to a different ip address?
i know there are services where you can connect to a service that routes your internet connection through other connections so you cant be traced and get a different IP address but i cant remember what this is called. Can someone let me know?
9 AnswersComputer Networking7 years agoIs it illegal for me to buy a product from the company i work at and resell it for profit?
I work at a company that manufactures computer parts. I can get a huge employee discount while im working there. So i am curious, if i buy a part from them with my discount and then resell it for a personal profit, would this be illegal? I realize that the company wont hire me back after my co-op if they found out about this but i was just curious whether this would be illegal or not?
Thanks
2 AnswersCorporations7 years agoIs Rogers screwing us?
I'm sure this question has been asked before but i wanted an up to date answer. So me and my family have been using Rogers internet service for a few years now and when we started we had a 60Gb limit. We started going over that limit so then we upgraded to a 150Gb limit. Then we started to go over that by about 10 or 20 gb's at the most each month. So we wanted to switch but then after talking to a rogers customer service agent for a while we got an upgrade to 200Gb limit for an extra $3 a month. but now this past month we went over so far that my bill was double. So i am definitely going to say F*ck rogers now because me and my family havent been using the internet any more than usual lately, if anything less. But i was wondering if anyone else has noticed this with Rogers?
2 AnswersCorporations7 years agoHow can i fix internet explorer on windows 8?
So i have internet explorer which i use for flash games and stuff that doesnt run well on firefox but my internet explorer got some malware on it. So i tried getting a malware removal program and it found the malware and says it removed it but whenever i start up internet explorer it still brings me to this search page: http://www.22find.com/?type=sc&ts=1384446170&from=...
So i was wondering if there is any way i can uninstall internet explorer or reset all of its settings on windows 8 because when i go to try and remove it i cant find it in my programs
Thanks in advance
2 AnswersSoftware7 years agoWhat is wrong with my map iterator in C++?
So i was just practicing some C++ and i created a program where i would ask the user to specify how many maps they want to create, then ask them to name the maps and assign an int value. So here is my map program:
cout << "Now we will create maps, how many maps would you like to create?: ";
int i2;
cin >> i2;
cout << endl;
int x = 0;
string s;
map<string, int> map1;
while(x < i2)
{
cout << "What would you like to name the " << x << " map?: ";
cin >> s;
cout << endl;
cout << "Great, now what number would you like to assign to that map?: ";
cin >> i1;
map1[s] = i1;
++x;
}
cout << "I will now read out the maps: " << endl;
map<string, int>::iterator it;
int i = 0;
for(it = map1.begin();it != map1.end(); ++it)
{
cout << "The " << i << " map is named " << it->first << " and contains the value " << it->second << endl;
++i;
}
So the program works properly as long as there are less than 10 maps but as soon as i create more than 10 maps the iterator starts at map 1 and then it goes to map 10 and then continues along running on the order of the first digit of the number in the key. For example if i input the following as values for the key: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, when the iterator ruins through to print them out it will print them in the following order: 1, 10, 11, 12, 2, 3, 4, 5, 6, 7, 8, 9
So why does it only use the value of the first digit of the key? Btw i tried it using letters/words for the key and then it just uses the order of the alphabet. if i enter a, c, b as keys it will print them out in a, b, c order
Please help
1 AnswerProgramming & Design7 years agoWhat is wavo.me? is it spam?
I'm not sure why but every once in a while i get an email from wavo.me saying that someone from my facebook has 'followed me'. What does this even mean though, i never use this wavo thing and i dont even remember signing up for it, but apparently a bunch of my friends are 'following' me
it has something to do with music though
3 AnswersOther - Internet7 years agoHow can i query this information from a webpage?
using the following query format in the console of google chrome:
Array.prototype.slice.call($("Selector goes here")).map(function(v){ return v.textContent;})
how can i query the ASIN value 'B000067SON' from the Product Information of the following website:
http://www.amazon.co.uk/StarTech-com-6ft-USB-KVM-C...
thanks a lot in advance
1 AnswerProgramming & Design7 years agoHelp with SQL - T-SQL commands?
My teacher assigned us some homework recently with some self study questions but considering how big the SQL book we have is, theres no way im going to find the answers to two of the questions any time soon before the lab is due so can someone tell me what the following are:
Which T-SQL command allows for the “ALL” scenario
Which T-SQL command allows for the “NOTHING” scenario
Thanks a lot in advance
1 AnswerProgramming & Design8 years agoHow can i learn to hack computers?
I am studying computer programming right now in college and we are learning a bit about security in the course but not much. Anyways being a curious programmer enthusiast, i am curious about learning how to hack into other computers via internet. I know this would be illegal to do on someone elses computer but i have a computer at home and a laptop that i bring to school so i was wondering where i could learn how to hack into my home computer from school. Any suggestions would be great, thanks
3 AnswersProgramming & Design8 years agoWhat are some good earbuds with great bass?
I have been using skullcandy 50/50's for a while now because they have great bass, a microphone and sound really good. But skullcandy headphones are so god damn unreliable and break so easily, and my third pair of 50/50s broke today so i say screw it im boycotting skullcandy now. So what are some other good earbuds that have great bass, and a microphone if possible? Thanks in advance
3 AnswersMusic & Music Players8 years agoWhat happened to Funnyhub's joke genre area?
A few years ago i found the website funnyhub.com and it used to have a joke genres area with a whole bunch of really funny bar jokes, political jokes, mature jokes and a bunch of other genres. I havent been on funnyhub in a while though and i went back today to lookup some more funny jokes but when i went to funnyhub, all i can find is pictures. Does anyone know how to find the joke genres page or a different website that has a bunch of different joke genres on it?
2 AnswersJokes & Riddles8 years agoWhere can i buy a screen protector for my LG-P990hn phone?
So i have an LG P-990hn phone and the screen protector is fairly scratched up etc, but they don't sell screen protectors for that model of phone in stores anymore so i went online to find some. i tried Zagg but i couldn't find my model of phone on there so then i tried googling screen protectors for it but the only one i could find was on eBay and they wont ship to Canada where i live. Does anyone know of a website/place i could get a screen protector for an LG-P990hn phone?
2 AnswersMobile Phones & Plans8 years agoIs there a way to track how much bandwidth my family uses?
So we are getting our internet services from Rogers and they have been pretty good so far but we seem to be going over our limit more lately
It could be understandable when im at home because i like to watch TV online etc but i have been away for the past couple weeks (hence not using any bandwidth) and we already hit our limit this month and the billing period doesnt end until 2 weeks from now (August 4th)
And i asked my sister and she said she hasnt been using the internet much either
So i am wondering if there's any way for me to personally track our internet usage to see if Rogers is screwing up?
1 AnswerComputer Networking8 years ago