This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ "$EUID" -ne 0 ] | |
then echo "Please run as root" | |
exit | |
fi | |
apt-get install pkg-config libmagickwand-dev -y | |
cd /tmp | |
wget https://pecl.php.net/get/imagick-3.4.3.tgz | |
tar xvzf imagick-3.4.3.tgz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Search "AcapelaTTS" (40 hits in 1 file) | |
C:\Users\changjingpei\Desktop\英语版奥飞\打包\新建文本文档.txt (40 hits) | |
Line 1: 03-01 10:04:17.313 D/Turing-AcapelaTTS( 4617): ttsevents: Text 0 processed | |
Line 2: 03-01 10:04:17.326 D/Turing-AcapelaTTS( 4617): ttsevents: Audio start for text 0 | |
Line 3: 03-01 10:04:17.327 D/Turing-AcapelaTTS( 4617): ttsevents: Audio stop for text 0 - totalsamples : 0 | |
Line 56: 03-01 10:04:33.916 D/Turing-AcapelaTTS( 4617): startTTS: ttsText---------> Right. | |
Line 57: 03-01 10:04:34.074 D/Turing-AcapelaTTS( 4617): ttsevents: Text 0 start processing | |
Line 58: 03-01 10:04:34.079 D/Turing-AcapelaTTS( 4617): ttsevents: Text 0 processed | |
Line 63: 03-01 10:04:34.135 D/Turing-AcapelaTTS( 4617): ttsevents: Audio start for text 0 | |
Line 64: 03-01 10:04:34.138 D/Turing-AcapelaTTS( 4617): ttsevents: Audio stop for text 0 - totalsamples : 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sina.com | |
sina.cn | |
126.com | |
163.com | |
yeah.net | |
vip.sina.com | |
vip.126.com | |
vip.21cn.com | |
qq.com | |
foxmail.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// before | |
this.movieName = root.loaderInfo.parameters.movieName; | |
// after | |
this.movieName = root.loaderInfo.parameters.movieName.replace(/[^\w\.-]/g, ''); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
class Xssdemo extends CI_Controller { | |
public function index() { | |
$data['xss'] = $this->security->xss_clean('"onfocus="alert(/xss/)"'); | |
$this->load->view('xssdemo', $data); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
王 | |
江 | |
周 | |
胡 | |
刘 | |
李 | |
吴 | |
毛 | |
温 | |
习 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* | |
* query_cache | |
* | |
* 查询缓存,返回数据集。如果缓存不存在或系统不支持缓存,则直接从model中提取。 | |
* | |
* | |
* @param string $key Key of the cache item | |
* @param string $model Model name from which we retrieve data | |
* @param string $method Method name of such model |