Posts: 19645
Threads: 177
Joined: July 31, 2012
Reputation:
92
RE: April Fools
March 31, 2013 at 8:34 pm
(This post was last modified: March 31, 2013 at 8:34 pm by pocaracas.)
I did a right click and "inspect element", then changed all the -180deg to 0deg and it worked... but as soon as I clicked something, there they were again... not worth the effort of writing a greasemonkey script to fix it.... using mobile version.
Posts: 2
Threads: 1
Joined: March 31, 2013
Reputation:
0
RE: April Fools
March 31, 2013 at 8:44 pm
And here I was thinking that my tablet software must of been corrupted and was about to factory reset it. An excellent joke. I applaud whomever was involved in this.
"Live a good life. If there are gods and they are just, then they will not care how devout you have been, but will welcome you based on the virtues you lived by. If there are gods, but unjust, then you should not want to worship them. If there are no gods, then you will be gone, but will of lived a noble life that will live on in the memories of your loved ones."
-Marcus Aurelius (Maybe)
Posts: 2203
Threads: 44
Joined: July 28, 2012
Reputation:
38
RE: April Fools
March 31, 2013 at 8:52 pm
I'm officially in paranoid parrot mode.
Posts: 4484
Threads: 185
Joined: October 12, 2012
Reputation:
44
RE: April Fools
March 31, 2013 at 9:44 pm
(March 31, 2013 at 6:51 pm)Joel Wrote: Is this your idea of April Fools!? You sick, sick people.
(It was hell, trying to create this thread) LOL. You could just type this in the address bar (/copy & paste):
Code: javascript:document.body.setAttribute( "style", "-webkit-transform: rotate(180deg);");
For Religion & Health see:[/b][/size] Williams & Sternthal. (2007). Spirituality, religion and health: Evidence and research directions. Med. J. Aust., 186(10), S47-S50. -LINK
The WIN/Gallup End of Year Survey 2013 found the US was perceived to be the greatest threat to world peace by a huge margin, with 24% of respondents fearful of the US followed by: 8% for Pakistan, and 6% for China. This was followed by 5% each for: Afghanistan, Iran, Israel, North Korea. -LINK
"That's disgusting. There were clean athletes out there that have had their whole careers ruined by people like Lance Armstrong who just bended thoughts to fit their circumstances. He didn't look up cheating because he wanted to stop, he wanted to justify what he was doing and to keep that continuing on." - Nicole Cooke
Posts: 548
Threads: 13
Joined: March 12, 2013
Reputation:
7
RE: April Fools
March 31, 2013 at 10:26 pm
Chromium likes to google that code.
I can use it in the dev console each time I go to a new page, though.
(March 30, 2013 at 9:51 pm)ThatMuslimGuy2 Wrote: Never read anything immoral in the Qur'an.
Posts: 6191
Threads: 124
Joined: November 13, 2009
Reputation:
70
RE: April Fools
March 31, 2013 at 10:35 pm
(This post was last modified: March 31, 2013 at 10:36 pm by Autumnlicious.)
Add this into a bookmarklet:
Code: javascript:(function(){var e=document,d=function(a,b,c){e.getElementById("container").setAttribute("style","-webkit-transform:rotate("+a+"deg); -moz-transform:rotate("+a+"deg);-o-transform:rotate("+a+"deg); transform:rotate("+a+"deg);ms-filter:progid:DXImageTransform.Microsoft.BasicImage(rotation="+b+"); filter:progid:DXImageTransform.Microsoft.BasicImage(rotation="+b+");");if(359<a+1||0.001>Math.abs(a-1))c-=1,a=0;0.001>Math.abs(Math.abs(a)-90)?b=1:0.001>Math.abs(Math.abs(a)-180)?b=2:0.001>Math.abs(Math.abs(a)- 270)?b=3:0.001>Math.abs(Math.abs(a)-0)&&(b=0);0<c&&setTimeout(function(){d(a+10,b,c)},100)};d(0,0,1)})();void 0;
Turns out that Firefox disabled javascript: url access to the current page context.
Slave to the Patriarchy no more
Posts: 33357
Threads: 1421
Joined: March 15, 2013
Reputation:
152
RE: April Fools
March 31, 2013 at 10:45 pm
Seems too complicated.
"Never trust a fox. Looks like a dog, behaves like a cat."
~ Erin Hunter
Posts: 2279
Threads: 22
Joined: February 16, 2013
Reputation:
64
RE: April Fools
March 31, 2013 at 10:58 pm
hahahahha
(few minutes later...)
Pointing around: "Fuck you, fuck you, fuck you, you're cool, fuck you, I'm out!"
Half Baked
"Let the atheists come to me, and stop keeping them away, because the kingdom of heathens belongs to people like these." -Saint Bacon
Posts: 3117
Threads: 16
Joined: September 17, 2012
Reputation:
35
RE: April Fools
March 31, 2013 at 11:17 pm
(This post was last modified: March 31, 2013 at 11:29 pm by Darkstar.)
Well, today I learned what the mobile version looked like.
(March 31, 2013 at 7:22 pm)Shell B Wrote: (March 31, 2013 at 6:57 pm)Mr Infidel Wrote: The thing is that April Fool's Day is not until tomorrow.
Maybe where you are. You do realize the forum is based in France and was created by a man who lives in London, right?
But according to the main page it is still March 31st...or is that just my time? I sometimes see posts that change from "posted: today" to "posted:yesterday" at maybe 9:00 p.m. (well, at least a few hours before midnight), so that is clearly not going off of my local time.
John Adams Wrote:The Government of the United States of America is not, in any sense, founded on the Christian religion.
Posts: 6191
Threads: 124
Joined: November 13, 2009
Reputation:
70
RE: April Fools
March 31, 2013 at 11:33 pm
An improvement to my prior script.
This change is verified to work on internet explorer, safari and firefox.
Firefox requires this be in a bookmark (I have one called spinny).
Code: javascript:(function(){var e=function(a,b,c){var d=~~(a/90);c=c||document.getElementById("container");c.style.cssText="-webkit-transform:rotate("+a+"deg); -moz-transform:rotate("+a+"deg);-o-transform:rotate("+a+"deg); transform:rotate("+a+"deg);ms-filter:progid:DXImageTransform.Microsoft.BasicImage(rotation="+d+"); filter:progid:DXImageTransform.Microsoft.BasicImage(rotation="+d+");";0.01>Math.abs(a-360)&&(b-=1);a%=360;0<b&&setTimeout(function(){e(a+10,b,c)},50)};e(0,1)})();
Slave to the Patriarchy no more
|