可以利用的思考模式
就是六頂思考帽
個別是
- 白色: 事實的陳述事情
- 紅色: 陳述心理的感覺
- 黃色: 利用推理的方式,陳述優點
- 黑色: 利用推理的方式,陳述缺點
- 綠色: 利用推理的方式,想出新的想法
- 藍色: 利用推理的方式,總結想法
例如:
白色: 只有半杯水,用玻璃杯裝的
紅色: 怎麼只有半杯水而已
黃色: 剩下半杯水,還可以拿來解渴
黑色: 因為看起來不透明,所以可能不乾淨
綠色: 那半杯水可以用比較小的杯子裝起來就不是半杯水了
藍色: 剩下半杯水,可以拿來解渴,但有可能會吃壞肚子
<virtualhost *> DocumentRoot "C:/www/web1" ServerName localhost DirectoryIndex index.php index.htm <directory C:/www/web1> Options FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all </directory> </virtualhost> <virtualhost> DocumentRoot "C:/www/web2" ServerName matttt.no-ip.org DirectoryIndex index.php index.htm <directory C:/www/web2> Options FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all </directory> </virtualhost>
wget http://maxim.org.za/AT91RM9200/2.6/2.6.27-at91.patch.gz zcat 2.6.27-at91.patch.gz | patch -p1 wget ftp://www.at91.com/pub/linux/2.6.27-at91/2.6.27-at91-exp.3.patch.gz zcat 2.6.27-at91-exp.3.patch.gz | patch -p1
sudo apt-get install smaba
sudo vi /etc/smab/smb.conf
security = user security = share ;二選一 ;user :使用 SAMBA 本身的密碼資料庫,密碼資料庫與底下的 smb passwd file 有關 ;share:分享的資料不需要密碼即可分享
;invalid users = root ;請找到這行將前面加上分號就可使用root的權限登入
[files] ;分享的資料夾名稱 comment = files ;註解 path = /root/files ;在linux的地方 browseable = yes ;是否可以觀看此分享資料夾 read only =no ;只能讀嗎?? writeable = yes ;是否能寫入,不能跟上面衝突 create mode = 777 ;是否能在裡面新增資料夾 guest ok = yes ;是否能用訪客的身分進入
smbpasswd -a username ;username為你想要新增smaba密碼的帳號
vim /etc/X11/default-display-manager將裡面的內容清空
vim /etc/X11/default-display-manager將裡面的內容打上
/usr/sbin/gdm
startx
cd "c:\Program Files\Sum\VirtualBox"
VBoxManage setextradata "linux" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/guestssh/Protocol" TCP VBoxManage setextradata "linux" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/guestssh/GuestPort" 22 VBoxManage setextradata "linux" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/guestssh/HostPort" 8000linux為虛擬機的名稱
VBoxManage setextradata "linux" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/guestftp/Protocol" TCP VBoxManage setextradata "linux" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/guestftp/GuestPort" 21 VBoxManage setextradata "linux" "VBoxInternal/Devices/pcnet/0/LUN#0/Config/guestftp/HostPort" 8100
註:防火牆需要開啟PORT好讓外面的電腦連入
XP設定的方式
註:防火牆需要開啟PORT好讓外面的電腦連入
XP設定的方式
apt-get install git-core gnupg sun-java5-jdk flex bison gperf libsdl-dev libesd0-dev libwxgtk2.6-dev build-essential zip curl libncurses5-dev zlib1g-dev
apt-get install valgrind
cd ~ mkdir bin
curl http://android.git.kernel.org/repo >~/bin/repo export PATH=~/bin:$PATH\ chmod a+x ~/bin/repo
mkdir mydroid cd mydroid
repo init -u git://android.git.kernel.org/platform/manifest.git要是想要下載其他的版本
repo init -u git://android.git.kernel.org/platform/manifest.git -b <branch>註:<branch>為版本名稱,如:cupcake、donut...等
repo sync
mkdir mydroid_kernel cd mydroid_kernel
git clone git://android.git.kernel.org/kernel/common.git
apt-get install vim
vim /etc/vim/vimrc
syntax on註:前面不能有"
set nu
set hlsearch
set autoindent
set expandtab
set shiftwidth=4
set softtabstop=4
set tabstop=4
apt-get install openssh-server確定即可
sudo apt-get install openssh-server輸入全限密碼
sudo passwd root
[sudo] password for User:→輸入本身的密碼<html> <head> <title><{$title}></title> </head> <body> <{$body}> </body> </html>smarty.php
<?php require_once('C:/www/lib/Smarty.class.php'); $smarty->template_dir = 'C:/www/templates/'; $smarty->compile_dir = 'C:/www/templates_c/'; $smarty->config_dir = 'C:/www/configs/'; $smarty->cache_dir = 'C:/www/cache/'; $smarty->left_delimiter = '<{'; $smarty-right_delimiter= '}>'; //$smarty->debugging = true; $title = "這是smarty的測試網頁"; $smarty->assign('title', $title); $smarty->assign('body', "這是body顯示的變數"); $smarty->display('smarty.htm'); ?>
del.php <?php $DestDIR = "c:/www"; $ServerFilename = "test.txt"; $fh = fopen($DestDIR . "/" . $ServerFilename, 'a'); //注一 fwrite($fh, 'Hello world!'); //注一 unlink($DestDIR . "/" . $ServerFilename); ?>
<html> <head> <title>上傳範例</title> </head> <body> <form enctype="multipart/form-data" action="upload.php" method="post"> 檔案路徑:<input type="file" name="file_path"><br> <input type="submit" name="Submit" value="上傳"> </body> </html>
<?php $DestDIR = "C:/www"; $ServerFilename = "data"; if (!empty($_FILES['file_path']['name'])) { if ($_FILES['file_path']['size'] > 1024*1024*2) { if ($_FILES['file_path']['type'] == "image/jpeg") { check = copy($_FILES['file_path']['tmp_name'], $DestDIR . "/" . $ServerFilename . ".jpg"); if(check) echo "以上傳完成"; else echo "上傳失敗"; } else echo "檔案類型不對"; } else echo "上傳檔案太大"; } else { echo "沒有檔案"; echo "錯誤資訊:" . $_FILES['file_path']['error']; } ?>
CODE {
display: block; /* fixes a strange ie margin bug */
font-family: Courier New;
font-size: 14px;
overflow:auto;
background: #f0f0f0 url(http://klcintw.images.googlepages.com/Code_BG.gif) left top repeat-y;
border: 1px solid #ccc;
padding: 10px 10px 10px 21px;
//max-height:200px;
line-height: 1.2em;
}
<html> <head> <title>上傳範例</title> </head> <body> <form enctype="multipart/form-data" action="upload.php" method="post"> 檔案路徑:<input type="file" name="file_path"><br> <input type="submit" name="Submit" value="上傳"> </body> </html>
<?php if(!empty($_FILES['file_path']['name'])) { //有上傳檔案 if ($_FILES['file_path']['size'] > 1024*1024*2) { //最大2MB echo "以上傳完成"; echo "在伺服器裡的位置和名子:" . $_FILES['file_path']['tmp_name']; echo "檔案名子:" . $_FILES['file_path']['name']; echo "檔案大小:" . $_FILES['file_path']['size'] . "btyes"; echo "檔案類型:" . $_FILES['file_path']['type']; } else echo "上傳檔案太大"; } else { echo "沒有檔案"; echo "錯誤資訊:" . $_FILES['file_path']['error']; } ?>