Welcome Guest ( Log In | Register )

5664 Pages V « < 1635 1636 1637 1638 1639 > »   
Closed TopicStart new topic
> 舊中文樓, The dead and old Chinese discussion (spam) thread

 
post Jul 16 2017, 10:21
Post #32721
sasasang



Was it me you saw?
*******
Group: Gold Star Club
Posts: 1,946
Joined: 24-May 15
Level 485 (Dovahkiin)


逛漫展逛到腿疼
刚才在厕所看到一个女装大佬,出来一听他的声音又觉得他是女的,我好像失去了分辨男女的能力了(双兔傍地走
,安能辨我是雄雌)
————————————
回家的时候再发照片
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 16 2017, 10:38
Post #32722
NekoHime27



忙しい猫姫
***********
Group: Catgirl Camarilla
Posts: 10,795
Joined: 9-July 11
Level 405 (Godslayer)


console.log('好难呀 (IMG:[invalid] style_emoticons/default/wacko.gif) ');
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 16 2017, 10:47
Post #32723
yukikiss



Doujin Music Lover.
*******
Group: Gold Star Club
Posts: 1,145
Joined: 11-December 11
Level 375 (Godslayer)


QUOTE(chung2795 @ Jul 16 2017, 16:16) *

开始学Java Script



QUOTE(chung2795 @ Jul 16 2017, 16:38) *

console.log('好难呀 (IMG:[invalid] style_emoticons/default/wacko.gif) ');



lemme show you my gallery sort script:

CODE

// ==UserScript==
// @name        Gallery sort
// @namespace   Gallery result sort
// @description sort the seach result of the gallery. works for both view mode.
// @include     https://e-hentai.org/
// @include     https://e-hentai.org/?*
// @include     https://e-hentai.org/tag/*
// @include     https://e-hentai.org/uploader/*
// @include     https://e-hentai.org/doujinshi*
// @include     https://e-hentai.org/manga*
// @include     https://e-hentai.org/artistcg*
// @include     https://e-hentai.org/gamecg*
// @include     https://e-hentai.org/western*
// @include     https://e-hentai.org/non-h*
// @include     https://e-hentai.org/imageset*
// @include     https://e-hentai.org/cosplay*
// @include     https://e-hentai.org/asianporn*
// @include     https://e-hentai.org/misc*
// @include     https://e-hentai.org/
// @include     https://e-hentai.org/?*
// @include     https://e-hentai.org/tag/*
// @include     https://e-hentai.org/uploader/*
// @include     https://e-hentai.org/doujinshi*
// @include     https://e-hentai.org/manga*
// @include     https://e-hentai.org/artistcg*
// @include     https://e-hentai.org/gamecg*
// @include     https://e-hentai.org/western*
// @include     https://e-hentai.org/non-h*
// @include     https://e-hentai.org/imageset*
// @include     https://e-hentai.org/cosplay*
// @include     https://e-hentai.org/asianporn*
// @include     https://e-hentai.org/misc*
// @version     1
// @author      yukikiss
// @grant       none
// @run-at      document-end
// ==/UserScript==


btn = document.createElement("button");
btn.className = "stdbtn";
btn.addEventListener("click", sort);
btn.appendChild(document.createTextNode("Sort Result"));
document.getElementsByClassName("nopm")[0].appendChild(btn);
function sort(evt) {
    evt.preventDefault();

  var raw;
  var mode;
  if (document.getElementsByTagName("span")[0].innerHTML == "List"){
    raw = [];
    mode = "it5";
    var temp = document.getElementsByClassName("gtr1");
    var temp2 = document.getElementsByClassName("gtr0");
    for (i=0; i< temp.length; i++){
      raw.push(temp[i]);
    }
    for (i=0; i< temp2.length; i++){
      raw.push(temp2[i]);
    }

  } else {
    mode = "id2";
    raw = document.getElementsByClassName("id1");
  }

  var sorted = [raw[0]];
  for(i=1;i<raw.length;i++){
    for(j=0;j<sorted.length;j++){
      if (raw[i].getElementsByClassName(mode)[0].getElementsByTagName("a")[0].innerHTML.localeCompare(sorted[j].getElementsByClassName(mode)[0].getElementsByTagName("a")[0].innerHTML)>0){
        sorted.splice(j,0,raw[i]);
        break;
      } else if (j == sorted.length-1) {
        sorted.push(raw[i]);
        break;
      }
    }
  }

  var length = raw.length;
  var c = document.getElementsByClassName("c")[0];
  for (i=0; i< length; i++){
    sorted[i].parentNode.appendChild(sorted[i]);
  }
  if (document.getElementsByTagName("span")[0].innerHTML == "Thumbnails"){
  c.parentNode.appendChild(c);
  }else {
    for (i = 0; i<sorted.length; i++) {
      if (i%2 == 0){
        sorted[i].className = "gtr0";
      }
      else {
        sorted[i].className = "gtr1";
      }
    }
  }
}
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 16 2017, 10:52
Post #32724
NekoHime27



忙しい猫姫
***********
Group: Catgirl Camarilla
Posts: 10,795
Joined: 9-July 11
Level 405 (Godslayer)


QUOTE(yukikiss @ Jul 16 2017, 16:47) *

lemme show you my gallery sort script:

CODE

// ==UserScript==
// @name        Gallery sort
// @namespace   Gallery result sort
// @description sort the seach result of the gallery. works for both view mode.
// @include     https://e-hentai.org/
// @include     https://e-hentai.org/?*
// @include     https://e-hentai.org/tag/*
// @include     https://e-hentai.org/uploader/*
// @include     https://e-hentai.org/doujinshi*
// @include     https://e-hentai.org/manga*
// @include     https://e-hentai.org/artistcg*
// @include     https://e-hentai.org/gamecg*
// @include     https://e-hentai.org/western*
// @include     https://e-hentai.org/non-h*
// @include     https://e-hentai.org/imageset*
// @include     https://e-hentai.org/cosplay*
// @include     https://e-hentai.org/asianporn*
// @include     https://e-hentai.org/misc*
// @include     https://e-hentai.org/
// @include     https://e-hentai.org/?*
// @include     https://e-hentai.org/tag/*
// @include     https://e-hentai.org/uploader/*
// @include     https://e-hentai.org/doujinshi*
// @include     https://e-hentai.org/manga*
// @include     https://e-hentai.org/artistcg*
// @include     https://e-hentai.org/gamecg*
// @include     https://e-hentai.org/western*
// @include     https://e-hentai.org/non-h*
// @include     https://e-hentai.org/imageset*
// @include     https://e-hentai.org/cosplay*
// @include     https://e-hentai.org/asianporn*
// @include     https://e-hentai.org/misc*
// @version     1
// @author      yukikiss
// @grant       none
// @run-at      document-end
// ==/UserScript==
btn = document.createElement("button");
btn.className = "stdbtn";
btn.addEventListener("click", sort);
btn.appendChild(document.createTextNode("Sort Result"));
document.getElementsByClassName("nopm")[0].appendChild(btn);
function sort(evt) {
    evt.preventDefault();

  var raw;
  var mode;
  if (document.getElementsByTagName("span")[0].innerHTML == "List"){
    raw = [];
    mode = "it5";
    var temp = document.getElementsByClassName("gtr1");
    var temp2 = document.getElementsByClassName("gtr0");
    for (i=0; i< temp.length; i++){
      raw.push(temp[i]);
    }
    for (i=0; i< temp2.length; i++){
      raw.push(temp2[i]);
    }

  } else {
    mode = "id2";
    raw = document.getElementsByClassName("id1");
  }

  var sorted = [raw[0]];
  for(i=1;i<raw.length;i++){
    for(j=0;j<sorted.length;j++){
      if (raw[i].getElementsByClassName(mode)[0].getElementsByTagName("a")[0].innerHTML.localeCompare(sorted[j].getElementsByClassName(mode)[0].getElementsByTagName("a")[0].innerHTML)>0){
        sorted.splice(j,0,raw[i]);
        break;
      } else if (j == sorted.length-1) {
        sorted.push(raw[i]);
        break;
      }
    }
  }

  var length = raw.length;
  var c = document.getElementsByClassName("c")[0];
  for (i=0; i< length; i++){
    sorted[i].parentNode.appendChild(sorted[i]);
  }
  if (document.getElementsByTagName("span")[0].innerHTML == "Thumbnails"){
  c.parentNode.appendChild(c);
  }else {
    for (i = 0; i<sorted.length; i++) {
      if (i%2 == 0){
        sorted[i].className = "gtr0";
      }
      else {
        sorted[i].className = "gtr1";
      }
    }
  }
}


Please teach me, KissKiss-sensei!
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 16 2017, 11:11
Post #32725
akiba2013



Active Poster
*******
Group: Members
Posts: 1,405
Joined: 31-March 13
Level 400 (Godslayer)


【中岛美嘉】一万人的雪之华 中字LIVE 一萬人の雪の華
现场有万人同唱日文歌~
一万个汉奸?


世界が终るまでは… SNH48 许佳琪 徐晨辰 吴哲晗 宋昕冉 汪佳翎 陈音 张菡筱 20160123
MMP,表演真烂~乐器假弹...(放CD)
(现场或看不太出来,可在影片中镜头带到就很明显啊~)
日文烂~不是日本人啊,没得说。

BTW,好好的中国人唱啥脚盆鸡歌~想当汉奸啊

This post has been edited by akiba2013: Jul 16 2017, 14:57
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 16 2017, 13:33
Post #32726
susancat



Newcomer
********
Group: Gold Star Club
Posts: 2,769
Joined: 7-August 14
Level 500 (Ponyslayer)


QUOTE(sasasang @ Jul 16 2017, 16:21) *

逛漫展逛到腿疼
刚才在厕所看到一个女装大佬,出来一听他的声音又觉得他是女的,我好像失去了分辨男女的能力了(双兔傍地走
,安能辨我是雄雌)
————————————
回家的时候再发照片

B站之前好像流行過偽聲教學
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 16 2017, 13:54
Post #32727
yukikiss



Doujin Music Lover.
*******
Group: Gold Star Club
Posts: 1,145
Joined: 11-December 11
Level 375 (Godslayer)


QUOTE(susancat @ Jul 16 2017, 19:33) *

B站之前好像流行過偽聲教學




i want to know more

plz.

(IMG:[invalid] style_emoticons/default/wub.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 16 2017, 14:33
Post #32728
Zes



臭鼬娘漢化組組長
*******
Group: Catgirl Camarilla
Posts: 2,040
Joined: 25-April 15
Level 478 (Dovahkiin)


終於翻完了一個作品 共2萬多個中文字 (IMG:[invalid] style_emoticons/default/wacko.gif)
嵌完120頁 就剩下20多頁了

This post has been edited by axl4884: Jul 16 2017, 14:34
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 16 2017, 15:03
Post #32729
chjj30



🦘跳海魔女🧙王世坚🌊
***********
Group: Catgirl Camarilla
Posts: 11,011
Joined: 5-January 14
Level 500 (Ponyslayer)


QUOTE(axl4884 @ Jul 16 2017, 20:33) *

終於翻完了一個作品 共2萬多個中文字 (IMG:[invalid] style_emoticons/default/wacko.gif)
嵌完120頁 就剩下20多頁了


该作的悬赏是多少?
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 16 2017, 15:23
Post #32730
爱睡觉的喵



Newcomer
*
Group: Recruits
Posts: 16
Joined: 24-April 16
Level 26 (Apprentice)


每日签到
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 16 2017, 15:56
Post #32731
erjhnia



Casual Poster
***
Group: Members
Posts: 106
Joined: 22-July 12
Level 167 (Destined)


氺!
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 16 2017, 16:06
Post #32732
Akabane Hibiki



Lurker
Group: Lurkers
Posts: 2
Joined: 16-July 17
Level 322 (Godslayer)


新人簽到~ 大家好啊~ (ノ>ω<)ノ
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 16 2017, 16:14
Post #32733
sasasang



Was it me you saw?
*******
Group: Gold Star Club
Posts: 1,946
Joined: 24-May 15
Level 485 (Dovahkiin)


QUOTE(yukikiss @ Jul 16 2017, 13:54) *

i want to know more

plz.

(IMG:[invalid] style_emoticons/default/wub.gif)

(IMG:[invalid] style_emoticons/default/huh.gif) (IMG:[invalid] style_emoticons/default/blink.gif) (IMG:[invalid] style_emoticons/default/ohmy.gif) (IMG:[invalid] style_emoticons/default/rolleyes.gif) (IMG:[invalid] style_emoticons/default/laugh.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 16 2017, 16:35
Post #32734
Zes



臭鼬娘漢化組組長
*******
Group: Catgirl Camarilla
Posts: 2,040
Joined: 25-April 15
Level 478 (Dovahkiin)


QUOTE(chjj30 @ Jul 16 2017, 06:03) *

该作的悬赏是多少?

沒懸賞 (IMG:[invalid] style_emoticons/default/rolleyes.gif) 純粹是自己對作品的愛 (IMG:[invalid] style_emoticons/default/biggrin.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 16 2017, 16:41
Post #32735
Evenjelin



Furry is Justice!
*******
Group: Gold Star Club
Posts: 1,131
Joined: 20-October 15
Level 285 (Ascended)


相亲~相亲~~相亲……

(IMG:[invalid] style_emoticons/default/rolleyes.gif) (IMG:[invalid] style_emoticons/default/rolleyes.gif) (IMG:[invalid] style_emoticons/default/rolleyes.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 16 2017, 16:46
Post #32736
泉水小夜



Veteran Poster
********
Group: Members
Posts: 3,115
Joined: 2-September 14
Level 363 (Dovahkiin)


高血压头疼又犯了。。。。
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 16 2017, 16:51
Post #32737
yukikiss



Doujin Music Lover.
*******
Group: Gold Star Club
Posts: 1,145
Joined: 11-December 11
Level 375 (Godslayer)


QUOTE(sasasang @ Jul 16 2017, 22:14) *


what?

i want to learn (and do)
for quite a while actually

(IMG:[invalid] style_emoticons/default/wub.gif)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 16 2017, 16:52
Post #32738
woodsopp



Active Poster
*******
Group: Members
Posts: 1,197
Joined: 15-June 17
Level 500 (Ponyslayer)


12G一百二的流量卡没得卖了……
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 16 2017, 16:59
Post #32739
chjj30



🦘跳海魔女🧙王世坚🌊
***********
Group: Catgirl Camarilla
Posts: 11,011
Joined: 5-January 14
Level 500 (Ponyslayer)


QUOTE(axl4884 @ Jul 16 2017, 22:35) *

沒懸賞 (IMG:[invalid] style_emoticons/default/rolleyes.gif) 純粹是自己對作品的愛 (IMG:[invalid] style_emoticons/default/biggrin.gif)


那很厉害啊,两万字都可以写论文了呢。
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Jul 16 2017, 17:16
Post #32740
oath言



Casual Poster
***
Group: Members
Posts: 199
Joined: 26-April 13
Level 243 (Destined)


过来签一下到~
User is offlineProfile CardPM
Go to the top of the page
+Quote Post


5664 Pages V « < 1635 1636 1637 1638 1639 > » 
Closed TopicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 


Lo-Fi Version Time is now: 4th December 2025 - 07:08