Ninth edition of the posts in a day record

For all things related to Pirate-Community and its websites.
Forum rules
Please keep the forum rules and guidelines in mind when creating or replying to a topic.
rolesfamily
Uglette
Posts: 10232
Joined: Wed Oct 23, 2013 6:43 pm
Tings: 74925

Re: Ninth edition of the posts in a day record

Post by rolesfamily »

Well I've never done a RD before, and I hope to impress you. I've had years of forum experience, so that has to count for something. I'm gonna try and do my best, I'm pretty confident I can do well.
Shrooblord
Mr Stone
Posts: 15762
Joined: Tue Sep 07, 2010 5:07 pm
Location: The Buccaneer MK. II
Tings: 68850

Re: Ninth edition of the posts in a day record

Post by Shrooblord »

It's all about breaking the post record!!! No slacking!!!
saerleiya
The First King
Posts: 8093
Joined: Tue Aug 07, 2012 3:01 pm
Tings: 5782

Re: Ninth edition of the posts in a day record

Post by saerleiya »

Shrooblord wrote:It's all about breaking the post record!!! No slacking!!!
I'll still beat you :twisted: ...

Anyway, this year, we need to be on point to break the last year mark. I think Roles will make up for the absence of Hunch, but still.
PluMGMK
Annetta Fish
Posts: 40508
Joined: Fri Jul 31, 2009 9:00 pm
Location: https://www.youtube.com/watch?v=cErgMJSgpv0
Contact:
Tings: 136606

Re: Ninth edition of the posts in a day record

Post by PluMGMK »

August 2? Great! :D
Incidentally, that would have been my late grandmother's birthday, but anyway!
I may attempt an all-nighter, but I'm worried that that may affect my ability to post.
rolesfamily
Uglette
Posts: 10232
Joined: Wed Oct 23, 2013 6:43 pm
Tings: 74925

Re: Ninth edition of the posts in a day record

Post by rolesfamily »

saerleiya wrote:
Shrooblord wrote:It's all about breaking the post record!!! No slacking!!!
I'll still beat you :twisted: ...

Anyway, this year, we need to be on point to break the last year mark. I think Roles will make up for the absence of Hunch, but still.
Yeah I am pretty much an Admin :mrgreen: :twisted: :wink:
Serza5
Mr Dark
Posts: 48387
Joined: Sat Jul 26, 2008 7:51 pm
Location: MOTHER FUCKING SCOTLAND OH YEAH BABY
Contact:
Tings: 490135

Re: Ninth edition of the posts in a day record

Post by Serza5 »

Thinking about who shall be doing all nighters?
Master
Rayman 1
Posts: 53542
Joined: Sun Aug 21, 2011 10:14 am
Location: Somewhere specific, I'd assume.
Tings: 468310

Re: Ninth edition of the posts in a day record

Post by Master »

I'm going to try, this year. There's nothing on the tables that I'm aware of at the moment that'll prevent from doing so, nor are there any prior trips that'd tire me out beforehand.
PluMGMK
Annetta Fish
Posts: 40508
Joined: Fri Jul 31, 2009 9:00 pm
Location: https://www.youtube.com/watch?v=cErgMJSgpv0
Contact:
Tings: 136606

Re: Ninth edition of the posts in a day record

Post by PluMGMK »

Having reflected on this somewhat, I've decided to post my quick-rainbowise GreaseMonkey script to the forum. If anyone wants to use it on Record Day, go ahead.

Code: Select all

// ==UserScript==
// @name        RaymanPC Rainbowiser
// @namespace   http://www.vigovproductions.net
// @description Adds a "rainbowise" option to the RaymanPC posting form! :D
// @include     https://raymanpc.com/forum/*
// @version     1
// @grant       none
// ==/UserScript==
var GoogleJQuery = document.createElement('script');
GoogleJQuery.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.js';
GoogleJQuery.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(GoogleJQuery);
var TekTekColour = document.createElement('script');
TekTekColour.src = 'http://tektek.org/color/color.js';
TekTekColour.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(TekTekColour);
var GradientSet = document.createElement('script');
GradientSet.innerHTML = 'var gradientType = "rainbow";';
GradientSet.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(GradientSet);

//var gradientType = "rainbow";

var fieldset = document.getElementsByClassName("submit-buttons")[0];
var submitButtonsHTML = fieldset.innerHTML;
fieldset.innerHTML = submitButtonsHTML + "<input type='button' tabindex='8' name='rainbowise' value='Rainbowise!!!' class='button2' id='rainbowise' /> <input type='hidden' id='gradient_repeat' value='1'/>";
document.getElementById ("rainbowise").addEventListener ( "click", RainbowisePost, false );

function RainbowisePost(zEvent) {
    var rainbowised;
    if (window.location.href.indexOf('posting.php') > -1) {
        rainbowised = MakeSFX($('#message') .val());
    } else {
        //Quick reply uses name instead of id
        //alert(document.getElementsByName("message")[0].value);
        rainbowised = MakeSFX(document.getElementsByName("message")[0].value);
    }
    
    var result = rainbowised;
    if (window.location.href.indexOf('t=885') > -1) {
        //This is Mot à Mot !
        result = rainbowised.replace('>', ' [img]https://static.raymanpc.com/Img/icon_arrow.gif[/img] ');
    }
    if (window.location.href.indexOf('t=886') > -1) {
        //This is Word to Word !
        result = rainbowised.replace('>', ' [img]https://static.raymanpc.com/Img/icon_arrow.gif[/img] ');
    }
    if (window.location.href.indexOf('posting.php') > -1) {
       $('#message').val(result);
    } else {
        //Quick reply uses name instead of id
        document.getElementsByName("message")[0].value = result;
    }
}
You can install it using the GreaseMonkey extension for Mozilla Firefox, and I think (I'm not sure) that Google Chrome has similar functionality built in.
The script adds a "Rainbowise!!!" button to both the full and quick-reply forms, which turns everything inside the posting form into rainbow text. In the topics "Mot à Mot" and "Word to Word", it also replaces the ">" character with a green arrow icon.
rolesfamily
Uglette
Posts: 10232
Joined: Wed Oct 23, 2013 6:43 pm
Tings: 74925

Re: Ninth edition of the posts in a day record

Post by rolesfamily »

That's a pretty cool code Plum.

I shan't be doing an all-nighter like I've said before; but I hope that doesn't make you guys begrudge me?
sonicbrawler182
Barbara
Posts: 2150
Joined: Sat Sep 21, 2013 4:09 pm
Location: Ireland
Tings: 11810

Re: Ninth edition of the posts in a day record

Post by sonicbrawler182 »

Thanks, got it working in Chrome!
PluMGMK
Annetta Fish
Posts: 40508
Joined: Fri Jul 31, 2009 9:00 pm
Location: https://www.youtube.com/watch?v=cErgMJSgpv0
Contact:
Tings: 136606

Re: Ninth edition of the posts in a day record

Post by PluMGMK »

Ah good, that does work! It's been a while since I've toyed with this kind of stuff in multiple browsers!
Shrooblord
Mr Stone
Posts: 15762
Joined: Tue Sep 07, 2010 5:07 pm
Location: The Buccaneer MK. II
Tings: 68850

Re: Ninth edition of the posts in a day record

Post by Shrooblord »

Yes, roles, I now hate you forever.
Why, why, why do I haate you a lot for-e-veerrr??
Master
Rayman 1
Posts: 53542
Joined: Sun Aug 21, 2011 10:14 am
Location: Somewhere specific, I'd assume.
Tings: 468310

Re: Ninth edition of the posts in a day record

Post by Master »

Hmm, I've tried it on mine, doesn't seem to want to play ball. I'm on Chrome also.
Hunchman801
Bad Rayman
Posts: 87629
Joined: Thu Aug 07, 2003 6:50 pm
Location: Paris, France
Contact:
Tings: 640257

Re: Ninth edition of the posts in a day record

Post by Hunchman801 »

rolesfamily wrote:I'm not going to be pre-writing any posts. Is that unwise? I've decided against it.
I'm definitely doing it if I get a chance and I believe everybody should.
PluMGMK
Annetta Fish
Posts: 40508
Joined: Fri Jul 31, 2009 9:00 pm
Location: https://www.youtube.com/watch?v=cErgMJSgpv0
Contact:
Tings: 136606

Re: Ninth edition of the posts in a day record

Post by PluMGMK »

I made myself a list of topics that I might try starting come hour zero (or maybe hold them for a while so they don't get buried…).
sonicbrawler182
Barbara
Posts: 2150
Joined: Sat Sep 21, 2013 4:09 pm
Location: Ireland
Tings: 11810

Re: Ninth edition of the posts in a day record

Post by sonicbrawler182 »

Master wrote:Hmm, I've tried it on mine, doesn't seem to want to play ball. I'm on Chrome also.
Download the free Tampermonkey extension:
https://chrome.google.com/webstore/deta ... fkfo?hl=en

And from within the extension, click "Add New Script", and then copy and paste Plum's code over whatever is in the new script file. Then click save (floppy disc button). It will automatically be enabled after saving.
Master
Rayman 1
Posts: 53542
Joined: Sun Aug 21, 2011 10:14 am
Location: Somewhere specific, I'd assume.
Tings: 468310

Re: Ninth edition of the posts in a day record

Post by Master »

Ah, okedoke. Thanks, Brawler, I'll give it a shot tomorrow, I'm heading off soon now.
Earth Gwee
Ly
Posts: 2684
Joined: Tue Apr 02, 2013 10:23 am
Location: Desert of the Knaaren
Contact:
Tings: 214170

Re: Ninth edition of the posts in a day record

Post by Earth Gwee »

I probably should let people know that I'll be in Oregon from July 3rd to the 13th. Anytime before or after those dates would be good for me.
Master
Rayman 1
Posts: 53542
Joined: Sun Aug 21, 2011 10:14 am
Location: Somewhere specific, I'd assume.
Tings: 468310

Re: Ninth edition of the posts in a day record

Post by Master »

The date has been confirmed to be August 2nd, so that should be convenient for you.
Earth Gwee
Ly
Posts: 2684
Joined: Tue Apr 02, 2013 10:23 am
Location: Desert of the Knaaren
Contact:
Tings: 214170

Re: Ninth edition of the posts in a day record

Post by Earth Gwee »

As long as nothing else goes on that day, yes, it should be.
Post Reply