请注意,KouKou并不支持低于IE8的浏览器,为了获得最佳效果,请下载最新的浏览器,推荐下载 Chrome浏览器

星际争霸战术篇 —- TVZ

10-25 4,026 views

1.5bb 速一攻机枪开局 特点:兵力足 , 有一攻的机枪对抗飞龙, 流程: 正常单BB开2矿, 24~26人口下气矿BE,BE没造好之前下ba ,三农民采购100气停气,升级...
阅读全文 0

批量更新Git项目脚本

9-26 3,354 views

在平时的工作中,遇到一些优秀的开源项目,如volley、picasso、okhttp等,如果想阅读它的源代码,我通常都会clone项目到本地的GitHub文件夹,这样大神们后面...
阅读全文 0

php imagick 解决 IOS图片上传翻转问题

9-14 18,578 views

//参数:php imagick对象 public function autorotate(Imagick $image) { switch ($image->getImageOrientation()) { case Imagick::ORIENTATION_...
阅读全文 21

阿里云Linux挂载云盘

8-28 4,326 views

1.先用fdisk -l 查看分区 2.看到有一个536.9GB的硬盘未分区,/dev/vdb,然后执行fdisk /dev/vdb ,依次n p 1 ,2次回车,wq 回车。完成   3.再次执行fdis...
阅读全文 0

图片轮播插件 jquery-galleryview

8-17 3,001 views

例: 下载:js 使用方法: <link type="text/css" rel="stylesheet" href="galleryview.css" /> <script type="text/javascript" src="js/jquery-...
阅读全文 0

好用的网页图片浏览插件photoswipe(支持PC、手机,触摸滑动等等)

8-17 3,008 views

官网地址: http://photoswipe.com/ 下载地址: https://github.com/dimsemenov/PhotoSwipe 第一步:引入JS CSS <!-- Core CSS file --> <link re...
阅读全文 0

使用CSS 让图片上下左右居中。

8-16 2,908 views

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>测试</title> <style type="...
阅读全文 0

简单的php生成静态html代码

8-09 3,249 views

<?php //参数一 要读取的php文件, 参数二 生成目标的静态文件路径 creatStaticHtml('test3.php','test3.html'); function creatStaticHtml(...
阅读全文 0

使用ffmpeg下载m3u8

7-18 11,341 views

ffmpeg -i 地址 -strict -2 outfile 使用yum安装ffmpeg .参考:https://rpmfusion.org/Configuration # Fedora 22 and later: $ sudo dnf install https:/...
阅读全文 0

python 执行cmd命令并获取pid

7-06 7,583 views

process = subprocess.Popen('cmd命令') pid = process.pid print(pid)
阅读全文 0