OpenShot
|
Linux
|
PiTiVi
|
Linux
|
LiVES
|
Linux / OSX
|
cinefx
|
|
Kdenlive
|
Linux / OSX
|
Avidemux
|
|
Jahshaka
|
|
Open Movie Editor
|
|
Kino
|
References :
請問支援linux影片剪輯有哪些軟體?
OpenShot
|
Linux
|
PiTiVi
|
Linux
|
LiVES
|
Linux / OSX
|
cinefx
|
|
Kdenlive
|
Linux / OSX
|
Avidemux
|
|
Jahshaka
|
|
Open Movie Editor
|
|
Kino
|
worker mpm一般不会跟mod php搭配, worker mpm一般都是跟apache的mod fcgid 搭配,然后php要安装php-cgi 来跑php的.
# apt-get install apt-cacher
# vi /etc/apt-cacher/apt-cacher.conf
allowed_hosts = *# /etc/init.d/apt-cacher restart
or
allowed_hosts = 192.168.1.0/24
# vi /etc/apt/apt.conf
Acquire::http::proxy "http://your-server:3142";
$ cd ~/.ssh
$ ssh-keygen -t rsa
$ cat ~/.ssh/id_rsa.pub # public key
允許名稱為 test 之使用者進入管理頁面 |
$ cd my_project/
// 新增 submodule
$ git submodule add git@github.com:xxxx/module_1.git lib/module_1 // $ git submodule REPOSITORY PATH
$ git status // 會多一個檔案及模組的資料夾
$ git add .gitmodules lib/module_1
$ git add .gitmodules lib/module_1/ 在最後不要加了 /,會 commit 到模組資料夾裡的檔案
$ git commit -a -m "Add submodule into version control"
$ git push
// 將模組資訊加入 .git/config
$ git submodule init
from smartcard.System import readers
# define the APDUs used in this script
SelectAPDU = [ 0x00, 0xA4, 0x04, 0x00, 0x10, 0xD1, 0x58, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00 ]
ReadProfileAPDU = [ 0x00, 0xca, 0x11, 0x00, 0x02, 0x00, 0x00 ]
# get all the available readers
r = readers()
print "Available readers:", r
reader = r[0]
print "Using:", reader
connection = reader.createConnection()
connection.connect()
data, sw1, sw2 = connection.transmit(SelectAPDU)
print "Select Applet: %02X %02X" % (sw1, sw2)
data, sw1, sw2 = connection.transmit(ReadProfileAPDU)
#print data
print "Command: %02X %02X" % (sw1, sw2)
print 'Card Number : %s' % ''.join(chr(i) for i in data[0:12])
print 'Name : %s' % ''.join(chr(i) for i in data[12:18])
print 'ID Number : %s' % ''.join(chr(i) for i in data[32:42])
print 'Birthday : %s' % ''.join(chr(i) for i in data[43:49])
print 'Sex : %s' % ''.join(chr(i) for i in data[49:50])
print 'Card Date : %s' % ''.join(chr(i) for i in data[51:57])
....1....
$html = file_get_contents($url);
$tidy = new tidy();
$conf = array(
'output-xhtml'=>true,
'drop-empty-paras'=>FALSE,
'join-classes'=>TRUE,
'show-body-only'=>TRUE,
'output-encoding' => 'raw',
);
$html = $tidy->repairString($html,$conf,'utf8');
$dom = new DOMDocument;
@$dom->loadHTML('' . $html);
foreach($dom->getElementsByTagName('table') as $table)
{
if ( ! $table->hasAttribute('class'))
{
continue;
}
$class = explode(' ', $table->getAttribute('class'));
if ( in_array('baseTB', $class) || in_array('listTB', $class) )
{
$rows = $table->getElementsByTagName("tr");
foreach ($rows as $row) {
foreach($row->getElementsByTagName('a') as $a)
{
if($a->nodeValue)
{
$items[] = array(
'name' => $a->nodeValue,
'href' => $a->getAttribute('href')
);
}
}
}
//print_r($items);
//echo "
";
}
}
return $items;
$item = "ABC";
${"p_item{$item}"} = "value of this var";
print $p_itemABC;
無法新建圖表生成器
Error code: 00002711 Unable to load file --*.IMP
Start -> Run -> regsvr32 /u quartz.dll2. 接著重新註冊 quartz.dll 函式庫
Start -> Run -> regsvr32 quartz.dll* 如果 regsvr32 /u quartz.dll 時提示
LoadLibrary("quartz.dll") 失敗 - 找不到指定的模組則下載 quartz.dll 後放入 C:\WINDOWS\system32 資料夾再重新執行步驟