on fleek [dLtMs0 v 5.5]

Status
Not open for further replies.
177.

Translation:

Poop...poop! lolololololololololololololololololol

Parariraparari~ lololololololololololololololol
Nyahahahaha lolololololololololololol

Original:

うんち…うんち!wwwwwwwwwwwwwwwwww

ぱらりーらぱらりーwwwwwwwwwwww
にょははははははははははwwwwwwwwww

And then:

つまね死んで詫びろ

Sorry, I'm bored to death

Yeah, 2ch's grammar is terrible. In reality, that'd sound more like

Borez ta deth, soz
 
182.

Bored and all done studying for exams.

I wrote a small script that tells you your recent postcount by forum.

Just copy and paste this into your console (F12 on Chrome) on a forum index and it'll show you a popup after a few seconds.

Code:
var id = $('a[href^=\'member.php?u=\']').filter(function(x, e) {
  return e.href.match(/member\.php\?u\=(\d+)/);
}).attr('href').match(/member\.php\?u\=(\d+)/)[1];'';
var countlinks = $('a[href*=whoposted]');
var countrefs = countlinks.toArray().map(function(l) {
  return l.href;
});
var postcount = 0;
$.when.apply($, countrefs.map(function(x) {
  return $.get(x);
})).done(function() {
  for (var k in arguments) {
    postcount += +$('a[href*=' + id + '][href*=search]', arguments[k][0]).text() || 0;
  }
  alert(postcount);
});

It's slow because Pokecommunity is slow >.>
 
186

Yeah- I have no clue what you two are talking about.

Not like that's new or anything.
 
Status
Not open for further replies.
Back
Top