2016年9月21日 星期三

隨手捐錢...竟然變成助紂為虐!!!

※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 110.30.150.164
※ 文章網址: https://www.ptt.cc/bbs/WomenTalk/M.1448211644.A.2F3.html


今天我和好友去買飲料 
買完飲料剩下的零錢本來要隨手丟進募款箱 
突然友人一個手起刀落把我的手打掉 

我:QAQ? 
她:那是青少年純潔協會的募款箱!!! 
我:所以呢…QAQ 
她:就是主張反同反多元成家守貞blablabla的協會 
我:喔那算了 
她:然後青少年純潔協會還是統一教系列的 
我:7-11那種嗎OwO 
她(無視我):就是教主推崇一夫一妻,但自己有四個老婆 
我(震驚):我也要四個老公>///< 
她(一臉不屑):
    不要一次禍害四個人我代替他們感謝你。 
    另外還有盲配和靈修 
    盲配就是,假如今天是同教會的男女,
    上頭會說:我今天奉上帝之名,覺得你們應該結婚 在一起 
我:
    那我和志明如果真心相愛可是要是志明被分配給春嬌我被分配給金城武,
    這樣我們就 只能羅密歐與茱麗葉了嗎? 
她:謝天謝地志明活下來了 為金城武默哀 好了你閉嘴 
    靈修的話台灣發生的事,牧師以宗教之名和少女或少男一起洗澡,甚至性侵 
我:...牧師帥嗎?>///< 
她:你去吃大便。 
她:而且青少年純潔協會去年光募款就5600多萬,比宜蘭市預算還多
    幹拎64這麼噁心的 協會還有人捐啊 
她:所以我想全台灣跟妳一樣不看哪個單位就丟錢的人應該蠻多的 
    我是只要那間店有青少年純潔協會和兒福就不會去消費,除非店家把募款箱撤掉 

聽到這裡我真的嚇尿了 
本來是想說隨手捐錢竟然變成助紂為虐(上帝啊佛祖啊四叉貓啊我支持多元成家啊請你們 原諒我QQ) 
女孩們捐錢時會注意募款的單位嗎 
友人叫我附上 
Fw: [出力] 檢舉青少年純潔協會 
http://www.ptt.cc/bbs/gay/M.1419865441.A.371.html 
兒福事件傳送門 
https://www.ptt.cc/bbs/Gossiping/M.1447909004.A.9DD.html?from=mopt

※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 110.30.150.164
※ 文章網址: https://www.ptt.cc/bbs/WomenTalk/M.1448211644.A.2F3.html

2016年9月20日 星期二

2015年2月25日 星期三

Dbvisualizer 新增Sql Server 2005


1.      不同資料庫第一次連結時,要建立Driver Manager(設定JDBC)
2.      Tools】→【Driver Manager
3.      Name SQL Server 20005(自己想表示的)
4.      URL jdbc:jTDS
5.      Driver Classes
        1.      下方Driver File Paths User Specified 點選右邊資料夾圖示
        2.      選取該DB Driver jar 開啟
        3.      Driver Classes下拉選單選取Driver

2015年2月24日 星期二

DbVisualizer找不到jdk

下載最新的DbVisualizer 9.2.2後,一直無法開啟,官網上找到了相關的方案。

解決方法:

  1. Windows/Unix/Linux:
    1. In the DbVisualizer installation directory there is an .install4j directory,
    2. In this directory create a file named pref_jre.cfg if it doesn't already exist,
    3. Open the file in a text editor,
    4. Add the complete path to the root directory for the Java installation you want to use.
      Example: C:\Program Files\Java\jre7

2014年10月8日 星期三

Struts2

Struts2

jar
commons-fileupload-1.3.1.jar
commons-io-2.2.jar
commons-lang-2.4.jar
commons-lang3-3.1.jar
freemarker-2.3.19.jar
javassist-3.11.0.GA.jar
ognl-3.0.6.jar
struts2-core-2.3.16.3.jar
xwork-core-2.3.16.3.jar

將這些jar檔放置在 WEB-INF底下lib資料夾當中

2014年4月17日 星期四

Oracle Database

-- 建立新的TABLE
CREATE TABLE
    NEW1TABLE
    (
        AA NUMBER ,
        BB CHAR(1) ,
        CC VARCHAR2(10),
        DD CHAR(10)
    );

--變更TABLE名稱
ALTER TABLE NEW1TABLE RENAME TO FIRSTTABLE;

2011年8月27日 星期六

身分證字號驗證

public class idTest {
    private static int x=0, y=0;//轉換英文代表的數字

    public idTest(){
    }
    public static void main(String[] args) throws IOException {
        String id;
        char[] idChar;

        BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));
        System.out.print("請輸入身分證字號:");

        id = buf.readLine();
        if(id.length() != 10){
            System.out.println("id長度錯誤。");
            System.exit(0);
        }

2011年8月21日 星期日

sort排序 練習

//sort排序
        int ary[] = {120,-10,-30,3,20,150,30,150};
        String temp = "";
        for(int i = 0;i &lt;ary.length; i++){
            temp += ary[i]+"\t";
        }
        System.out.println("排序前的ary : "+temp);

氣泡排序 練習

//氣泡排序
        int ary[] = {120,-10,-30,3,20,150,30,150};
        int swap;
        String temp = "";
        for(int i = 0;i < ary.length;i++){
            temp += ary[i]+"\t";
        }
        System.out.println("排序前的ary: "+temp);
        temp="";
        for(int i = 0;i < ary.length-1;i++){
            if(ary[i] > ary[i+1]){
                swap = ary [i];

陣列的複製 練習


//陣列的複製
        char ary1[] = {'A','A','A','A'};
        char ary2[] = {'B','C','D','E'};
        String temp1 = "",temp2 = "";
        for(int i = 0;i &lt; 4;i++){
            temp1 += ary1[i] + "\t";
            temp2 += ary2[i] + "\t";
        }
        System.out.println("複製前的ary1 :"+temp1);
        System.out.println("複製前的ary2 :"+temp2);

非對稱二維陣列 練習

public static void main(String[] args) {
        //非對稱二維陣列
        int[][] array = new int[4][];
        array[0] = new int[]{1};
        array[1] = new int[]{2,3};
        array[2] = new int[]{4,5,6};
        array[3] = new int[]{7,8,9,10};
        System.out.println("非對稱二維陣列 : ");
//        System.out.println(array[0][0]);
//        System.out.println(array[1][0]+ " " +array[1][1]);
//        System.out.println(array[2][0]+ " " +array[2][1]+ " " +array[2][2]);
//        System.out.println(array[3][0]+ " " +array[3][1]+ " " +array[3][2]+ " " +array[3][3]);

2011年8月19日 星期五

簡易計算機 練習


<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=big5">
<title>簡易javascript計算機</title>
</head>

<body background="images/j007.jpg">

a  + b:  <input id='a' size="4"/>  + <input id='b' size="4">
   <button onclick="calc();" style="width: 40; height: 27">=</button>
<span id="result"> </span>

<script language="JavaScript">

2011年8月18日 星期四

鍵盤輸入 練習


    public static void main(String[] args) throws IOException {
        // TODO code application logic here
        String str;
        BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));
        System.out.print("請輸入數字:");
        str = buf.readLine();
        System.out.println(Integer.parseInt(str));
    }

九九乘法表 練習


        for(int i = 1;i<=9;i++){
            for(int j = 1;j <= 9;j++){
                System.out.printf("%2d *%2d = %2d\t", j,i,(i*j));
//                System.out.print(j+" * "+i+" = ");
//                System.out.printf("%2d", (i * j));
//                System.out.print("\t");
            }
            System.out.println();
        }

為什麼無法新增修改文章內容呀????

改用舊板的
編輯器  發文

2011年8月16日 星期二

MySQL連線 練習

import java.sql.*;

public class DBConnectionDemo {
    public static void main(String[] args) {
        String driver = "com.mysql.jdbc.Driver";
        String url = "jdbc:mysql://localhost:3306/My108";
        String user = "root";
        String password = "1234";
        Connection conn = null;
        Statement stmt = null;