Posts belonging to Category '新軟體報報'

多款表格資料處理工具

多款表格資料處理工具
系統需求:jQuery

套件說明:
本範例整理了多款呈現表格的jQuery套件,每一款各有各的特色,可以自行選用適合的套件應用。


套件名稱: jqGrid
版本:3.5
官網:http://www.trirand.com/blog/
demo: http://www.trirand.com/jqgrid/jqgrid.html
功能特色:
分頁功能、排序功能、新增、編輯、刪除及搜尋功能、來源資料可以是XML,JSON,array等、多重選擇、欄位寬度控制等功能。

套件名稱: flexigrid
版本:1.0b3
下載:http://code.google.com/p/flexigrid/downloads/list
官網:http://www.flexigrid.info/
demo: http://www.flexigrid.info/
功能特色:分頁功能、排序功能、新增、編輯、刪除及搜尋功能、來源資料可以是XML,JSON,array等、多重選擇、欄位寬度控制等功能。

套件名稱: DataTables
版本:1.5.2
下載:http://www.datatables.net/download
官網:http://www.datatables.net/
demo:http://www.datatables.net/examples/
功能特色:DataTables 算是一款功能非常完善的表格處理套件,其功能除了上述功能外,尚還有很多進階功能例如:多欄位排序功能、高亮度標示功能、tooltip功能等,其功能甚多就讓使用者自行研究囉!!

VN:F [1.8.1_1037]
Rating: 0.0/10 (0 votes cast)
VN:F [1.8.1_1037]
Rating: 0 (from 0 votes)
  • Share/Bookmark

48種 box 效果

osking 開源王的show圖效果是使用 Lightbox,當然還有很多不一樣的show圖效果,底下連結提供了 48 種show圖效果給大家參考看看囉 ^^

48種box效果

VN:F [1.8.1_1037]
Rating: 10.0/10 (1 vote cast)
VN:F [1.8.1_1037]
Rating: 0 (from 0 votes)
  • Share/Bookmark

javascript 簡化型日曆

套件名稱:CalendarView
版本:1.2
官網:http://calendarview.org/
下載:http://calendarview.org/
demo:http://calendarview.org/
安裝需求:Prototype 1.6.0 (or later).

軟體介紹:
CalendarView是一款建立在Prototype基礎上的日曆元件。

執行結果:
CalendarView_1

更新記錄:
Version 1.2 — May 13th, 2009

  • Fixed some CSS rules in the packaged stylesheet so that days from other months and the current date are styled the way they were intended.
  • Reorganized the repository a bit and added an example to the downloadable package.
  • Added some release packaging scripts to ease distribution of new releases.
  • Fixed the display of days from other months in the default CSS. Thanks to Corie Slate for reporting this issue.
  • Fixed a compatibility issue with Internet Explorer 8. Thanks to Gabriel Engel for this fix.
VN:F [1.8.1_1037]
Rating: 0.0/10 (0 votes cast)
VN:F [1.8.1_1037]
Rating: 0 (from 0 votes)
  • Share/Bookmark

shell script 監控查看網路頻寬

無意中在網路看到一隻shell script,這隻程式可以用來監控那一塊網卡頻寬的使用情形

執行方式:

./net.sh eth0 1

執行結果:

[root@localhost ~]# ./net.sh eth0 1
IN: 3318 Byte/s OUT: 259984 Byte/s
IN: 3486 Byte/s OUT: 249470 Byte/s
IN: 3332 Byte/s OUT: 259984 Byte/s
IN: 3090 Byte/s OUT: 252528 Byte/s
IN: 3000 Byte/s OUT: 252474 Byte/s
IN: 3000 Byte/s OUT: 253976 Byte/s
IN: 2940 Byte/s OUT: 255478 Byte/s
IN: 3004 Byte/s OUT: 252474 Byte/s
IN: 3452 Byte/s OUT: 252528 Byte/s
IN: 3270 Byte/s OUT: 260038 Byte/s
IN: 3586 Byte/s OUT: 252474 Byte/s

程式碼如下:

#!/bin/bash
 
# test network width
 
function usage
 
{
 
        echo "Usage: $0  "
 
        echo "    e.g. $0 eth0 2"
 
        exit 65
 
}
 
if [ $# -lt 2 ];then
usage
fi
typeset in in_old dif_in
typeset out out_old dif_out
typeset timer
typeset eth
 
eth=$1
timer=$2
 
in_old=$(cat /proc/net/dev | grep $eth | sed -e "s/\(.*\)\:\(.*\)/\2/g" | awk ' { print $1 }' )
out_old=$(cat /proc/net/dev | grep $eth | sed -e "s/\(.*\)\:\(.*\)/\2/g" | awk ' { print $9 }' )
 
while true
do
sleep ${timer}
in=$(cat /proc/net/dev | grep $eth | sed -e "s/\(.*\)\:\(.*\)/\2/g" | awk ' { print $1 }' )
out=$(cat /proc/net/dev | grep $eth | sed -e "s/\(.*\)\:\(.*\)/\2/g" | awk ' { print $9 }' )
dif_in=$(((in-in_old)/timer))
dif_out=$(((out-out_old)/timer))
echo "IN: ${dif_in} Byte/s OUT: ${dif_out} Byte/s"
in_old=${in}
out_old=${out}
done
exit 0
VN:F [1.8.1_1037]
Rating: 8.0/10 (1 vote cast)
VN:F [1.8.1_1037]
Rating: +1 (from 1 vote)
  • Share/Bookmark

多合一WEB伺服器 phpStudy2009

套件名稱:phpStudy
版本:2009
官網:http://www.3527.com/phpstudy/
下載:http://www.3527.com/phpstudy/phpstudy2009.exe
demo:
執行結果畫面:

軟體介紹:
phpStudy是一款多合一web伺服器,集合各個套件為一身,其中包含的套件有Apache+PHP+MySQL+phpMyAdmin+ZendOptimizer,一次性安裝,安裝完後不用額外的設定即可使用,是非常方便、好用的PHP調試環境。
對學習PHP的新手來說,WINDOWS下環境配置是一件很困難的事;對老手來說也是一件煩瑣的事。因此無論你是新手還是老手,phpStudy是一個不錯的選擇。

1、全面適合 Win2000/XP/2003 操作系統,IIS和Apache二選一安裝。

2、該套件集合以下軟件,均為最新版本。

PHP 5.2.11 新型的CGI程序編寫語言,易學易用、速度快、跨平台。

Apache 2.2.13 最流行的HTTP服務器軟件,快速、可靠、開源。

MySQL 5.0.85 執行性能高,運行速度快,容易使用,非常棒數據庫。

phpMyAdmin 3.2.2 開源、基於WEB而小巧的MySQL管理程序。

ZendOptimizer 3.3.3 免費的PHP優化引擎,性能提高30%以上。

OpenSSL 0.9.8k 密碼算法庫、SSL協議庫以及應用程序。

3、如果作為web服務器請稍修改配置文件即可。MySQL數據庫用戶名:root,密碼root,安裝後請重新設置密碼。

注意:安裝過程中,如有防火牆開啟,註冊啟動服務時,會提示是否信任httpd、mysqld-nt運行,以及端口80、3306等,請選擇允許。

VN:F [1.8.1_1037]
Rating: 8.0/10 (2 votes cast)
VN:F [1.8.1_1037]
Rating: 0 (from 0 votes)
  • Share/Bookmark

微型wiki系統 LionWiki V3.0.5

套件名稱:LionWiki
版本:3.0.5
官網:http://lionwiki.0o.cz/
下載:http://lionwiki.0o.cz/index.php?page=UserGuide%3A+Download
demo:
執行結果畫面:

軟體介紹:
LionWiki 是一個微型Wiki系統,使用 php 語言撰寫。

VN:F [1.8.1_1037]
Rating: 0.0/10 (0 votes cast)
VN:F [1.8.1_1037]
Rating: 0 (from 0 votes)
  • Share/Bookmark

Open DHCP Server V1.3

套件名稱:Open DHCP Server
版本:1.3
官網:
下載:http://sourceforge.net/projects/dhcpserver/files/
demo:
執行結果畫面:

軟體介紹:
Open DHCP Server 是一套 OpenSource 的DHCP Server,且有windows,linux,bsd的版本。

VN:F [1.8.1_1037]
Rating: 0.0/10 (0 votes cast)
VN:F [1.8.1_1037]
Rating: 0 (from 0 votes)
  • Share/Bookmark

多合一Web伺服器 XAMPP V1.7.2


套件名稱:XAMPP
版本:1.7.2
官網:http://www.apachefriends.org/zh_tw/xampp.html
下載:http://www.apachefriends.org/zh_tw/xampp-linux.html
demo:
執行結果畫面:

軟體介紹:
XAMPP 是一個非常容易安裝的多合一web服務套件,其中包含了MySQL,PHP,Perl,Apache等套件,對於在Windows底下要安裝這些套件而感到困擾的使用者來說,是個相當好的web服務套件。

此版本更新如下:

  • Apache 2.2.12 (IPv6 enabled) + OpenSSL 0.9.8k
  • MySQL 5.1.37 + PBXT engine
  • PHP 5.3.0
  • phpMyAdmin 3.2.0.1
  • Webalizer 2.21-02 + GeoIP lite
  • FileZilla FTP Server 0.9.32
  • msmtp 1.4.17
VN:F [1.8.1_1037]
Rating: 10.0/10 (1 vote cast)
VN:F [1.8.1_1037]
Rating: 0 (from 0 votes)
  • Share/Bookmark

MySQL資料庫圖形化界面管理的工具 SQLyog V8.13 正式版


套件名稱:SQLyog

版本:8.13
官網:http://www.webyog.com/en/index.php
下載: http://www.webyog.com/en/downloads.php#sqlyog
demo:
執行結果畫面: 官網畫面

軟體介紹:

SQLyog 是一個很容易使用、快速且簡單的MySQL圖形化界面管理工具。

VN:F [1.8.1_1037]
Rating: 0.0/10 (0 votes cast)
VN:F [1.8.1_1037]
Rating: 0 (from 0 votes)
  • Share/Bookmark

OS作業系統 Ubuntu V9.10 Alpha 4

套件名稱:Ubuntu
版本:9.10 Alpha 4
官網:http://www.ubuntu.com/
下載:http://www.ubuntu.com/getubuntu/download
demo:
執行結果畫面:

軟體介紹:
Ubuntu 對於Linux使用者來說應該不陌生 。

VN:F [1.8.1_1037]
Rating: 0.0/10 (0 votes cast)
VN:F [1.8.1_1037]
Rating: 0 (from 0 votes)
  • Share/Bookmark