This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
Plugin.create :josou do | |
onupdate do |s, ms| | |
ms.each do |m| | |
if Time.now - m[:created] < 5 and m.message.to_s.include?("女装") | |
Service.primary.post(:message => "女装男子とセックスしたいよー(っ>ω<c)☆.° 女装ーーー(っ>ω<c)☆.°女装男子と(っ>ω<c)☆.°セックスがしたいの(っ>ω<c)☆.°ウーーー(っ>ω<c)☆.°WOOOOO(っ>ω<c)☆.°じょそ!!う!!!女装男子とワンチャンセックスハァードッコイ!!") | |
end | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding:utf-8 | |
import random | |
class BBOP: | |
def __init__(self, expect, words, fixed): | |
self.expect = expect | |
self.words = words | |
self.fixed = fixed | |
def random(self): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding:utf-8 | |
import random | |
class BBOP: | |
def __init__(self, expect, words, fixed): | |
self.expect = expect | |
self.words = words | |
self.fixed = fixed | |
def random(self): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package bbop; | |
import java.util.List; | |
import java.util.Random; | |
import com.google.common.collect.Lists; | |
public class BBOP | |
{ | |
static final String[] RANDOM_WORDS = { "ビ", "ビ", "ド", "レ", "ド", "オ", "ペ", "レ", "ショ" }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import System.Random | |
import Control.Monad | |
bs :: String | |
bs = "firstspring1845" | |
bs' :: String | |
bs' = "fsrg84" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Arrays; | |
import java.util.Collections; | |
import java.util.List; | |
import java.util.Map; | |
import java.util.Random; | |
import java.util.Set; | |
import lombok.AllArgsConstructor; | |
import lombok.Delegate; | |
import lombok.Getter; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javax.imageio.ImageIO; | |
import javax.swing.*; | |
import javax.swing.border.CompoundBorder; | |
import javax.swing.border.EmptyBorder; | |
import javax.swing.border.LineBorder; | |
import java.awt.*; | |
import java.awt.datatransfer.DataFlavor; | |
import java.awt.datatransfer.Transferable; | |
import java.awt.datatransfer.UnsupportedFlavorException; | |
import java.awt.dnd.DnDConstants; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Random; | |
public class Names { | |
public static void main(String[] args) { | |
String[] src = new String[] { | |
"━", "┃", "┓", "┛", "┏", "┗", "┳", "┻", "┣", "┫", "╋", | |
}; | |
Random rnd = new Random(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package jp.rhe.test.twitterauth; | |
import android.app.Activity; | |
import android.content.ComponentName; | |
import android.content.Intent; | |
import android.os.Bundle; | |
import android.view.Menu; | |
import android.view.View; | |
import android.view.View.OnClickListener; | |
import android.widget.TextView; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public abstract class AbstractShachiku implements Runnable | |
{ | |
protected asbtract void work(); | |
@Override | |
public final void run() | |
{ | |
syukkin(); | |
} |