Skip to content

Instantly share code, notes, and snippets.

<!-- css -->
<link href="css/bootstrap.css" rel="stylesheet" type="text/css">
<link href="css/bootstrap-responsive.css" rel="stylesheet" type="text/css">
<!-- js -->
<script src="js/bootstrap.min.js"></script>
@marxwang
marxwang / 【bootstrap】-2.2.1-usage.html
Last active December 20, 2015 20:39
try one of bootstrap icons
<span class="icon-black icon-ok"></span>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/bootstrap-glyphicons.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/docs.css" rel="stylesheet">
<span class="glyphicon glyphicon-ok"></span>
:: 启动后需要保留窗口, 关闭窗口则结束进程
aria2c --conf-path=aria2.conf -D
@marxwang
marxwang / fixbash-script.md
Last active August 29, 2015 14:07
fixbash-手動編譯指令碼

###以下腳本使用root 權限執行,在家目錄下手動編譯 bash 4.3.30

su root
cd ~/
mkdir -p src/bash
cd src/bash
wget https://ftp.gnu.org/gnu/bash/bash-4.3.tar.gz
for i in $(seq -f "%03g" 1 30); do wget     https://ftp.gnu.org/gnu/bash/bash-4.3-patches/bash43-$i; done
tar zxvf bash-4.3.tar.gz
cd /tmp; mkdir openssl; cd openssl;
wget http://www.openssl.org/source/openssl-0.9.8za.tar.gz
tar -zxf openssl-0.9.8za.tar.gz
cd openssl-0.9.8za
./config
make
make install
cd /tmp; mkdir openssl; cd openssl;
wget http://www.openssl.org/source/openssl-0.9.8zc.tar.gz
tar -zxf openssl-0.9.8zc.tar.gz
cd openssl-0.9.8zc
./config
make
make install
cd /tmp; mkdir openssl; cd openssl;
wget https://www.openssl.org/source/openssl-1.0.1j.tar.gz
tar -zxf openssl-1.0.1j.tar.gz
cd openssl-1.0.1j
./config
make
make install
cd /tmp; mkdir openssl; cd openssl;
wget https://www.openssl.org/source/openssl-1.0.0o.tar.gz
tar -zxf openssl-1.0.0o.tar.gz
cd openssl-1.0.0o
./config
make
make install