2015年1月31日 星期六

使用Sublime Text 直接預覽寫好的程式

Step 1: 請先打開 Sublime Text,並且點擊"Ctrl+Shift+P",輸入Package Control。




Step 2: 點擊 "Package Control:Install Package",會出現下列畫面。
( 或直接打 inst 也會出現)




Step 3: 此時輸入 "Markdown preview",並且點擊它,Sublime Text 會自動安裝。

Step 4: 安裝後,請重開Sublime Text,這時請選"Preferences -> Key Bindings-User"。




Step 5: 在[]中輸入 : {"keys":["alt+m"],"command":"markdown_preview","args":{"target":"browser"}}

儲存後,重開 Sublime Text

這時只要打完code,按下 "alt+m",它就會使用瀏覽器預覽剛剛寫好的程式,多爽阿。




參考:小詠樂活筆記

2015年1月29日 星期四

PHP 基礎教學

如果學過C或C++語言的人,看到php會覺得超簡單DER~
用法幾乎一模一樣!

(1)基本介紹:

<!DOCTYPE html>
<html>
<body>

<?php
for ($x = 0; $x <= 3; $x++) {
   echo "The number is: $x <br>";
}
?>
   

</body>
</html>

------------------ Output ------------------
The number is: 0
The number is: 1
The number is: 2
The number is: 3




(2)呼叫function 用法:


<!DOCTYPE html>
<html>
<body>

<?php
function sum($x, $y) {
     $z = $x + $y;
     return $z;
}

echo "5 + 10 = " . sum(5,10) . "<br>";
echo "7 + 13 = " . sum(7,13) . "<br>";
echo "2 + 4 = " . sum(2,4);
?>


</body>
</html>

------------------ Output ------------------
5 + 10 = 15
7 + 13 = 20
2 + 4 = 6


(3) PHP 裡的 sort function: 利用 array( ) 這個function 先存好值,接著丟到 $number裡面, 再利用sort的function讓他排序,最後印出。
ps. count( ) 這個function 主要是用來計算 array長度

<!DOCTYPE html>
<html>
<body>

<?php
$numbers = array(4, 6, 2, 22, 11);
sort($numbers);

$arrlength = count($numbers);
for($x = 0; $x <  $arrlength; $x++) {
     echo $numbers[$x];
     echo "<br>";
}
?>


</body>
</html>
------------------ Output ------------------
2
4
6
11
22




參考: w3school.com

2015年1月28日 星期三

利用 XAMPP 練習 php

在自己電腦端架設好 XAMPP 後,把編寫好的php檔案 (ex: 檔名.php)
丟到 C:\xampp\htdocs (因為我把xampp裝在C槽)

在網址上面輸入:http://localhost/testphp/index.php
就可以看到所編寫的東西啦!

如下圖:



此外推薦一個不錯的教學網站
該網站教你會員登入、登出、新增、刪除、修改
寫得很不錯 大家可以參考看看
網址點我

大家可以開始玩啦~

Java 一些應用 [ csv reader / array of class / for( : ) ]

分享一些工作上用到的寫法 ( java )  csv reader  array of class for (:)  因為工作上需要讀取csv檔案的需求 , java 本身有提供一些 method  首先要 import opencsv-3.8.jar ...