whatthemata 249 Posted May 12, 2013 Share Posted May 12, 2013 Stingray and Hutcho 2 Quote Link to comment Share on other sites More sharing options...
Spike 12,049 Posted May 12, 2013 Share Posted May 12, 2013 It's almost winter and the sun sets at about 5:30pm and rises at about 6:15amThroughout summer, spring and part of autumn the sun sets at about 7:30pm sometime as late as 8:00pm. The sun rises as early as 5:00am but usually 5:30am.I want my extra hours of sun back. Quote Link to comment Share on other sites More sharing options...
CHOULO19 24,332 Posted May 12, 2013 Share Posted May 12, 2013 Actually that would not make evolutionary sense, that adaptation would select itself out of a population (although some suggested other hypotheses like the 'homosexuals help others more and spread their genes as well because they had straight sex once in a while- hypotheses). So, from a strictly Darwinian viewpoint, homosexuality shouldn't still be around. It is simply is the worst wayway to pass along one's genes, and to complicate the picture further, no "gay genes" have even been identified.More recent and better hypotheses is that the explanation lies not in DNA - genes itself. Instead, as an embryo develops, sex-related genes are turned on and off in response to fluctuating levels of hormones in the womb, produced by both mother and child.So take a male embryo - during the right time window there is an influx of progesteron and oestrogenes - and the genes get activated that 'sexualizes' the brain in a female way. The more hormones, the more feminine the males brain and behaviour. That is why homosexuals can range from being very manly (eg footballer ) to very, very female.The other way around works as well: female embryo that gets too much testosterone. Here as well you see the female homosexuals range from very manly to just as feminine as you would expect.Scientist have tested this hypotheses by injecting the wombs of mice, birds and i think even monkeys. Worked everytime :-)The original research was done at the uni and research group where I was working in Santa Barbara. Coolest ever :-)http://www.jstor.org/stable/10.1086/668167So yes, homosexuality is very, very natural and yes the prevalence of it is cross culturally identical no matter what belief systems or religious taboos are in place. Also, no people do not chose this. Now, isn't it very discriminating not to give them the same rights we have?Ps: funniest forum member ..... Eat that! Booo! Less nerdy stuff, more memes, Tom! Stingray and Ankit 2 Quote Link to comment Share on other sites More sharing options...
Stingray 9,441 Posted May 12, 2013 Share Posted May 12, 2013 Booo! Less nerdy stuff, more memes, Tom! Im afraid of the Scottish women on here .... That new one is like me in female version but even WORSE! Sigh ... BluesChick 1 Quote Link to comment Share on other sites More sharing options...
whatthemata 249 Posted May 12, 2013 Share Posted May 12, 2013 Im afraid of the Scottish women on here .... That new one is like me in female version but even WORSE! Sigh ... You know that I can see this Tom! Stingray 1 Quote Link to comment Share on other sites More sharing options...
CHOULO19 24,332 Posted May 12, 2013 Share Posted May 12, 2013 Im afraid of the Scottish women on here .... That new one is like me in female version but even WORSE! Sigh ... Stingray 1 Quote Link to comment Share on other sites More sharing options...
Stingray 9,441 Posted May 12, 2013 Share Posted May 12, 2013 You know that I can see this Tom! Entrapment!!!:goober Quote Link to comment Share on other sites More sharing options...
Stingray 9,441 Posted May 12, 2013 Share Posted May 12, 2013 Shit @choulo19 i am out of likes!!! Quote Link to comment Share on other sites More sharing options...
Spike 12,049 Posted May 12, 2013 Share Posted May 12, 2013 Anyone good with html?I want to press a button and see have an image appear. Click the button see the image disappear. Any help?Something like this: http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_button_testOnly instead of an alert, an image appears. Quote Link to comment Share on other sites More sharing options...
whatthemata 249 Posted May 12, 2013 Share Posted May 12, 2013 That's what you get when you mess with that extra 'x' chromosome! BluesChick 1 Quote Link to comment Share on other sites More sharing options...
Ollie 4,400 Posted May 12, 2013 Share Posted May 12, 2013 Think the post at the bottom of this page deserves a like. http://forum.talkchelsea.net/topic/16042-aston-villa-v-chelsea/page-9 Amblève. 1 Quote Link to comment Share on other sites More sharing options...
The Skipper 20,609 Posted May 12, 2013 Share Posted May 12, 2013 Anyone good with html?I want to press a button and see have an image appear. Click the button see the image disappear. Any help?Something like this: http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_button_testOnly instead of an alert, an image appears.You're better off using CSS to do that. Spike 1 Quote Link to comment Share on other sites More sharing options...
Spike 12,049 Posted May 12, 2013 Share Posted May 12, 2013 You're better off using CSS to do thatI'm not sure if CSS is allowed in this particular piece of assessment but could you show me how to do it? Quote Link to comment Share on other sites More sharing options...
The Skipper 20,609 Posted May 12, 2013 Share Posted May 12, 2013 I'm not sure if CSS is allowed in this particular piece of assessment but could you show me how to do it?Here's a simple bit of code that should get it done...<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta content="text/html; charset=UTF-8" http-equiv="content-type" /> <meta charset="utf-8" /> <title>Test</title> <style type="text/css"> .hidden { display: none; } </style> </head> <body> <form> <input type="submit" id="submit" onclick="document.getElementById('hidden').style.display = 'block';" /> </form> <img id="hidden" class="hidden" src="foo.png" /> </body></html>Basic CSS really. Nothing too fancy. I'm not sure how you would do it using pure HTML, would be a lot of unnecessary code though. Spike 1 Quote Link to comment Share on other sites More sharing options...
Spike 12,049 Posted May 12, 2013 Share Posted May 12, 2013 Here's a simple bit of code that should get it done...<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta content="text/html; charset=UTF-8" http-equiv="content-type" /> <meta charset="utf-8" /> <title>Test</title> <style type="text/css"> .hidden { display: none; } </style> </head> <body> <form> <input type="submit" id="submit" onclick="document.getElementById('hidden').style.display = 'block';" /> </form> <img id="hidden" class="hidden" src="foo.png" /> </body></html>Basic CSS really. Nothing too fancy. I'm not sure how you would do it using pure HTML, would be a lot of unnecessary code though.Thank god for you. I've been spending hours trying to get it to work with basic html. A MILLION REPS FOR YOU IF I COULD. The Skipper 1 Quote Link to comment Share on other sites More sharing options...
Ankit 3,176 Posted May 12, 2013 Share Posted May 12, 2013 Changed my DP! \Super frank/ Quote Link to comment Share on other sites More sharing options...
Spike 12,049 Posted May 12, 2013 Share Posted May 12, 2013 @The Skipper, Aaah, bugger, the image disappears instantly... It only flashes on the screen... Quote Link to comment Share on other sites More sharing options...
The Skipper 20,609 Posted May 12, 2013 Share Posted May 12, 2013 @The Skipper, Aaah, bugger, the image disappears instantly... It only flashes on the screen...Sorry, used the wrong attribute... Should've been button instead of form.Replace: <form> <input type="submit" id="submit" onclick="document.getElementById('hidden').style.display = 'block';" /> </form>With:<button type="button" onclick="document.getElementById('hidden').style.display = 'block';">Show Image!</button>That should work I think... Spike 1 Quote Link to comment Share on other sites More sharing options...
Spike 12,049 Posted May 12, 2013 Share Posted May 12, 2013 Sorry, used the wrong attribute... Should've been button instead of form.Replace: <form> <input type="submit" id="submit" onclick="document.getElementById('hidden').style.display = 'block';" /> </form>With:<button type="button" onclick="document.getElementById('hidden').style.display = 'block';">Show Image!</button>That should work I think...Thanks. That is the first step in a lot of work... Quote Link to comment Share on other sites More sharing options...
The Skipper 20,609 Posted May 12, 2013 Share Posted May 12, 2013 Thanks. That is the first step in a lot of work...Good luck. If you need anymore help just send me a PM, not that good with CSS but I'll try my best Spike 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.