replace http with https
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
title: "筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入"
|
||||
date: 2018-11-05T14:16:54+08:00
|
||||
|
||||
featuredImage: "http://i.imgur.com/jcDQmI1.png"
|
||||
featuredImage: "https://i.imgur.com/jcDQmI1.png"
|
||||
noSummary: false
|
||||
categories: ['筆記']
|
||||
tags: ['筆記','synology','NAS','SSH']
|
||||
@@ -108,7 +108,7 @@ synoservicectl --restart sshd
|
||||
但是實際上這個指令只會把你踢出 SSH session ....( WTF!!! )
|
||||
|
||||
所以還是要去NAS的管理界面,去關閉再打開SSH (有點蠢..)
|
||||

|
||||

|
||||
|
||||
然後就可以測試用Publickey 來登入NAS了
|
||||
|
||||
|
||||
@@ -8,5 +8,5 @@ categories: [PS]
|
||||
tags: ['ps','短今']
|
||||
author: "Eric Chang"
|
||||
---
|
||||

|
||||

|
||||

|
||||

|
||||
|
||||
@@ -97,7 +97,7 @@ b8d74048eba1 mysql:5.7.21 "docker-entrypoint.s…" 4 ho
|
||||
```
|
||||
應該可以順利跑起來
|
||||
|
||||

|
||||

|
||||
|
||||
沒啥難度,簡單作一下紀錄
|
||||
|
||||
|
||||
86
content/post/change-preferred-language-in-firefox.md
Normal file
86
content/post/change-preferred-language-in-firefox.md
Normal file
@@ -0,0 +1,86 @@
|
||||
---
|
||||
title: "[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase"
|
||||
date: 2018-11-15T11:06:28+08:00
|
||||
|
||||
noSummary: false
|
||||
featuredImage: "https://h.cowbay.org/images/post-default-9.jpg"
|
||||
categories: ['筆記']
|
||||
tags: ['筆記','firefox','metabase']
|
||||
author: "Eric Chang"
|
||||
---
|
||||
|
||||
最近在測試metabase,記得幾個月前就有測試過
|
||||
|
||||
但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的
|
||||
|
||||
所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)
|
||||
|
||||
不過呢,很討厭的是,一進去就發現語系採用的是簡體中文
|
||||
|
||||
|
||||
<!--more-->
|
||||
|
||||
來看看這張圖
|
||||

|
||||
|
||||
WHAT THE FUCK !!!
|
||||
|
||||
這是哪一國的翻譯??我相信對岸人才濟濟,絕對不至於翻譯出這種結果來..
|
||||
|
||||
想當然爾,我認為這個問題可以暫時不管,反正進入系統後,再去使用者界面設定就好
|
||||
|
||||
BUT .. (對,又是這個他X的BUT)
|
||||
|
||||
使用者設置裡面根本沒什麼可以改!
|
||||
|
||||

|
||||
|
||||
對,沒錯,就只有這樣!! 請容許我再罵一次 WHAT THE FUCK !!!
|
||||
|
||||
* * *
|
||||
|
||||
好吧,罵完就算了,還是要想辦法解決,於是切到管理界面,的確是有語言設置
|
||||
|
||||
然後,我要再罵第三次 WHAT THE FUCK !!!
|
||||
|
||||

|
||||
|
||||
```
|
||||
The default language for this Metabase instance.This only applies to emails, Pulses, etc. Users' browsers will specify the language used in the user interface.
|
||||
```
|
||||
|
||||
簡單說,這邊的語言設定「不影響」使用者界面,界面使用的語系,由各個瀏覽器決定!
|
||||
|
||||
好,那我去修改firefox 的語言看看
|
||||
|
||||
開啟 firefox ,點選右上角的三橫槓,找到語言選項
|
||||
|
||||
我一開始改成這樣
|
||||
|
||||

|
||||
|
||||
結果不管重開幾次,開啟metabase還是那個殘體中文字
|
||||
|
||||
後來想說,啊,會不會是「英語」「美語」的差異?
|
||||
|
||||
所以我把順序改成
|
||||
|
||||

|
||||
|
||||
然後再開 metabase ,結果就如我所願的,改成英文界面了
|
||||
|
||||

|
||||
|
||||
真的是比殘體中文好太多了..
|
||||
|
||||
另外,關於繁體中文的部份,也到metabase的官方論壇去留言了
|
||||
|
||||
就看看官方要不要處理這個問題...
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
37
content/post/copy_role_in_pgsql.md
Normal file
37
content/post/copy_role_in_pgsql.md
Normal file
@@ -0,0 +1,37 @@
|
||||
---
|
||||
title: "PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者"
|
||||
date: 2018-11-12T09:48:12+08:00
|
||||
|
||||
noSummary: false
|
||||
featuredImage: "https://h.cowbay.org/images/post-default-7.jpg"
|
||||
categories: ['筆記']
|
||||
tags: ['psql','筆記']
|
||||
author: "Eric Chang"
|
||||
---
|
||||
|
||||
因為工作上的需求,有個資料庫需要開放給不同team的人去存取
|
||||
|
||||
雖然都是在同一台機器上的同一個資料庫
|
||||
|
||||
但是希望能夠不同team的人用不同的資料庫使用者
|
||||
|
||||
這樣萬一出事,會比較好抓兇手??
|
||||
|
||||
<!--more-->
|
||||
|
||||
總之呢,這個需求一直反覆出現
|
||||
|
||||
每次開發不同的AP,就要求一個不同的代號,實在有點煩
|
||||
|
||||
之前都是用pgadmin來處理,現在就改用psql來弄
|
||||
|
||||
其實也很簡單
|
||||
|
||||
```
|
||||
CREATE ROLE b LOGIN;
|
||||
GRANT a TO b;
|
||||
```
|
||||
|
||||
可以帶入script ,用script 或者用ansible去跑就好了
|
||||
|
||||
省得每次都要在那邊手動改來改去..
|
||||
@@ -67,7 +67,7 @@ author: "Eric Chang"
|
||||
不過至少需要看到的目錄總使用量(左上角),還有各個子目錄的用量都可以清楚的看到
|
||||
如果能夠有縮排就更好了!
|
||||
|
||||

|
||||

|
||||
|
||||
|
||||
|
||||
|
||||
@@ -115,6 +115,14 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -145,7 +153,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<meta itemprop="description" content="筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入">
|
||||
<meta property="og:description" content="筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="http://i.imgur.com/jcDQmI1.png">
|
||||
<meta property="og:image" content="https://i.imgur.com/jcDQmI1.png">
|
||||
<meta property="og:url" content="https://h.cowbay.org/articles/enable-synology-public-ssh/">
|
||||
<meta property="og:site_name" content="MC部落">
|
||||
<meta property="og:type" content="article">
|
||||
@@ -97,7 +97,7 @@
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/articles/enable-synology-public-ssh/">
|
||||
<img src="http://i.imgur.com/jcDQmI1.png" alt="">
|
||||
<img src="https://i.imgur.com/jcDQmI1.png" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
@@ -225,7 +225,7 @@ chmod 0600 /volume1/eric/.ssh/authorized_keys
|
||||
但是實際上這個指令只會把你踢出 SSH session ….( WTF!!! )</p>
|
||||
|
||||
<p>所以還是要去NAS的管理界面,去關閉再打開SSH (有點蠢..)
|
||||
<img src="http://i.imgur.com/jcDQmI1.png" alt="Synology WEB UI" /></p>
|
||||
<img src="https://i.imgur.com/jcDQmI1.png" alt="Synology WEB UI" /></p>
|
||||
|
||||
<p>然後就可以測試用Publickey 來登入NAS了</p>
|
||||
|
||||
@@ -302,6 +302,14 @@ admin@storage:~$
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -332,7 +340,7 @@ admin@storage:~$
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -100,7 +100,7 @@
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/articles/enable-synology-public-ssh/">
|
||||
<img src="http://i.imgur.com/jcDQmI1.png" alt="">
|
||||
<img src="https://i.imgur.com/jcDQmI1.png" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
@@ -203,6 +203,14 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -233,7 +241,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -90,6 +90,170 @@
|
||||
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/change-preferred-language-in-firefox/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/post/change-preferred-language-in-firefox/">
|
||||
<img src="/images/post-default-9.jpg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2018-11-15</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>最近在測試metabase,記得幾個月前就有測試過</p>
|
||||
|
||||
<p>但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的</p>
|
||||
|
||||
<p>所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)</p>
|
||||
|
||||
<p>不過呢,很討厭的是,一進去就發現語系採用的是簡體中文</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
|
||||
<a href="/post/change-preferred-language-in-firefox/" class="more">Continue reading</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
<a href="/tags/firefox">firefox</a>
|
||||
|
||||
<a href="/tags/metabase">metabase</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/copy_role_in_pgsql/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/post/copy_role_in_pgsql/">
|
||||
<img src="/images/post-default-7.jpg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2018-11-12</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>因為工作上的需求,有個資料庫需要開放給不同team的人去存取</p>
|
||||
|
||||
<p>雖然都是在同一台機器上的同一個資料庫</p>
|
||||
|
||||
<p>但是希望能夠不同team的人用不同的資料庫使用者</p>
|
||||
|
||||
<p>這樣萬一出事,會比較好抓兇手??</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
|
||||
<a href="/post/copy_role_in_pgsql/" class="more">Continue reading</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/psql">psql</a>
|
||||
|
||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/weird-client-server-connection/">
|
||||
@@ -356,7 +520,7 @@
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/articles/enable-synology-public-ssh/">
|
||||
<img src="http://i.imgur.com/jcDQmI1.png" alt="">
|
||||
<img src="https://i.imgur.com/jcDQmI1.png" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
@@ -527,6 +691,14 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -557,7 +729,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -5,11 +5,45 @@
|
||||
<link>https://h.cowbay.org/author/eric-chang/</link>
|
||||
<description>Recent content in Eric Chang on MC部落</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<lastBuildDate>Thu, 08 Nov 2018 18:01:23 +0800</lastBuildDate>
|
||||
<lastBuildDate>Thu, 15 Nov 2018 11:06:28 +0800</lastBuildDate>
|
||||
|
||||
<atom:link href="https://h.cowbay.org/author/eric-chang/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<item>
|
||||
<title>[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</title>
|
||||
<link>https://h.cowbay.org/post/change-preferred-language-in-firefox/</link>
|
||||
<pubDate>Thu, 15 Nov 2018 11:06:28 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/post/change-preferred-language-in-firefox/</guid>
|
||||
<description><p>最近在測試metabase,記得幾個月前就有測試過</p>
|
||||
|
||||
<p>但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的</p>
|
||||
|
||||
<p>所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)</p>
|
||||
|
||||
<p>不過呢,很討厭的是,一進去就發現語系採用的是簡體中文</p>
|
||||
|
||||
<p></p></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</title>
|
||||
<link>https://h.cowbay.org/post/copy_role_in_pgsql/</link>
|
||||
<pubDate>Mon, 12 Nov 2018 09:48:12 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/post/copy_role_in_pgsql/</guid>
|
||||
<description><p>因為工作上的需求,有個資料庫需要開放給不同team的人去存取</p>
|
||||
|
||||
<p>雖然都是在同一台機器上的同一個資料庫</p>
|
||||
|
||||
<p>但是希望能夠不同team的人用不同的資料庫使用者</p>
|
||||
|
||||
<p>這樣萬一出事,會比較好抓兇手??</p>
|
||||
|
||||
<p></p></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</title>
|
||||
<link>https://h.cowbay.org/post/weird-client-server-connection/</link>
|
||||
|
||||
@@ -101,7 +101,7 @@
|
||||
<hr>
|
||||
<ul id="all-categories">
|
||||
|
||||
<li><a href="/author/eric-chang">Eric chang (5)</a></li>
|
||||
<li><a href="/author/eric-chang">Eric chang (7)</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
@@ -120,6 +120,14 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -150,7 +158,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<item>
|
||||
<title>Eric Chang</title>
|
||||
<link>https://h.cowbay.org/author/eric-chang/</link>
|
||||
<pubDate>Thu, 08 Nov 2018 18:01:23 +0800</pubDate>
|
||||
<pubDate>Thu, 15 Nov 2018 11:06:28 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/author/eric-chang/</guid>
|
||||
<description></description>
|
||||
|
||||
@@ -103,7 +103,7 @@
|
||||
|
||||
<li><a href="/categories/ps">Ps (1)</a></li>
|
||||
|
||||
<li><a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a></li>
|
||||
<li><a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
@@ -122,6 +122,14 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -152,7 +160,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
<item>
|
||||
<title>筆記</title>
|
||||
<link>https://h.cowbay.org/categories/%E7%AD%86%E8%A8%98/</link>
|
||||
<pubDate>Thu, 08 Nov 2018 18:01:23 +0800</pubDate>
|
||||
<pubDate>Thu, 15 Nov 2018 11:06:28 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/categories/%E7%AD%86%E8%A8%98/</guid>
|
||||
<description></description>
|
||||
|
||||
@@ -179,6 +179,14 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -209,7 +217,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -90,6 +90,170 @@
|
||||
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/change-preferred-language-in-firefox/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/post/change-preferred-language-in-firefox/">
|
||||
<img src="/images/post-default-9.jpg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2018-11-15</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>最近在測試metabase,記得幾個月前就有測試過</p>
|
||||
|
||||
<p>但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的</p>
|
||||
|
||||
<p>所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)</p>
|
||||
|
||||
<p>不過呢,很討厭的是,一進去就發現語系採用的是簡體中文</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
|
||||
<a href="/post/change-preferred-language-in-firefox/" class="more">Continue reading</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
<a href="/tags/firefox">firefox</a>
|
||||
|
||||
<a href="/tags/metabase">metabase</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/copy_role_in_pgsql/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/post/copy_role_in_pgsql/">
|
||||
<img src="/images/post-default-7.jpg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2018-11-12</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>因為工作上的需求,有個資料庫需要開放給不同team的人去存取</p>
|
||||
|
||||
<p>雖然都是在同一台機器上的同一個資料庫</p>
|
||||
|
||||
<p>但是希望能夠不同team的人用不同的資料庫使用者</p>
|
||||
|
||||
<p>這樣萬一出事,會比較好抓兇手??</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
|
||||
<a href="/post/copy_role_in_pgsql/" class="more">Continue reading</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/psql">psql</a>
|
||||
|
||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/weird-client-server-connection/">
|
||||
@@ -356,7 +520,7 @@
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/articles/enable-synology-public-ssh/">
|
||||
<img src="http://i.imgur.com/jcDQmI1.png" alt="">
|
||||
<img src="https://i.imgur.com/jcDQmI1.png" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
@@ -459,6 +623,14 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -489,7 +661,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -5,11 +5,45 @@
|
||||
<link>https://h.cowbay.org/categories/%E7%AD%86%E8%A8%98/</link>
|
||||
<description>Recent content in 筆記 on MC部落</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<lastBuildDate>Thu, 08 Nov 2018 18:01:23 +0800</lastBuildDate>
|
||||
<lastBuildDate>Thu, 15 Nov 2018 11:06:28 +0800</lastBuildDate>
|
||||
|
||||
<atom:link href="https://h.cowbay.org/categories/%E7%AD%86%E8%A8%98/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<item>
|
||||
<title>[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</title>
|
||||
<link>https://h.cowbay.org/post/change-preferred-language-in-firefox/</link>
|
||||
<pubDate>Thu, 15 Nov 2018 11:06:28 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/post/change-preferred-language-in-firefox/</guid>
|
||||
<description><p>最近在測試metabase,記得幾個月前就有測試過</p>
|
||||
|
||||
<p>但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的</p>
|
||||
|
||||
<p>所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)</p>
|
||||
|
||||
<p>不過呢,很討厭的是,一進去就發現語系採用的是簡體中文</p>
|
||||
|
||||
<p></p></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</title>
|
||||
<link>https://h.cowbay.org/post/copy_role_in_pgsql/</link>
|
||||
<pubDate>Mon, 12 Nov 2018 09:48:12 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/post/copy_role_in_pgsql/</guid>
|
||||
<description><p>因為工作上的需求,有個資料庫需要開放給不同team的人去存取</p>
|
||||
|
||||
<p>雖然都是在同一台機器上的同一個資料庫</p>
|
||||
|
||||
<p>但是希望能夠不同team的人用不同的資料庫使用者</p>
|
||||
|
||||
<p>這樣萬一出事,會比較好抓兇手??</p>
|
||||
|
||||
<p></p></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</title>
|
||||
<link>https://h.cowbay.org/post/weird-client-server-connection/</link>
|
||||
|
||||
@@ -2,6 +2,16 @@
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||
|
||||
<url>
|
||||
<loc>https://h.cowbay.org/post/change-preferred-language-in-firefox/</loc>
|
||||
<lastmod>2018-11-15T11:06:28+08:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://h.cowbay.org/post/copy_role_in_pgsql/</loc>
|
||||
<lastmod>2018-11-12T09:48:12+08:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://h.cowbay.org/post/weird-client-server-connection/</loc>
|
||||
<lastmod>2018-11-08T18:01:23+08:00</lastmod>
|
||||
@@ -83,7 +93,13 @@
|
||||
|
||||
<url>
|
||||
<loc>https://h.cowbay.org/author/eric-chang/</loc>
|
||||
<lastmod>2018-11-08T18:01:23+08:00</lastmod>
|
||||
<lastmod>2018-11-15T11:06:28+08:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://h.cowbay.org/tags/firefox/</loc>
|
||||
<lastmod>2018-11-15T11:06:28+08:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
@@ -101,7 +117,7 @@
|
||||
|
||||
<url>
|
||||
<loc>https://h.cowbay.org/</loc>
|
||||
<lastmod>2018-11-08T18:01:23+08:00</lastmod>
|
||||
<lastmod>2018-11-15T11:06:28+08:00</lastmod>
|
||||
<priority>0</priority>
|
||||
<xhtml:link
|
||||
rel="alternate"
|
||||
@@ -115,6 +131,12 @@
|
||||
/>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://h.cowbay.org/tags/metabase/</loc>
|
||||
<lastmod>2018-11-15T11:06:28+08:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://h.cowbay.org/tags/nas/</loc>
|
||||
<lastmod>2018-11-05T14:16:54+08:00</lastmod>
|
||||
@@ -123,7 +145,7 @@
|
||||
|
||||
<url>
|
||||
<loc>https://h.cowbay.org/post/</loc>
|
||||
<lastmod>2018-11-08T18:01:23+08:00</lastmod>
|
||||
<lastmod>2018-11-15T11:06:28+08:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
@@ -139,6 +161,12 @@
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://h.cowbay.org/tags/psql/</loc>
|
||||
<lastmod>2018-11-12T09:48:12+08:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://h.cowbay.org/tags/ssh/</loc>
|
||||
<lastmod>2018-11-05T14:16:54+08:00</lastmod>
|
||||
@@ -181,13 +209,13 @@
|
||||
|
||||
<url>
|
||||
<loc>https://h.cowbay.org/tags/%E7%AD%86%E8%A8%98/</loc>
|
||||
<lastmod>2018-11-08T18:01:23+08:00</lastmod>
|
||||
<lastmod>2018-11-15T11:06:28+08:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://h.cowbay.org/categories/%E7%AD%86%E8%A8%98/</loc>
|
||||
<lastmod>2018-11-08T18:01:23+08:00</lastmod>
|
||||
<lastmod>2018-11-15T11:06:28+08:00</lastmod>
|
||||
<priority>0</priority>
|
||||
</url>
|
||||
|
||||
|
||||
@@ -179,6 +179,14 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -209,7 +217,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -191,6 +191,14 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -221,7 +229,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="google-site-verification" content="YsXOJDLXskqo4YQatC28CGQ-zYDajnZvFk1-ehzTIps" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Eric Chang">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
@@ -96,6 +95,174 @@
|
||||
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/change-preferred-language-in-firefox/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/post/change-preferred-language-in-firefox/">
|
||||
<img src="/images/post-default-9.jpg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2018-11-15</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>最近在測試metabase,記得幾個月前就有測試過</p>
|
||||
|
||||
<p>但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的</p>
|
||||
|
||||
<p>所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)</p>
|
||||
|
||||
<p>不過呢,很討厭的是,一進去就發現語系採用的是簡體中文</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
|
||||
<a href="/post/change-preferred-language-in-firefox/" class="more">Continue reading</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
<a href="/tags/firefox">firefox</a>
|
||||
|
||||
<a href="/tags/metabase">metabase</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/copy_role_in_pgsql/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/post/copy_role_in_pgsql/">
|
||||
<img src="/images/post-default-7.jpg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2018-11-12</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>因為工作上的需求,有個資料庫需要開放給不同team的人去存取</p>
|
||||
|
||||
<p>雖然都是在同一台機器上的同一個資料庫</p>
|
||||
|
||||
<p>但是希望能夠不同team的人用不同的資料庫使用者</p>
|
||||
|
||||
<p>這樣萬一出事,會比較好抓兇手??</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
|
||||
<a href="/post/copy_role_in_pgsql/" class="more">Continue reading</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/psql">psql</a>
|
||||
|
||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/weird-client-server-connection/">
|
||||
@@ -368,7 +535,7 @@
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/articles/enable-synology-public-ssh/">
|
||||
<img src="http://i.imgur.com/jcDQmI1.png" alt="">
|
||||
<img src="https://i.imgur.com/jcDQmI1.png" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
@@ -542,6 +709,14 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -572,7 +747,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -41,6 +41,13 @@
|
||||
"type": "tag",
|
||||
"url": "https://h.cowbay.org/tags/du"
|
||||
},
|
||||
{
|
||||
"iconClass": "fa-tag",
|
||||
"objectID": "https://h.cowbay.org/tags/firefox",
|
||||
"title": "Firefox",
|
||||
"type": "tag",
|
||||
"url": "https://h.cowbay.org/tags/firefox"
|
||||
},
|
||||
{
|
||||
"iconClass": "fa-tag",
|
||||
"objectID": "https://h.cowbay.org/tags/linux",
|
||||
@@ -48,6 +55,13 @@
|
||||
"type": "tag",
|
||||
"url": "https://h.cowbay.org/tags/linux"
|
||||
},
|
||||
{
|
||||
"iconClass": "fa-tag",
|
||||
"objectID": "https://h.cowbay.org/tags/metabase",
|
||||
"title": "Metabase",
|
||||
"type": "tag",
|
||||
"url": "https://h.cowbay.org/tags/metabase"
|
||||
},
|
||||
{
|
||||
"iconClass": "fa-tag",
|
||||
"objectID": "https://h.cowbay.org/tags/nas",
|
||||
@@ -62,6 +76,13 @@
|
||||
"type": "tag",
|
||||
"url": "https://h.cowbay.org/tags/ps"
|
||||
},
|
||||
{
|
||||
"iconClass": "fa-tag",
|
||||
"objectID": "https://h.cowbay.org/tags/psql",
|
||||
"title": "Psql",
|
||||
"type": "tag",
|
||||
"url": "https://h.cowbay.org/tags/psql"
|
||||
},
|
||||
{
|
||||
"iconClass": "fa-tag",
|
||||
"objectID": "https://h.cowbay.org/tags/ssh",
|
||||
|
||||
@@ -5,11 +5,45 @@
|
||||
<link>https://h.cowbay.org/</link>
|
||||
<description>Recent content on MC部落</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<lastBuildDate>Thu, 08 Nov 2018 18:01:23 +0800</lastBuildDate>
|
||||
<lastBuildDate>Thu, 15 Nov 2018 11:06:28 +0800</lastBuildDate>
|
||||
|
||||
<atom:link href="https://h.cowbay.org/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<item>
|
||||
<title>[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</title>
|
||||
<link>https://h.cowbay.org/post/change-preferred-language-in-firefox/</link>
|
||||
<pubDate>Thu, 15 Nov 2018 11:06:28 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/post/change-preferred-language-in-firefox/</guid>
|
||||
<description><p>最近在測試metabase,記得幾個月前就有測試過</p>
|
||||
|
||||
<p>但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的</p>
|
||||
|
||||
<p>所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)</p>
|
||||
|
||||
<p>不過呢,很討厭的是,一進去就發現語系採用的是簡體中文</p>
|
||||
|
||||
<p></p></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</title>
|
||||
<link>https://h.cowbay.org/post/copy_role_in_pgsql/</link>
|
||||
<pubDate>Mon, 12 Nov 2018 09:48:12 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/post/copy_role_in_pgsql/</guid>
|
||||
<description><p>因為工作上的需求,有個資料庫需要開放給不同team的人去存取</p>
|
||||
|
||||
<p>雖然都是在同一台機器上的同一個資料庫</p>
|
||||
|
||||
<p>但是希望能夠不同team的人用不同的資料庫使用者</p>
|
||||
|
||||
<p>這樣萬一出事,會比較好抓兇手??</p>
|
||||
|
||||
<p></p></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</title>
|
||||
<link>https://h.cowbay.org/post/weird-client-server-connection/</link>
|
||||
|
||||
@@ -284,6 +284,14 @@ b8d74048eba1 mysql:5.7.21 "docker-entrypoint.s…&qu
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -314,7 +322,7 @@ b8d74048eba1 mysql:5.7.21 "docker-entrypoint.s…&qu
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
445
public/post/change-preferred-language-in-firefox/index.html
Normal file
445
public/post/change-preferred-language-in-firefox/index.html
Normal file
@@ -0,0 +1,445 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Eric Chang">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase | MC部落</title>
|
||||
<meta name="description" content="[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase">
|
||||
<meta itemprop="description" content="[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase">
|
||||
<meta property="og:description" content="[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://h.cowbay.org/images/post-default-9.jpg">
|
||||
<meta property="og:url" content="https://h.cowbay.org/post/change-preferred-language-in-firefox/">
|
||||
<meta property="og:site_name" content="MC部落">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav class="permanentTopNav">
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/e4eb1f8e016ffb73e9889f87d16e15f0?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">MC部落</a></h3>
|
||||
|
||||
<span class="subtitle">這是MC的HUGO部落格,採用bilberry theme</span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="toggler permanentTopNav">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/post/change-preferred-language-in-firefox/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/post/change-preferred-language-in-firefox/">
|
||||
<img src="/images/post-default-9.jpg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2018-11-15</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>最近在測試metabase,記得幾個月前就有測試過</p>
|
||||
|
||||
<p>但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的</p>
|
||||
|
||||
<p>所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)</p>
|
||||
|
||||
<p>不過呢,很討厭的是,一進去就發現語系採用的是簡體中文</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
<p>來看看這張圖
|
||||
<img src="http://i.imgur.com/oK6WmtJ.png" alt="metabase的簡體中文界面" /></p>
|
||||
|
||||
<p>WHAT THE FUCK !!!</p>
|
||||
|
||||
<p>這是哪一國的翻譯??我相信對岸人才濟濟,絕對不至於翻譯出這種結果來..</p>
|
||||
|
||||
<p>想當然爾,我認為這個問題可以暫時不管,反正進入系統後,再去使用者界面設定就好</p>
|
||||
|
||||
<p>BUT .. (對,又是這個他X的BUT)</p>
|
||||
|
||||
<p>使用者設置裡面根本沒什麼可以改!</p>
|
||||
|
||||
<p><img src="http://i.imgur.com/DBRE5J6.png" alt="metabase超陽春的使用者設置" /></p>
|
||||
|
||||
<p>對,沒錯,就只有這樣!! 請容許我再罵一次 WHAT THE FUCK !!!</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p>好吧,罵完就算了,還是要想辦法解決,於是切到管理界面,的確是有語言設置</p>
|
||||
|
||||
<p>然後,我要再罵第三次 WHAT THE FUCK !!!</p>
|
||||
|
||||
<p><img src="http://i.imgur.com/HCSf8Ba.png" alt="metabase管理界面" /></p>
|
||||
|
||||
<pre><code>The default language for this Metabase instance.This only applies to emails, Pulses, etc. Users' browsers will specify the language used in the user interface.
|
||||
</code></pre>
|
||||
|
||||
<p>簡單說,這邊的語言設定「不影響」使用者界面,界面使用的語系,由各個瀏覽器決定!</p>
|
||||
|
||||
<p>好,那我去修改firefox 的語言看看</p>
|
||||
|
||||
<p>開啟 firefox ,點選右上角的三橫槓,找到語言選項</p>
|
||||
|
||||
<p>我一開始改成這樣</p>
|
||||
|
||||
<p><img src="http://i.imgur.com/630BBJF.png" alt="firefox settings" /></p>
|
||||
|
||||
<p>結果不管重開幾次,開啟metabase還是那個殘體中文字</p>
|
||||
|
||||
<p>後來想說,啊,會不會是「英語」「美語」的差異?</p>
|
||||
|
||||
<p>所以我把順序改成</p>
|
||||
|
||||
<p><img src="http://i.imgur.com/pfdSWaC.png" alt="firefox language settings for metabase" /></p>
|
||||
|
||||
<p>然後再開 metabase ,結果就如我所願的,改成英文界面了</p>
|
||||
|
||||
<p><img src="http://i.imgur.com/rc6SLSC.png" alt="metabase in English" /></p>
|
||||
|
||||
<p>真的是比殘體中文好太多了..</p>
|
||||
|
||||
<p>另外,關於繁體中文的部份,也到metabase的官方論壇去留言了</p>
|
||||
|
||||
<p>就看看官方要不要處理這個問題…</p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
<a href="/tags/firefox">firefox</a>
|
||||
|
||||
<a href="/tags/metabase">metabase</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "h-cowbay-org-1" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/nice-du-report-tool-durep/">Nice Du Report Tool Durep</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/bookstack-docker/">Bookstack Docker</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/articles/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/ps">Ps (1)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
<a href="https://www.facebook.com/mariahchang" target="_blank"><i class="fa fa-facebook-adblock-proof"></i></a>
|
||||
|
||||
|
||||
<a href="https://twitter.com/changchichung" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/changchichung" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<script type="application/javascript">
|
||||
var doNotTrack = false;
|
||||
if (!doNotTrack) {
|
||||
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
|
||||
ga('create', 'UA-128770427-1', 'auto');
|
||||
|
||||
ga('send', 'pageview');
|
||||
}
|
||||
</script>
|
||||
<script async src='https://www.google-analytics.com/analytics.js'></script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("2XL0P8XDCY", "4ef65b37b627bb886b46c34a10e63aa6");
|
||||
var index = client.initIndex("h_cowbay_org");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 10 }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
403
public/post/copy_role_in_pgsql/index.html
Normal file
403
public/post/copy_role_in_pgsql/index.html
Normal file
@@ -0,0 +1,403 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Eric Chang">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者 | MC部落</title>
|
||||
<meta name="description" content="PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者">
|
||||
<meta itemprop="description" content="PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者">
|
||||
<meta property="og:description" content="PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://h.cowbay.org/images/post-default-7.jpg">
|
||||
<meta property="og:url" content="https://h.cowbay.org/post/copy_role_in_pgsql/">
|
||||
<meta property="og:site_name" content="MC部落">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav class="permanentTopNav">
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/e4eb1f8e016ffb73e9889f87d16e15f0?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">MC部落</a></h3>
|
||||
|
||||
<span class="subtitle">這是MC的HUGO部落格,採用bilberry theme</span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="toggler permanentTopNav">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/post/copy_role_in_pgsql/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/post/copy_role_in_pgsql/">
|
||||
<img src="/images/post-default-7.jpg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2018-11-12</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>因為工作上的需求,有個資料庫需要開放給不同team的人去存取</p>
|
||||
|
||||
<p>雖然都是在同一台機器上的同一個資料庫</p>
|
||||
|
||||
<p>但是希望能夠不同team的人用不同的資料庫使用者</p>
|
||||
|
||||
<p>這樣萬一出事,會比較好抓兇手??</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
<p>總之呢,這個需求一直反覆出現</p>
|
||||
|
||||
<p>每次開發不同的AP,就要求一個不同的代號,實在有點煩</p>
|
||||
|
||||
<p>之前都是用pgadmin來處理,現在就改用psql來弄</p>
|
||||
|
||||
<p>其實也很簡單</p>
|
||||
|
||||
<pre><code>CREATE ROLE b LOGIN;
|
||||
GRANT a TO b;
|
||||
</code></pre>
|
||||
|
||||
<p>可以帶入script ,用script 或者用ansible去跑就好了</p>
|
||||
|
||||
<p>省得每次都要在那邊手動改來改去..</p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/psql">psql</a>
|
||||
|
||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "h-cowbay-org-1" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/nice-du-report-tool-durep/">Nice Du Report Tool Durep</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/bookstack-docker/">Bookstack Docker</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/articles/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/ps">Ps (1)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
<a href="https://www.facebook.com/mariahchang" target="_blank"><i class="fa fa-facebook-adblock-proof"></i></a>
|
||||
|
||||
|
||||
<a href="https://twitter.com/changchichung" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/changchichung" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<script type="application/javascript">
|
||||
var doNotTrack = false;
|
||||
if (!doNotTrack) {
|
||||
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
|
||||
ga('create', 'UA-128770427-1', 'auto');
|
||||
|
||||
ga('send', 'pageview');
|
||||
}
|
||||
</script>
|
||||
<script async src='https://www.google-analytics.com/analytics.js'></script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("2XL0P8XDCY", "4ef65b37b627bb886b46c34a10e63aa6");
|
||||
var index = client.initIndex("h_cowbay_org");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 10 }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -90,6 +90,170 @@
|
||||
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/change-preferred-language-in-firefox/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/post/change-preferred-language-in-firefox/">
|
||||
<img src="/images/post-default-9.jpg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2018-11-15</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>最近在測試metabase,記得幾個月前就有測試過</p>
|
||||
|
||||
<p>但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的</p>
|
||||
|
||||
<p>所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)</p>
|
||||
|
||||
<p>不過呢,很討厭的是,一進去就發現語系採用的是簡體中文</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
|
||||
<a href="/post/change-preferred-language-in-firefox/" class="more">Continue reading</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
<a href="/tags/firefox">firefox</a>
|
||||
|
||||
<a href="/tags/metabase">metabase</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/copy_role_in_pgsql/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/post/copy_role_in_pgsql/">
|
||||
<img src="/images/post-default-7.jpg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2018-11-12</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>因為工作上的需求,有個資料庫需要開放給不同team的人去存取</p>
|
||||
|
||||
<p>雖然都是在同一台機器上的同一個資料庫</p>
|
||||
|
||||
<p>但是希望能夠不同team的人用不同的資料庫使用者</p>
|
||||
|
||||
<p>這樣萬一出事,會比較好抓兇手??</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
|
||||
<a href="/post/copy_role_in_pgsql/" class="more">Continue reading</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/psql">psql</a>
|
||||
|
||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/weird-client-server-connection/">
|
||||
@@ -367,6 +531,14 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -397,7 +569,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -5,11 +5,45 @@
|
||||
<link>https://h.cowbay.org/post/</link>
|
||||
<description>Recent content in Posts on MC部落</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<lastBuildDate>Thu, 08 Nov 2018 18:01:23 +0800</lastBuildDate>
|
||||
<lastBuildDate>Thu, 15 Nov 2018 11:06:28 +0800</lastBuildDate>
|
||||
|
||||
<atom:link href="https://h.cowbay.org/post/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<item>
|
||||
<title>[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</title>
|
||||
<link>https://h.cowbay.org/post/change-preferred-language-in-firefox/</link>
|
||||
<pubDate>Thu, 15 Nov 2018 11:06:28 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/post/change-preferred-language-in-firefox/</guid>
|
||||
<description><p>最近在測試metabase,記得幾個月前就有測試過</p>
|
||||
|
||||
<p>但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的</p>
|
||||
|
||||
<p>所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)</p>
|
||||
|
||||
<p>不過呢,很討厭的是,一進去就發現語系採用的是簡體中文</p>
|
||||
|
||||
<p></p></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</title>
|
||||
<link>https://h.cowbay.org/post/copy_role_in_pgsql/</link>
|
||||
<pubDate>Mon, 12 Nov 2018 09:48:12 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/post/copy_role_in_pgsql/</guid>
|
||||
<description><p>因為工作上的需求,有個資料庫需要開放給不同team的人去存取</p>
|
||||
|
||||
<p>雖然都是在同一台機器上的同一個資料庫</p>
|
||||
|
||||
<p>但是希望能夠不同team的人用不同的資料庫使用者</p>
|
||||
|
||||
<p>這樣萬一出事,會比較好抓兇手??</p>
|
||||
|
||||
<p></p></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</title>
|
||||
<link>https://h.cowbay.org/post/weird-client-server-connection/</link>
|
||||
|
||||
@@ -251,6 +251,14 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -281,7 +289,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -281,6 +281,14 @@ acl CONNECT method CONNECT
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -311,7 +319,7 @@ acl CONNECT method CONNECT
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<sitemap>
|
||||
<loc>https://h.cowbay.org/en/sitemap.xml</loc>
|
||||
|
||||
<lastmod>2018-11-08T18:01:23+08:00</lastmod>
|
||||
<lastmod>2018-11-15T11:06:28+08:00</lastmod>
|
||||
|
||||
</sitemap>
|
||||
|
||||
|
||||
@@ -202,6 +202,14 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -232,7 +240,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -202,6 +202,14 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -232,7 +240,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -189,6 +189,14 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -219,7 +227,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
382
public/tags/firefox/index.html
Normal file
382
public/tags/firefox/index.html
Normal file
@@ -0,0 +1,382 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Eric Chang">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> Firefox | MC部落</title>
|
||||
<meta name="description" content="Firefox - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="Firefox">
|
||||
<meta itemprop="description" content="Firefox - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="Firefox">
|
||||
<meta property="og:description" content="Firefox - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/e4eb1f8e016ffb73e9889f87d16e15f0?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/tags/firefox/">
|
||||
<meta property="og:site_name" content="MC部落"><meta property="og:type" content="website">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
<link href="https://h.cowbay.org/tags/firefox/index.xml" rel="alternate" type="application/rss+xml" title="MC部落" />
|
||||
<link href="https://h.cowbay.org/tags/firefox/index.xml" rel="feed" type="application/rss+xml" title="MC部落" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav class="permanentTopNav">
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/e4eb1f8e016ffb73e9889f87d16e15f0?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">MC部落</a></h3>
|
||||
|
||||
<span class="subtitle">這是MC的HUGO部落格,採用bilberry theme</span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="toggler permanentTopNav">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/change-preferred-language-in-firefox/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/post/change-preferred-language-in-firefox/">
|
||||
<img src="/images/post-default-9.jpg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2018-11-15</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>最近在測試metabase,記得幾個月前就有測試過</p>
|
||||
|
||||
<p>但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的</p>
|
||||
|
||||
<p>所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)</p>
|
||||
|
||||
<p>不過呢,很討厭的是,一進去就發現語系採用的是簡體中文</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
|
||||
<a href="/post/change-preferred-language-in-firefox/" class="more">Continue reading</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
<a href="/tags/firefox">firefox</a>
|
||||
|
||||
<a href="/tags/metabase">metabase</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="paginator">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/nice-du-report-tool-durep/">Nice Du Report Tool Durep</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/bookstack-docker/">Bookstack Docker</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/articles/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/ps">Ps (1)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
<a href="https://www.facebook.com/mariahchang" target="_blank"><i class="fa fa-facebook-adblock-proof"></i></a>
|
||||
|
||||
|
||||
<a href="https://twitter.com/changchichung" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/changchichung" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
-
|
||||
<a href="https://h.cowbay.org/tags/firefox/index.xml">RSS</a>
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<script type="application/javascript">
|
||||
var doNotTrack = false;
|
||||
if (!doNotTrack) {
|
||||
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
|
||||
ga('create', 'UA-128770427-1', 'auto');
|
||||
|
||||
ga('send', 'pageview');
|
||||
}
|
||||
</script>
|
||||
<script async src='https://www.google-analytics.com/analytics.js'></script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("2XL0P8XDCY", "4ef65b37b627bb886b46c34a10e63aa6");
|
||||
var index = client.initIndex("h_cowbay_org");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 10 }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
31
public/tags/firefox/index.xml
Normal file
31
public/tags/firefox/index.xml
Normal file
@@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Firefox on MC部落</title>
|
||||
<link>https://h.cowbay.org/tags/firefox/</link>
|
||||
<description>Recent content in Firefox on MC部落</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<lastBuildDate>Thu, 15 Nov 2018 11:06:28 +0800</lastBuildDate>
|
||||
|
||||
<atom:link href="https://h.cowbay.org/tags/firefox/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<item>
|
||||
<title>[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</title>
|
||||
<link>https://h.cowbay.org/post/change-preferred-language-in-firefox/</link>
|
||||
<pubDate>Thu, 15 Nov 2018 11:06:28 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/post/change-preferred-language-in-firefox/</guid>
|
||||
<description><p>最近在測試metabase,記得幾個月前就有測試過</p>
|
||||
|
||||
<p>但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的</p>
|
||||
|
||||
<p>所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)</p>
|
||||
|
||||
<p>不過呢,很討厭的是,一進去就發現語系採用的是簡體中文</p>
|
||||
|
||||
<p></p></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
||||
1
public/tags/firefox/page/1/index.html
Normal file
1
public/tags/firefox/page/1/index.html
Normal file
@@ -0,0 +1 @@
|
||||
<!DOCTYPE html><html><head><title>https://h.cowbay.org/tags/firefox/</title><link rel="canonical" href="https://h.cowbay.org/tags/firefox/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://h.cowbay.org/tags/firefox/" /></head></html>
|
||||
@@ -107,12 +107,18 @@
|
||||
|
||||
<li><a href="/tags/du">Du (1)</a></li>
|
||||
|
||||
<li><a href="/tags/firefox">Firefox (1)</a></li>
|
||||
|
||||
<li><a href="/tags/linux">Linux (1)</a></li>
|
||||
|
||||
<li><a href="/tags/metabase">Metabase (1)</a></li>
|
||||
|
||||
<li><a href="/tags/nas">Nas (1)</a></li>
|
||||
|
||||
<li><a href="/tags/ps">Ps (1)</a></li>
|
||||
|
||||
<li><a href="/tags/psql">Psql (1)</a></li>
|
||||
|
||||
<li><a href="/tags/ssh">Ssh (1)</a></li>
|
||||
|
||||
<li><a href="/tags/synology">Synology (1)</a></li>
|
||||
@@ -121,7 +127,7 @@
|
||||
|
||||
<li><a href="/tags/%E7%9F%AD%E4%BB%8A">短今 (1)</a></li>
|
||||
|
||||
<li><a href="/tags/%E7%AD%86%E8%A8%98">筆記 (2)</a></li>
|
||||
<li><a href="/tags/%E7%AD%86%E8%A8%98">筆記 (4)</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
@@ -140,6 +146,14 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -170,7 +184,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -37,6 +37,15 @@
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Firefox</title>
|
||||
<link>https://h.cowbay.org/tags/firefox/</link>
|
||||
<pubDate>Thu, 15 Nov 2018 11:06:28 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/tags/firefox/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Linux</title>
|
||||
<link>https://h.cowbay.org/tags/linux/</link>
|
||||
@@ -46,6 +55,15 @@
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Metabase</title>
|
||||
<link>https://h.cowbay.org/tags/metabase/</link>
|
||||
<pubDate>Thu, 15 Nov 2018 11:06:28 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/tags/metabase/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Nas</title>
|
||||
<link>https://h.cowbay.org/tags/nas/</link>
|
||||
@@ -64,6 +82,15 @@
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Psql</title>
|
||||
<link>https://h.cowbay.org/tags/psql/</link>
|
||||
<pubDate>Mon, 12 Nov 2018 09:48:12 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/tags/psql/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Ssh</title>
|
||||
<link>https://h.cowbay.org/tags/ssh/</link>
|
||||
@@ -103,7 +130,7 @@
|
||||
<item>
|
||||
<title>筆記</title>
|
||||
<link>https://h.cowbay.org/tags/%E7%AD%86%E8%A8%98/</link>
|
||||
<pubDate>Thu, 08 Nov 2018 18:01:23 +0800</pubDate>
|
||||
<pubDate>Thu, 15 Nov 2018 11:06:28 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/tags/%E7%AD%86%E8%A8%98/</guid>
|
||||
<description></description>
|
||||
|
||||
@@ -189,6 +189,14 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -219,7 +227,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
382
public/tags/metabase/index.html
Normal file
382
public/tags/metabase/index.html
Normal file
@@ -0,0 +1,382 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Eric Chang">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> Metabase | MC部落</title>
|
||||
<meta name="description" content="Metabase - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="Metabase">
|
||||
<meta itemprop="description" content="Metabase - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="Metabase">
|
||||
<meta property="og:description" content="Metabase - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/e4eb1f8e016ffb73e9889f87d16e15f0?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/tags/metabase/">
|
||||
<meta property="og:site_name" content="MC部落"><meta property="og:type" content="website">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
<link href="https://h.cowbay.org/tags/metabase/index.xml" rel="alternate" type="application/rss+xml" title="MC部落" />
|
||||
<link href="https://h.cowbay.org/tags/metabase/index.xml" rel="feed" type="application/rss+xml" title="MC部落" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav class="permanentTopNav">
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/e4eb1f8e016ffb73e9889f87d16e15f0?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">MC部落</a></h3>
|
||||
|
||||
<span class="subtitle">這是MC的HUGO部落格,採用bilberry theme</span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="toggler permanentTopNav">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/change-preferred-language-in-firefox/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/post/change-preferred-language-in-firefox/">
|
||||
<img src="/images/post-default-9.jpg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2018-11-15</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>最近在測試metabase,記得幾個月前就有測試過</p>
|
||||
|
||||
<p>但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的</p>
|
||||
|
||||
<p>所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)</p>
|
||||
|
||||
<p>不過呢,很討厭的是,一進去就發現語系採用的是簡體中文</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
|
||||
<a href="/post/change-preferred-language-in-firefox/" class="more">Continue reading</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
<a href="/tags/firefox">firefox</a>
|
||||
|
||||
<a href="/tags/metabase">metabase</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="paginator">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/nice-du-report-tool-durep/">Nice Du Report Tool Durep</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/bookstack-docker/">Bookstack Docker</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/articles/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/ps">Ps (1)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
<a href="https://www.facebook.com/mariahchang" target="_blank"><i class="fa fa-facebook-adblock-proof"></i></a>
|
||||
|
||||
|
||||
<a href="https://twitter.com/changchichung" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/changchichung" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
-
|
||||
<a href="https://h.cowbay.org/tags/metabase/index.xml">RSS</a>
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<script type="application/javascript">
|
||||
var doNotTrack = false;
|
||||
if (!doNotTrack) {
|
||||
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
|
||||
ga('create', 'UA-128770427-1', 'auto');
|
||||
|
||||
ga('send', 'pageview');
|
||||
}
|
||||
</script>
|
||||
<script async src='https://www.google-analytics.com/analytics.js'></script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("2XL0P8XDCY", "4ef65b37b627bb886b46c34a10e63aa6");
|
||||
var index = client.initIndex("h_cowbay_org");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 10 }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
31
public/tags/metabase/index.xml
Normal file
31
public/tags/metabase/index.xml
Normal file
@@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Metabase on MC部落</title>
|
||||
<link>https://h.cowbay.org/tags/metabase/</link>
|
||||
<description>Recent content in Metabase on MC部落</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<lastBuildDate>Thu, 15 Nov 2018 11:06:28 +0800</lastBuildDate>
|
||||
|
||||
<atom:link href="https://h.cowbay.org/tags/metabase/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<item>
|
||||
<title>[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</title>
|
||||
<link>https://h.cowbay.org/post/change-preferred-language-in-firefox/</link>
|
||||
<pubDate>Thu, 15 Nov 2018 11:06:28 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/post/change-preferred-language-in-firefox/</guid>
|
||||
<description><p>最近在測試metabase,記得幾個月前就有測試過</p>
|
||||
|
||||
<p>但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的</p>
|
||||
|
||||
<p>所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)</p>
|
||||
|
||||
<p>不過呢,很討厭的是,一進去就發現語系採用的是簡體中文</p>
|
||||
|
||||
<p></p></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
||||
1
public/tags/metabase/page/1/index.html
Normal file
1
public/tags/metabase/page/1/index.html
Normal file
@@ -0,0 +1 @@
|
||||
<!DOCTYPE html><html><head><title>https://h.cowbay.org/tags/metabase/</title><link rel="canonical" href="https://h.cowbay.org/tags/metabase/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://h.cowbay.org/tags/metabase/" /></head></html>
|
||||
@@ -100,7 +100,7 @@
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/articles/enable-synology-public-ssh/">
|
||||
<img src="http://i.imgur.com/jcDQmI1.png" alt="">
|
||||
<img src="https://i.imgur.com/jcDQmI1.png" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
@@ -203,6 +203,14 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -233,7 +241,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -179,6 +179,14 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -209,7 +217,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
380
public/tags/psql/index.html
Normal file
380
public/tags/psql/index.html
Normal file
@@ -0,0 +1,380 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Eric Chang">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> Psql | MC部落</title>
|
||||
<meta name="description" content="Psql - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="Psql">
|
||||
<meta itemprop="description" content="Psql - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="Psql">
|
||||
<meta property="og:description" content="Psql - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/e4eb1f8e016ffb73e9889f87d16e15f0?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/tags/psql/">
|
||||
<meta property="og:site_name" content="MC部落"><meta property="og:type" content="website">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
<link href="https://h.cowbay.org/tags/psql/index.xml" rel="alternate" type="application/rss+xml" title="MC部落" />
|
||||
<link href="https://h.cowbay.org/tags/psql/index.xml" rel="feed" type="application/rss+xml" title="MC部落" />
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav class="permanentTopNav">
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/e4eb1f8e016ffb73e9889f87d16e15f0?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">MC部落</a></h3>
|
||||
|
||||
<span class="subtitle">這是MC的HUGO部落格,採用bilberry theme</span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="toggler permanentTopNav">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/copy_role_in_pgsql/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/post/copy_role_in_pgsql/">
|
||||
<img src="/images/post-default-7.jpg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2018-11-12</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>因為工作上的需求,有個資料庫需要開放給不同team的人去存取</p>
|
||||
|
||||
<p>雖然都是在同一台機器上的同一個資料庫</p>
|
||||
|
||||
<p>但是希望能夠不同team的人用不同的資料庫使用者</p>
|
||||
|
||||
<p>這樣萬一出事,會比較好抓兇手??</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
|
||||
<a href="/post/copy_role_in_pgsql/" class="more">Continue reading</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/psql">psql</a>
|
||||
|
||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="paginator">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/nice-du-report-tool-durep/">Nice Du Report Tool Durep</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/bookstack-docker/">Bookstack Docker</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/articles/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/ps">Ps (1)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
<a href="https://www.facebook.com/mariahchang" target="_blank"><i class="fa fa-facebook-adblock-proof"></i></a>
|
||||
|
||||
|
||||
<a href="https://twitter.com/changchichung" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/changchichung" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
-
|
||||
<a href="https://h.cowbay.org/tags/psql/index.xml">RSS</a>
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<script type="application/javascript">
|
||||
var doNotTrack = false;
|
||||
if (!doNotTrack) {
|
||||
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
|
||||
ga('create', 'UA-128770427-1', 'auto');
|
||||
|
||||
ga('send', 'pageview');
|
||||
}
|
||||
</script>
|
||||
<script async src='https://www.google-analytics.com/analytics.js'></script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("2XL0P8XDCY", "4ef65b37b627bb886b46c34a10e63aa6");
|
||||
var index = client.initIndex("h_cowbay_org");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 10 }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
31
public/tags/psql/index.xml
Normal file
31
public/tags/psql/index.xml
Normal file
@@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Psql on MC部落</title>
|
||||
<link>https://h.cowbay.org/tags/psql/</link>
|
||||
<description>Recent content in Psql on MC部落</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<lastBuildDate>Mon, 12 Nov 2018 09:48:12 +0800</lastBuildDate>
|
||||
|
||||
<atom:link href="https://h.cowbay.org/tags/psql/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<item>
|
||||
<title>PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</title>
|
||||
<link>https://h.cowbay.org/post/copy_role_in_pgsql/</link>
|
||||
<pubDate>Mon, 12 Nov 2018 09:48:12 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/post/copy_role_in_pgsql/</guid>
|
||||
<description><p>因為工作上的需求,有個資料庫需要開放給不同team的人去存取</p>
|
||||
|
||||
<p>雖然都是在同一台機器上的同一個資料庫</p>
|
||||
|
||||
<p>但是希望能夠不同team的人用不同的資料庫使用者</p>
|
||||
|
||||
<p>這樣萬一出事,會比較好抓兇手??</p>
|
||||
|
||||
<p></p></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
||||
@@ -100,7 +100,7 @@
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/articles/enable-synology-public-ssh/">
|
||||
<img src="http://i.imgur.com/jcDQmI1.png" alt="">
|
||||
<img src="https://i.imgur.com/jcDQmI1.png" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
@@ -203,6 +203,14 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -233,7 +241,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -100,7 +100,7 @@
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/articles/enable-synology-public-ssh/">
|
||||
<img src="http://i.imgur.com/jcDQmI1.png" alt="">
|
||||
<img src="https://i.imgur.com/jcDQmI1.png" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
@@ -203,6 +203,14 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -233,7 +241,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -198,6 +198,14 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -228,7 +236,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -179,6 +179,14 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -209,7 +217,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -90,6 +90,170 @@
|
||||
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/change-preferred-language-in-firefox/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/post/change-preferred-language-in-firefox/">
|
||||
<img src="/images/post-default-9.jpg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2018-11-15</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>最近在測試metabase,記得幾個月前就有測試過</p>
|
||||
|
||||
<p>但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的</p>
|
||||
|
||||
<p>所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)</p>
|
||||
|
||||
<p>不過呢,很討厭的是,一進去就發現語系採用的是簡體中文</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
|
||||
<a href="/post/change-preferred-language-in-firefox/" class="more">Continue reading</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
<a href="/tags/firefox">firefox</a>
|
||||
|
||||
<a href="/tags/metabase">metabase</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/copy_role_in_pgsql/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/post/copy_role_in_pgsql/">
|
||||
<img src="/images/post-default-7.jpg" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2018-11-12</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
<span class="author"><a href="/author/eric-chang">Eric Chang</a></span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>因為工作上的需求,有個資料庫需要開放給不同team的人去存取</p>
|
||||
|
||||
<p>雖然都是在同一台機器上的同一個資料庫</p>
|
||||
|
||||
<p>但是希望能夠不同team的人用不同的資料庫使用者</p>
|
||||
|
||||
<p>這樣萬一出事,會比較好抓兇手??</p>
|
||||
|
||||
<p></p>
|
||||
|
||||
|
||||
<a href="/post/copy_role_in_pgsql/" class="more">Continue reading</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/psql">psql</a>
|
||||
|
||||
<a href="/tags/%E7%AD%86%E8%A8%98">筆記</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="article-wrapper u-cf">
|
||||
|
||||
<a class="bubble" href="/post/weird-client-server-connection/">
|
||||
@@ -187,7 +351,7 @@
|
||||
|
||||
<div class="featured-image">
|
||||
<a href="/articles/enable-synology-public-ssh/">
|
||||
<img src="http://i.imgur.com/jcDQmI1.png" alt="">
|
||||
<img src="https://i.imgur.com/jcDQmI1.png" alt="">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
@@ -290,6 +454,14 @@
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
@@ -320,7 +492,7 @@
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (4)</a>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
|
||||
@@ -5,11 +5,45 @@
|
||||
<link>https://h.cowbay.org/tags/%E7%AD%86%E8%A8%98/</link>
|
||||
<description>Recent content in 筆記 on MC部落</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<lastBuildDate>Thu, 08 Nov 2018 18:01:23 +0800</lastBuildDate>
|
||||
<lastBuildDate>Thu, 15 Nov 2018 11:06:28 +0800</lastBuildDate>
|
||||
|
||||
<atom:link href="https://h.cowbay.org/tags/%E7%AD%86%E8%A8%98/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<item>
|
||||
<title>[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</title>
|
||||
<link>https://h.cowbay.org/post/change-preferred-language-in-firefox/</link>
|
||||
<pubDate>Thu, 15 Nov 2018 11:06:28 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/post/change-preferred-language-in-firefox/</guid>
|
||||
<description><p>最近在測試metabase,記得幾個月前就有測試過</p>
|
||||
|
||||
<p>但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的</p>
|
||||
|
||||
<p>所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)</p>
|
||||
|
||||
<p>不過呢,很討厭的是,一進去就發現語系採用的是簡體中文</p>
|
||||
|
||||
<p></p></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</title>
|
||||
<link>https://h.cowbay.org/post/copy_role_in_pgsql/</link>
|
||||
<pubDate>Mon, 12 Nov 2018 09:48:12 +0800</pubDate>
|
||||
|
||||
<guid>https://h.cowbay.org/post/copy_role_in_pgsql/</guid>
|
||||
<description><p>因為工作上的需求,有個資料庫需要開放給不同team的人去存取</p>
|
||||
|
||||
<p>雖然都是在同一台機器上的同一個資料庫</p>
|
||||
|
||||
<p>但是希望能夠不同team的人用不同的資料庫使用者</p>
|
||||
|
||||
<p>這樣萬一出事,會比較好抓兇手??</p>
|
||||
|
||||
<p></p></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</title>
|
||||
<link>https://h.cowbay.org/post/weird-client-server-connection/</link>
|
||||
|
||||
15
themes/archetypes/audio.md
Normal file
15
themes/archetypes/audio.md
Normal file
@@ -0,0 +1,15 @@
|
||||
---
|
||||
title: "{{ replace .Name "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
draft: true
|
||||
|
||||
categories: []
|
||||
tags: []
|
||||
author: ""
|
||||
|
||||
# Set your audio url for
|
||||
spotify: "" # (Spotify URI) spotify:track:43mGIUqxFoDQI4YiqbGmqd
|
||||
soundcloud: "" # https://soundcloud.com/lightbooks/alchemist-08-new-world-order-snip
|
||||
tunein: "" # t117894382
|
||||
mixcloud: "" # scienceforthepeople/445-ai-ant-intelligence
|
||||
---
|
||||
18
themes/archetypes/default.md
Normal file
18
themes/archetypes/default.md
Normal file
@@ -0,0 +1,18 @@
|
||||
---
|
||||
title: "{{ replace .Name "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
draft: true
|
||||
|
||||
noSummary: false
|
||||
featuredImage: "https://h.cowbay.org/images/post-default-11.jpg"
|
||||
categories: []
|
||||
tags: []
|
||||
author: "Eric Chang"
|
||||
---
|
||||
|
||||
SOME Text here
|
||||
|
||||
Breaks here
|
||||
<!--more-->
|
||||
Contents continues...
|
||||
|
||||
18
themes/archetypes/gallery.md
Normal file
18
themes/archetypes/gallery.md
Normal file
@@ -0,0 +1,18 @@
|
||||
---
|
||||
title: "{{ replace .Name "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
draft: true
|
||||
|
||||
imageSlider: true #set to false if you don't want to use the imageSlider but a featuredImage
|
||||
|
||||
categories: []
|
||||
tags: []
|
||||
author: ""
|
||||
---
|
||||
|
||||
gallery: [
|
||||
"https://example.org/images/gallery-image1.jpg",
|
||||
"https://example.org/images/gallery-image2.jpg",
|
||||
"https://example.org/images/gallery-image3.jpg"
|
||||
]
|
||||
|
||||
11
themes/archetypes/link.md
Normal file
11
themes/archetypes/link.md
Normal file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
title: "{{ replace .Name "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
draft: true
|
||||
|
||||
categories: []
|
||||
tags: []
|
||||
|
||||
# Set your external url
|
||||
link: "https://github.com/Lednerb/bilberry-hugo-theme"
|
||||
---
|
||||
11
themes/archetypes/page.md
Normal file
11
themes/archetypes/page.md
Normal file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
title: "{{ replace .Name "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
draft: true
|
||||
excludeFromTopNav: false
|
||||
|
||||
# set the link if you want to redirect the user.
|
||||
link: ""
|
||||
# set the html target parameter if you want to change default behavior
|
||||
target: "_blank"
|
||||
---
|
||||
12
themes/archetypes/video.md
Normal file
12
themes/archetypes/video.md
Normal file
@@ -0,0 +1,12 @@
|
||||
---
|
||||
title: "{{ replace .Name "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
draft: true
|
||||
|
||||
categories: []
|
||||
author: ""
|
||||
|
||||
# Set your video id for
|
||||
youtube: "" # https://www.youtube.com/watch?v=M7IjJiZUutk -> "M7IjJiZUutk"
|
||||
vimeo: "" # https://vimeo.com/239830182 -> "239830182"
|
||||
---
|
||||
152
themes/config.toml
Normal file
152
themes/config.toml
Normal file
@@ -0,0 +1,152 @@
|
||||
title = "MC部落"
|
||||
# Add an trailing slash to ensure that all fonts render correctly.
|
||||
baseURL = "https://h.cowbay.org"
|
||||
theme = "bilberry-hugo-theme"
|
||||
|
||||
enableRobotsTXT = true
|
||||
|
||||
# Change to one of your content languages definded at the end.
|
||||
DefaultContentLanguage = "en"
|
||||
|
||||
# Enable / Disable Google Analytics statistics for your site
|
||||
googleAnalytics = "UA-128770427-1"
|
||||
|
||||
# Enable / Disable comments on the articles via Disqus.
|
||||
disqusShortname = "h-cowbay-org-1"
|
||||
|
||||
[params]
|
||||
# Favicon for the browser's favorites and tabs
|
||||
favicon = "" # set a favicon icon
|
||||
|
||||
# Custom CSS / JS modules that will be imported by the template.
|
||||
# Files are relative to the static/ directory or a URL.
|
||||
# Files are imported in the order they appear here, after
|
||||
# theme.css and theme.js, respectively.
|
||||
css_modules = ["https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"]
|
||||
js_modules = []
|
||||
|
||||
# Description and meta data for the search engines
|
||||
author = "Eric Chang"
|
||||
description = "Bilberry Premium Theme for Hugo."
|
||||
keywords = "blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts"
|
||||
|
||||
# How many articles should be displayed at once?
|
||||
paginate = 10
|
||||
|
||||
# Enable / Disable MathJax
|
||||
enable_mathjax = false
|
||||
|
||||
# Enable / Disable algolia search
|
||||
# algolia_search = true
|
||||
# algolia_appId = "Y2C4RWMPXW"
|
||||
# algolia_apiKey = "50ea7f8c41c0ad233926e0be2b769ed1"
|
||||
# algolia_indexName = "default-content"
|
||||
|
||||
algolia_search = true
|
||||
algolia_appId = "2XL0P8XDCY"
|
||||
algolia_apiKey = "4ef65b37b627bb886b46c34a10e63aa6"
|
||||
algolia_indexName = "h_cowbay_org"
|
||||
# Set this option to false if you want to search within all articles in all languages at once
|
||||
algolia_currentLanguageOnly = false
|
||||
|
||||
# Style configuration
|
||||
# set the width of your site's content
|
||||
siteWidth = "800px"
|
||||
|
||||
# let hugo automatically resize and crop your images to the correct sizes
|
||||
resizeImages = true
|
||||
|
||||
# Header configuration
|
||||
# your subtitle if you want to use any
|
||||
subtitle = "這是MC的HUGO部落格,採用bilberry theme"
|
||||
|
||||
# if you want to use gravatar for the header image
|
||||
gravatarEMail = "mc@mc4.us"
|
||||
|
||||
# set an path to the image file you want to use | overwrites gravatar
|
||||
customImage = ""
|
||||
|
||||
# define the icon you want to use for the overlay for the customImage or gravatar.
|
||||
overlayIcon = "fa-home"
|
||||
|
||||
# always display the top navigation (with pages and search) on non-mobile screens
|
||||
permanentTopNav = true
|
||||
|
||||
# show a language chooser in the header
|
||||
showHeaderLanguageChooser = false
|
||||
|
||||
# Content configuration
|
||||
# Enable an optional pinned page to display at the top of the index
|
||||
# pinnedPost = "/content/github/"
|
||||
# Set to true to pin only to the first page, false to all pages
|
||||
# pinOnlyToFirstPage = true
|
||||
|
||||
# enable automatical localization of the article's PublishedDate with momentjs
|
||||
enableMomentJs = true
|
||||
|
||||
# customize the date format | only works if momentjs is disabled | only works with English month names
|
||||
# you can customize it with the options you find here:
|
||||
# https://gohugo.io/functions/format/#hugo-date-and-time-templating-reference
|
||||
dateFormat = "2006-01-02"
|
||||
|
||||
# display the estimated reading time for an article
|
||||
showReadingTime = false
|
||||
|
||||
# Footer configuration
|
||||
showFooter = true
|
||||
|
||||
# How many articles should be displayed at latest posts in the footer?
|
||||
# Set to -1 to hide the 'Latest Posts' column
|
||||
amountLatestPostsInFooter = 7
|
||||
|
||||
# How many categories should be displayed in the footer section?
|
||||
# Set to -1 to hide the 'Categories' column
|
||||
amountCategoriesInFooter = 7
|
||||
|
||||
# show a language chooser in the header
|
||||
showFooterLanguageChooser = false
|
||||
|
||||
# social media profile urls for the footer links
|
||||
showSocialMedia = true
|
||||
|
||||
facebook = "https://www.facebook.com/mariahchang"
|
||||
twitter = "https://twitter.com/changchichung"
|
||||
googleplus = ""
|
||||
pinterest = ""
|
||||
instagram = ""
|
||||
tumblr = ""
|
||||
youtube = ""
|
||||
vimeo = ""
|
||||
github = "https://github.com/changchichung"
|
||||
xing = ""
|
||||
linkedin = ""
|
||||
|
||||
# credits line configuration
|
||||
copyrightBy = "by Lednerb"
|
||||
copyrightUseCurrentYear = false # set to true to always display the current year in the copyright
|
||||
copyrightYearOverride = "2017"
|
||||
copyrightUrl = "https://github.com/Lednerb"
|
||||
creditsText = "Bilberry Hugo Theme"
|
||||
creditsUrl = "https://github.com/Lednerb/bilberry-hugo-theme"
|
||||
|
||||
|
||||
# customize your available languages for your multi-langual site
|
||||
# or delete the [Languages] blog to use the theme with only one supported language
|
||||
[Languages]
|
||||
[Languages.en]
|
||||
weight = 1
|
||||
[Languages.de]
|
||||
weight = 2
|
||||
title = "Mein cooler neuer Blog"
|
||||
subtitle = "Hallo Welt! Dies ist der epischste Untertitel aller Zeiten."
|
||||
|
||||
# don't change anything below
|
||||
[taxonomies]
|
||||
author = "author"
|
||||
tag = "tags"
|
||||
category = "categories"
|
||||
|
||||
[outputs]
|
||||
home = [ "HTML", "JSON", "RSS" ]
|
||||
page = [ "HTML" ]
|
||||
|
||||
123
themes/content/articles/enable-synology-public-ssh.md
Normal file
123
themes/content/articles/enable-synology-public-ssh.md
Normal file
@@ -0,0 +1,123 @@
|
||||
---
|
||||
title: "筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入"
|
||||
date: 2018-11-05T14:16:54+08:00
|
||||
|
||||
featuredImage: "https://i.imgur.com/jcDQmI1.png"
|
||||
noSummary: false
|
||||
categories: ['筆記']
|
||||
tags: ['筆記','synology','NAS','SSH']
|
||||
author: "Eric Chang"
|
||||
---
|
||||
|
||||
公司內有幾台NAS,其中有一台用來放開發人員的postgresql dump file
|
||||
之前都是主要的開發人員上傳到google drive,分享出來 ,然後其他人去抓回來
|
||||
|
||||
這樣子有個問題是,當server要存取這些檔案時,就沒辦法了,除非透過一些 3rd party的軟體
|
||||
像是這篇
|
||||
|
||||
https://www.omgubuntu.co.uk/2017/04/mount-google-drive-ocamlfuse-linux
|
||||
|
||||
或者是這篇
|
||||
|
||||
https://www.maketecheasier.com/mount-google-drive-ubuntu/
|
||||
|
||||
但是手邊的伺服器,原則上除非有必要,不然都沒有開放internet
|
||||
所以導致明明檔案就在那邊,但是要取得就是很麻煩
|
||||
|
||||
<!--more-->
|
||||
|
||||
Dev_A upload to google drive ---> Dev_B Download from google drive ---> Dev_B scp download file to me ---> I upload to server.
|
||||
|
||||
有沒有?是不是很stupid (講話一定要烙英文)
|
||||
|
||||
既然有現成的NAS在那邊,幹嘛不用呢?(攤手)
|
||||
|
||||
聽說之前的人一直沒成功弄出來,讓Server可以直接去NAS存取檔案的方式,我記得這個不是很難啊
|
||||
就順手整理一下
|
||||
|
||||
### 新增使用者帳號/ 確認家目錄存在
|
||||
|
||||
在NAS 的管理界面上新增一個帳號,假設叫 eric 好了
|
||||
|
||||
~~建立時,注意一下要指定家目錄路徑~~
|
||||
|
||||
更正: 群暉的界面好像不能指定家目錄
|
||||
|
||||
預設的路徑如下
|
||||
```
|
||||
eric:x:1071:100::/var/services/homes/eric:/sbin/nologin
|
||||
```
|
||||
|
||||
不過我覺得怪怪的,因為在我手邊的幾台NAS底下 /var/services/homes 都切不過去
|
||||
確認一下路徑,發現那個 ```@fake_home_link``` 根本就不存在啊!
|
||||
|
||||
```
|
||||
admin@storage:/volume1$ ls -lart /var/services/homes
|
||||
lrwxrwxrwx 1 root root 24 May 23 14:14 /var/services/homes -> /volume1/@fake_home_link
|
||||
admin@storage:/volume1$
|
||||
```
|
||||
|
||||
我在想是不是之前的人有改過什麼..
|
||||
anyway ,反正先不管這邊,直接修改 /etc/passwd檔案
|
||||
```
|
||||
sudo vim /etc/passwd
|
||||
```
|
||||
修正到正確的路徑,順便把shell 也改掉,不然不能登入
|
||||
|
||||
```
|
||||
eric:x:1071:100::/volume1/homes/eric:/bin/sh
|
||||
```
|
||||
|
||||
### 修改 /etc/ssh/sshd_config
|
||||
|
||||
再來修正預設沒有啟用 Publickey 驗證的 ssh
|
||||
|
||||
```
|
||||
sudo vim /etc/ssh/sshd_config
|
||||
```
|
||||
確認底下三行存在
|
||||
|
||||
```
|
||||
RSAAuthentication yes
|
||||
PubkeyAuthentication yes
|
||||
AuthorizedKeysFile .ssh/authorized_keys
|
||||
```
|
||||
### 將KEY傳到 NAS上
|
||||
|
||||
先建立相關目錄,順便修正一下目錄權限
|
||||
|
||||
```
|
||||
chmod 755 /volume1/homes/eric
|
||||
mkdir -p /volume1/homes/eric/.ssh
|
||||
chmod 700 /volume1/homes/eric/.ssh
|
||||
```
|
||||
|
||||
再來把Publickey 傳到NAS,複製貼上也好,ssh-copy-id也可以,同時修正權限
|
||||
```
|
||||
vim /volume1/homes/eric/.ssh/authorized_keys
|
||||
chmod 0600 /volume1/eric/.ssh/authorized_keys
|
||||
```
|
||||
|
||||
### 重啟SSH
|
||||
|
||||
本來這個步驟應該可以用
|
||||
```
|
||||
synoservicectl --restart sshd
|
||||
```
|
||||
來解決
|
||||
但是實際上這個指令只會把你踢出 SSH session ....( WTF!!! )
|
||||
|
||||
所以還是要去NAS的管理界面,去關閉再打開SSH (有點蠢..)
|
||||

|
||||
|
||||
然後就可以測試用Publickey 來登入NAS了
|
||||
|
||||
```
|
||||
2018-11-05 14:47:12 [mini@s009 ansiblecontrol]$ ssh admin@storage
|
||||
admin@storage:~$
|
||||
```
|
||||
確認免密碼登入無誤了!
|
||||
|
||||
|
||||
|
||||
|
||||
BIN
themes/content/gallery/my-trip-to-scotland/scotland1.jpg
Normal file
BIN
themes/content/gallery/my-trip-to-scotland/scotland1.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 66 KiB |
BIN
themes/content/gallery/my-trip-to-scotland/scotland2.jpg
Normal file
BIN
themes/content/gallery/my-trip-to-scotland/scotland2.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 34 KiB |
BIN
themes/content/gallery/my-trip-to-scotland/scotland3.jpg
Normal file
BIN
themes/content/gallery/my-trip-to-scotland/scotland3.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 49 KiB |
BIN
themes/content/gallery/my-trip-to-scotland/scotland4.jpg
Normal file
BIN
themes/content/gallery/my-trip-to-scotland/scotland4.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 55 KiB |
BIN
themes/content/gallery/my-trip-to-scotland/scotland5.jpg
Normal file
BIN
themes/content/gallery/my-trip-to-scotland/scotland5.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 45 KiB |
12
themes/content/gallery/sammy93.md
Normal file
12
themes/content/gallery/sammy93.md
Normal file
@@ -0,0 +1,12 @@
|
||||
---
|
||||
title: "Sammy93"
|
||||
date: 2018-11-05T07:46:53+08:00
|
||||
|
||||
imageSlider: false #set to false if you don't want to use the imageSlider but a featuredImage
|
||||
|
||||
categories: [PS]
|
||||
tags: ['ps','短今']
|
||||
author: "Eric Chang"
|
||||
---
|
||||

|
||||

|
||||
105
themes/content/post/bookstack-docker.md
Normal file
105
themes/content/post/bookstack-docker.md
Normal file
@@ -0,0 +1,105 @@
|
||||
---
|
||||
title: "Bookstack Docker"
|
||||
date: 2018-11-06T14:57:14+08:00
|
||||
|
||||
noSummary: false
|
||||
featuredImage: "https://h.cowbay.org/images/post-default-12.jpg"
|
||||
categories: ['筆記']
|
||||
tags: ['docker','Bookstack']
|
||||
author: "Eric Chang"
|
||||
---
|
||||
|
||||
Bookstack 是一套非常好用的線上"筆記"系統
|
||||
|
||||
他用圖書館/書本的概念,讓使用者可以建立自己的"圖書館"
|
||||
|
||||
同時在圖書館內建立不同的"書籍"
|
||||
|
||||
而且支援 Markdown 語法
|
||||
|
||||
其他的方式像是在nextcloud上編輯 md檔案(字體太小)
|
||||
|
||||
或者是boostnote(只能在本機)
|
||||
|
||||
都或多或少有點小缺點
|
||||
|
||||
Bookstack則是沒有這些問題,不過就是系統「大」了點...
|
||||
|
||||
不過還好有人做成docker的方式來啟動,大大的降低了建置的難度(其實也沒有很難啦,只是要裝個PHP、弄個DB而已)
|
||||
|
||||
|
||||
<!--more-->
|
||||
|
||||
這個是專案的名稱
|
||||
#### solidnerd/docker-bookstack
|
||||
|
||||
gihub上的連結
|
||||
|
||||
https://github.com/solidnerd/docker-bookstack
|
||||
|
||||
|
||||
因為都轉成docker了,所以安裝很簡單
|
||||
先git clone回來
|
||||
```
|
||||
git clone https://github.com/solidnerd/docker-bookstack
|
||||
```
|
||||
然後依照他的說明,建立一個docker-compose.yml檔案,再視情況修改
|
||||
|
||||
底下是我的docker-compose.yml內容
|
||||
|
||||
```
|
||||
version: '2'
|
||||
services:
|
||||
mysql:
|
||||
image: mysql:5.7.21
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=secret
|
||||
- MYSQL_DATABASE=bookstack
|
||||
- MYSQL_USER=bookstack
|
||||
- MYSQL_PASSWORD=secret
|
||||
volumes:
|
||||
- mysql-data:/var/lib/mysql
|
||||
|
||||
bookstack:
|
||||
image: solidnerd/bookstack:0.24.1
|
||||
depends_on:
|
||||
- mysql
|
||||
environment:
|
||||
- DB_HOST=mysql:3306
|
||||
- DB_DATABASE=bookstack
|
||||
- DB_USERNAME=bookstack
|
||||
- DB_PASSWORD=secret
|
||||
volumes:
|
||||
- uploads:/var/www/bookstack/public/uploads
|
||||
- storage-uploads:/var/www/bookstack/public/storage
|
||||
ports:
|
||||
- "0.0.0.0:8003:80"
|
||||
|
||||
volumes:
|
||||
mysql-data:
|
||||
uploads:
|
||||
storage-uploads:
|
||||
```
|
||||
|
||||
原則上我沒有修改什麼設定,先確認一下現在的bookstack版本 0.24.1 是目前最新的了
|
||||
|
||||
然後把 port 改成8003 ,避免去強碰 80 port
|
||||
|
||||
如果前面搭配 caddy 之類的反向代理,那不用去記 port 也沒關係。
|
||||
|
||||
好了之後,就執行 docker-compose up -d
|
||||
|
||||
然後 docker ps -a 看一下執行狀況
|
||||
```
|
||||
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
|
||||
6b3333eabf30 solidnerd/bookstack:0.24.1 "/docker-entrypoint.…" 4 hours ago Exited (0) About an hour ago docker-bookstack_bookstack_1
|
||||
b8d74048eba1 mysql:5.7.21 "docker-entrypoint.s…" 4 hours ago Exited (0) About an hour ago docker-bookstack_mysql_1
|
||||
```
|
||||
應該可以順利跑起來
|
||||
|
||||

|
||||
|
||||
沒啥難度,簡單作一下紀錄
|
||||
|
||||
後面再來看看能不能在一個地方新增 md 檔案,然後可以自動傳到 hexo/hugo/ghost 的目錄,接著自動生成靜態檔案出來...
|
||||
|
||||
86
themes/content/post/change-preferred-language-in-firefox.md
Normal file
86
themes/content/post/change-preferred-language-in-firefox.md
Normal file
@@ -0,0 +1,86 @@
|
||||
---
|
||||
title: "[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase"
|
||||
date: 2018-11-15T11:06:28+08:00
|
||||
|
||||
noSummary: false
|
||||
featuredImage: "https://h.cowbay.org/images/post-default-9.jpg"
|
||||
categories: ['筆記']
|
||||
tags: ['筆記','firefox','metabase']
|
||||
author: "Eric Chang"
|
||||
---
|
||||
|
||||
最近在測試metabase,記得幾個月前就有測試過
|
||||
|
||||
但是當時的界面和現在的樣子差很多,看樣子改版還滿勤勞的
|
||||
|
||||
所以這次改用docker來建立,根本五分鐘不到就建好了(挖鼻孔)
|
||||
|
||||
不過呢,很討厭的是,一進去就發現語系採用的是簡體中文
|
||||
|
||||
|
||||
<!--more-->
|
||||
|
||||
來看看這張圖
|
||||

|
||||
|
||||
WHAT THE FUCK !!!
|
||||
|
||||
這是哪一國的翻譯??我相信對岸人才濟濟,絕對不至於翻譯出這種結果來..
|
||||
|
||||
想當然爾,我認為這個問題可以暫時不管,反正進入系統後,再去使用者界面設定就好
|
||||
|
||||
BUT .. (對,又是這個他X的BUT)
|
||||
|
||||
使用者設置裡面根本沒什麼可以改!
|
||||
|
||||

|
||||
|
||||
對,沒錯,就只有這樣!! 請容許我再罵一次 WHAT THE FUCK !!!
|
||||
|
||||
* * *
|
||||
|
||||
好吧,罵完就算了,還是要想辦法解決,於是切到管理界面,的確是有語言設置
|
||||
|
||||
然後,我要再罵第三次 WHAT THE FUCK !!!
|
||||
|
||||

|
||||
|
||||
```
|
||||
The default language for this Metabase instance.This only applies to emails, Pulses, etc. Users' browsers will specify the language used in the user interface.
|
||||
```
|
||||
|
||||
簡單說,這邊的語言設定「不影響」使用者界面,界面使用的語系,由各個瀏覽器決定!
|
||||
|
||||
好,那我去修改firefox 的語言看看
|
||||
|
||||
開啟 firefox ,點選右上角的三橫槓,找到語言選項
|
||||
|
||||
我一開始改成這樣
|
||||
|
||||

|
||||
|
||||
結果不管重開幾次,開啟metabase還是那個殘體中文字
|
||||
|
||||
後來想說,啊,會不會是「英語」「美語」的差異?
|
||||
|
||||
所以我把順序改成
|
||||
|
||||

|
||||
|
||||
然後再開 metabase ,結果就如我所願的,改成英文界面了
|
||||
|
||||

|
||||
|
||||
真的是比殘體中文好太多了..
|
||||
|
||||
另外,關於繁體中文的部份,也到metabase的官方論壇去留言了
|
||||
|
||||
就看看官方要不要處理這個問題...
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
37
themes/content/post/copy_role_in_pgsql.md
Normal file
37
themes/content/post/copy_role_in_pgsql.md
Normal file
@@ -0,0 +1,37 @@
|
||||
---
|
||||
title: "PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者"
|
||||
date: 2018-11-12T09:48:12+08:00
|
||||
|
||||
noSummary: false
|
||||
featuredImage: "https://h.cowbay.org/images/post-default-7.jpg"
|
||||
categories: ['筆記']
|
||||
tags: ['psql','筆記']
|
||||
author: "Eric Chang"
|
||||
---
|
||||
|
||||
因為工作上的需求,有個資料庫需要開放給不同team的人去存取
|
||||
|
||||
雖然都是在同一台機器上的同一個資料庫
|
||||
|
||||
但是希望能夠不同team的人用不同的資料庫使用者
|
||||
|
||||
這樣萬一出事,會比較好抓兇手??
|
||||
|
||||
<!--more-->
|
||||
|
||||
總之呢,這個需求一直反覆出現
|
||||
|
||||
每次開發不同的AP,就要求一個不同的代號,實在有點煩
|
||||
|
||||
之前都是用pgadmin來處理,現在就改用psql來弄
|
||||
|
||||
其實也很簡單
|
||||
|
||||
```
|
||||
CREATE ROLE b LOGIN;
|
||||
GRANT a TO b;
|
||||
```
|
||||
|
||||
可以帶入script ,用script 或者用ansible去跑就好了
|
||||
|
||||
省得每次都要在那邊手動改來改去..
|
||||
73
themes/content/post/nice-du-report-tool-durep.md
Normal file
73
themes/content/post/nice-du-report-tool-durep.md
Normal file
@@ -0,0 +1,73 @@
|
||||
---
|
||||
title: "Nice Du Report Tool Durep"
|
||||
date: 2018-11-06T15:24:29+08:00
|
||||
|
||||
noSummary: false
|
||||
featuredImage: "https://h.cowbay.org/images/post-default-9.jpg"
|
||||
categories: ['筆記']
|
||||
tags: ['linux','du']
|
||||
author: "Eric Chang"
|
||||
---
|
||||
最近在重新規劃前人留下的backup爛攤子
|
||||
各個伺服器統一備份到一台backup storage
|
||||
想說如果每天能夠看到backup storage的磁碟用量的話
|
||||
就可以抓出備份空間成長速度、推估需要多大的磁碟空間
|
||||
找了一些工具,結果發現 durep 這個 ubuntu 內建的工具
|
||||
基本上可以滿足我的需求
|
||||
|
||||
<!--more-->
|
||||
我的需求其實很簡單
|
||||
|
||||
1. 可以指定目錄"深度"
|
||||
2. 可以用圖表的方式顯示目前用量
|
||||
3. 每天寄出報表
|
||||
|
||||
來看一下 durep 執行的狀況
|
||||
**如果只指定一層,那就是顯示該目錄底下的使用狀況**
|
||||
|
||||
```
|
||||
2018-10-29 15:50:21 [minion@tps006 ~]$ sudo durep -td 1 -sd /file
|
||||
[ /file 259.0G (0 files, 3 dirs) ]
|
||||
259.0G [############################# ] 100.00% Oct 25 2017 team/
|
||||
1.7M [ ] 0.00% Oct 23 14:04 html/
|
||||
741.1K [ ] 0.00% Jul 11 2016 team_commons/
|
||||
2018-10-29 15:50:26 [minion@tps006 ~]$ sudo durep -td 1 -sd /file
|
||||
```
|
||||
如果指定兩層
|
||||
就顯示包含下一層目錄的磁碟使用量 *好像廢話*
|
||||
|
||||
|
||||
```
|
||||
2018-10-29 16:14:23 [mini@s006 ~]$ sudo durep -td 2 -sd /file
|
||||
[ /file 259.0G (0 files, 3 dirs) ]
|
||||
259.0G [############################# ] 100.00% Oct 25 2017 team/
|
||||
259.0G [##############################] 100.00% Oct 3 15:08 tp/
|
||||
0b [ ] 0.00% Jul 11 2016 temporary/
|
||||
1.7M [ ] 0.00% Oct 23 14:04 html/
|
||||
748.5K [############ ] 43.04% Jun 22 2016 font-awesome/
|
||||
282.2K [#### ] 16.23% Jun 22 2016 css/
|
||||
241.0K [#### ] 13.86% Jun 22 2016 js/
|
||||
222.9K [### ] 12.82% Jun 22 2016 img/
|
||||
210.7K [### ] 12.11% Jun 22 2016 fonts/
|
||||
18.6K [ ] 1.07% Oct 23 14:04 index.html
|
||||
8.5K [ ] 0.49% Jun 22 2016 less/
|
||||
2.2K [ ] 0.12% Jun 22 2016 Gruntfile.js
|
||||
1.7K [ ] 0.10% Jun 22 2016 README.md
|
||||
1.2K [ ] 0.07% Jun 22 2016 mail/
|
||||
1.1K [ ] 0.06% Jun 22 2016 LICENSE
|
||||
652b [ ] 0.04% Jun 22 2016 package.json
|
||||
12b [ ] 0.00% Jun 22 2016 .gitignore
|
||||
741.1K [ ] 0.00% Jul 11 2016 team_commons/
|
||||
709.6K [############################ ] 95.75% Oct 23 14:05 tp/
|
||||
31.5K [# ] 4.25% Oct 23 14:05 temporary/
|
||||
2018-10-29 16:14:36 [mini@s006 ~]$
|
||||
```
|
||||
|
||||
搭配mail 使用,有點可惜的是在郵件內顯示,格式稍微有點跑掉
|
||||
不過至少需要看到的目錄總使用量(左上角),還有各個子目錄的用量都可以清楚的看到
|
||||
如果能夠有縮排就更好了!
|
||||
|
||||

|
||||
|
||||
|
||||
|
||||
105
themes/content/post/weird-client-server-connection.md
Normal file
105
themes/content/post/weird-client-server-connection.md
Normal file
@@ -0,0 +1,105 @@
|
||||
---
|
||||
title: "[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?"
|
||||
date: 2018-11-08T18:01:23+08:00
|
||||
|
||||
noSummary: false
|
||||
featuredImage: "https://h.cowbay.org/images/post-default-4.jpg"
|
||||
categories: ['筆記']
|
||||
tags: ['ubuntu','筆記']
|
||||
author: "Eric Chang"
|
||||
---
|
||||
|
||||
這是發生在一個夜黑風高的寂寥深夜..... ( What The FXXX ... )
|
||||
|
||||
來到這個環境之後,有一個很詭異的狀況一直困擾著我
|
||||
|
||||
在每個分公司,都會有一台伺服器作為KVM Host
|
||||
|
||||
上面跑兩台VM,一台作為ansible controller (目前沒作用)
|
||||
|
||||
另一台作為這邊所謂的 "Build Server"
|
||||
|
||||
用途包含了DHCP Server / Proxy Server (squid3) / APT Proxy (squid-deb-proxy)
|
||||
|
||||
問題就發生在這台 Build Server 上...
|
||||
|
||||
<!--more-->
|
||||
|
||||
有陣子花了點時間去檢查各個分公司的網路環境,確保每一台Build Server都能夠連接Internet
|
||||
|
||||
然後找了一個離總部最近的據點,把這些電腦連接Internet 的方式改為用 proxy 來控制
|
||||
|
||||
在proxy內加入了 allowhost 的設定,然後把user電腦上的瀏覽器都代入 proxy server (firefox/chrome 的設定方式不同)
|
||||
|
||||
```
|
||||
acl localnet src 192.168.28.0/24
|
||||
acl allowhost src "/etc/squid3/allowhost.txt"
|
||||
acl localdomain dstdomain "/etc/squid3/localdomain.txt"
|
||||
acl SSL_ports port 443
|
||||
acl Safe_ports port 80 # http
|
||||
acl Safe_ports port 21 # ftp
|
||||
acl Safe_ports port 443 # https
|
||||
acl Safe_ports port 70 # gopher
|
||||
acl Safe_ports port 210 # wais
|
||||
acl Safe_ports port 1025-65535 # unregistered ports
|
||||
acl Safe_ports port 280 # http-mgmt
|
||||
acl Safe_ports port 488 # gss-http
|
||||
acl Safe_ports port 591 # filemaker
|
||||
acl Safe_ports port 777 # multiling http
|
||||
acl CONNECT method CONNECT
|
||||
```
|
||||
|
||||
一開始這樣作還相安無事,但是呢,慢慢的時不時會有USER反應說無法連接 Internet
|
||||
|
||||
照理來說,因為都是透過proxy上網,所以如果是proxy server出問題,那其他電腦應該也不行上Internet
|
||||
|
||||
但如果這樣的話,那就一點也不詭異了呀(攤手)
|
||||
|
||||
實際上的狀況是,只有反應的USER的電腦無法連接Internet
|
||||
|
||||
然後真的詭異的來了
|
||||
|
||||
用USER電腦去 ping proxy server ,有時候會通,有時候不通..
|
||||
|
||||
從Proxy Server去 ping USER電腦,也是類似的狀況
|
||||
|
||||
可是我卻可以透過IPSEC VPN,分別SSH連接到這兩台機器上
|
||||
|
||||
這代表兩台的網路都OK呀..
|
||||
|
||||
正當我百思不得其解的時候,突然 USER電腦那邊的 ping 有反應了
|
||||
|
||||
變成可以 ping proxy Server 了! (What the FXXX !!!!)
|
||||
|
||||
我什麼都沒改呀...
|
||||
|
||||
<hr>
|
||||
|
||||
反正呢...
|
||||
|
||||
這種狀況三不五時就會出現一次,會出現在哪一台電腦也不一定
|
||||
|
||||
不過,依照觀察到的狀況來說,似乎都是發生在很少開機的電腦上
|
||||
|
||||
然後呢,因為底層是 KVM
|
||||
|
||||
我也嘗試過用virsh 去restart VM 或者是 restart network
|
||||
|
||||
有時候可以解決,有時候又還是不能連接
|
||||
|
||||
於是另外測試安裝了 proxmox VE 的虛擬平台
|
||||
|
||||
在上面起一台新的Server,再用 ansible 做成 build server的角色
|
||||
|
||||
這樣子作的機器,就不會發生這種狀況
|
||||
|
||||
所以我在猜是不是跟底層是KVM有關係..
|
||||
|
||||
不過要動這個的話,工程有點大,手邊也沒那麼多機器可以替換(很慘)
|
||||
|
||||
暫時先保留這個作法,等到下次再發生這狀況
|
||||
|
||||
再來找老闆看這情形,然後來討論要不要換掉各分公司的VM Host...
|
||||
|
||||
|
||||
|
||||
302
themes/public/404.html
Normal file
302
themes/public/404.html
Normal file
@@ -0,0 +1,302 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Eric Chang">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> 404 Page not found | MC部落</title>
|
||||
<meta name="description" content="404 Page not found - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="404 Page not found">
|
||||
<meta itemprop="description" content="404 Page not found - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="404 Page not found">
|
||||
<meta property="og:description" content="404 Page not found - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/e4eb1f8e016ffb73e9889f87d16e15f0?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org">
|
||||
<meta property="og:site_name" content="MC部落"><meta property="og:type" content="website">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav class="permanentTopNav">
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/e4eb1f8e016ffb73e9889f87d16e15f0?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">MC部落</a></h3>
|
||||
|
||||
<span class="subtitle">這是MC的HUGO部落格,採用bilberry theme</span>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="toggler permanentTopNav">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<div class="article-wrapper u-cf single">
|
||||
<a class="bubble" href="/">
|
||||
<i class="fa fa-fw fa-exclamation-triangle"></i>
|
||||
</a>
|
||||
|
||||
<article class="error404 article">
|
||||
<div class="content">
|
||||
<h3>WOAH BUDDY!</h3>
|
||||
<p></p>
|
||||
<p>This is definitly not the page you're looking for...</p>
|
||||
<p><strong>An Error 404 occured.</strong> That means the page is not available. </p>
|
||||
<p>Please select a category at the bottom or change over to the <a href="/"> HOMEPAGE</a>.</p>
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/post/change-preferred-language-in-firefox/">[筆記] 為了metabase 修改 firefox 開啟網頁時使用的預設語言 change the preferred language in firefox for metabase</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/copy_role_in_pgsql/">PostgreSQL 直接從已經存在的使用者複製權限到另一個使用者</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/weird-client-server-connection/">[筆記] 詭異的client&server間連線的問題,或許跟KVM有關係?</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/nice-du-report-tool-durep/">Nice Du Report Tool Durep</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/post/bookstack-docker/">Bookstack Docker</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/articles/enable-synology-public-ssh/">筆記- 啟用群暉NAS (Synology NAS)的SSH Server 透過Publickey 認證免密碼登入</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/gallery/sammy93/">Sammy93</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (6)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/ps">Ps (1)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
<a href="https://www.facebook.com/mariahchang" target="_blank"><i class="fa fa-facebook-adblock-proof"></i></a>
|
||||
|
||||
|
||||
<a href="https://twitter.com/changchichung" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/changchichung" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<script type="application/javascript">
|
||||
var doNotTrack = false;
|
||||
if (!doNotTrack) {
|
||||
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
|
||||
ga('create', 'UA-128770427-1', 'auto');
|
||||
|
||||
ga('send', 'pageview');
|
||||
}
|
||||
</script>
|
||||
<script async src='https://www.google-analytics.com/analytics.js'></script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("2XL0P8XDCY", "4ef65b37b627bb886b46c34a10e63aa6");
|
||||
var index = client.initIndex("h_cowbay_org");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 10 }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
393
themes/public/article/1/index.html
Normal file
393
themes/public/article/1/index.html
Normal file
@@ -0,0 +1,393 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> Name of the work 1 | My cool new Blog</title>
|
||||
<meta name="description" content="Name of the work 1 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="Name of the work 1">
|
||||
<meta itemprop="description" content="Name of the work 1 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="Name of the work 1">
|
||||
<meta property="og:description" content="Name of the work 1 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/1/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/1/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/1/">Name of the work 1</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2016-11-05</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>Section1</p>
|
||||
|
||||
<p>
|
||||
Section2</p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,467 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> 2014.3.24-手無寸鐵的民眾-被警方強力驅趕-備份 | My cool new Blog</title>
|
||||
<meta name="description" content="2014.3.24-手無寸鐵的民眾-被警方強力驅趕-備份 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="2014.3.24-手無寸鐵的民眾-被警方強力驅趕-備份">
|
||||
<meta itemprop="description" content="2014.3.24-手無寸鐵的民眾-被警方強力驅趕-備份 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="2014.3.24-手無寸鐵的民眾-被警方強力驅趕-備份">
|
||||
<meta property="og:description" content="2014.3.24-手無寸鐵的民眾-被警方強力驅趕-備份 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/2014-3-24-e6-89-8b-e7-84-a1-e5-af-b8-e9-90-b5-e7-9a-84-e6-b0-91-e7-9c-be-e8-a2-ab-e8-ad-a6-e6-96-b9-e5-bc-b7-e5-8a-9b-e9-a9-85-e8-b6-95-e5-82-99-e4-bb-bd/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/2014-3-24-e6-89-8b-e7-84-a1-e5-af-b8-e9-90-b5-e7-9a-84-e6-b0-91-e7-9c-be-e8-a2-ab-e8-ad-a6-e6-96-b9-e5-bc-b7-e5-8a-9b-e9-a9-85-e8-b6-95-e5-82-99-e4-bb-bd/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/2014-3-24-e6-89-8b-e7-84-a1-e5-af-b8-e9-90-b5-e7-9a-84-e6-b0-91-e7-9c-be-e8-a2-ab-e8-ad-a6-e6-96-b9-e5-bc-b7-e5-8a-9b-e9-a9-85-e8-b6-95-e5-82-99-e4-bb-bd/">2014.3.24-手無寸鐵的民眾-被警方強力驅趕-備份</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2014-03-24</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>在外頭鎮暴都還沒派來之前,裡頭的警察就先動作打人了</p>
|
||||
|
||||
<p>[video width=“400” height=“224” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/在外頭鎮暴都還沒派來之前,裡頭的警察就先動作打人了-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/在外頭鎮暴都還沒派來之前,裡頭的警察就先動作打人了-YouTube-360p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>中山南路與忠孝東路交岔口的行政院,院內已經開始將水柱噴向民眾了,現場傳出一股刺鼻氣味,民眾不斷驚恐尖叫</p>
|
||||
|
||||
<p>[video width=“1280” height=“720” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/中山南路與忠孝東路交岔口的行政院,院內已經開始將水柱噴向民眾了,現場傳出一股刺鼻氣味,民眾不斷驚恐尖叫-YouTube-720p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/中山南路與忠孝東路交岔口的行政院,院內已經開始將水柱噴向民眾了,現場傳出一股刺鼻氣味,民眾不斷驚恐尖叫-YouTube-720p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>千警清空政院後門 52學生受傷</p>
|
||||
|
||||
<p>[video width=“640” height=“360” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/千警清空政院後門 52學生受傷-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/千警清空政院後門 52學生受傷-YouTube-360p.mp4"][/video</a>] [video width=“1280” height=“720” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/20140324-行政院台灣警察打人,非常暴力-YouTube-720p1.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/20140324-行政院台灣警察打人,非常暴力-YouTube-720p1.mp4"][/video</a>]</p>
|
||||
|
||||
<p>警察驅趕媒體</p>
|
||||
|
||||
<p>[video width=“1280” height=“718” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/2014-03-24-警察驅趕媒體-YouTube-720p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/2014-03-24-警察驅趕媒體-YouTube-720p.mp4"][/video</a>] [video width=“568” height=“320” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/警察持續噴辣椒水驅離-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/警察持續噴辣椒水驅離-YouTube-360p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>警察持警盾惡意狂歐靜坐無攻擊動作學生</p>
|
||||
|
||||
<p>[video width=“1280” height=“720” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/警察持警盾惡意狂歐靜坐無攻擊動作學生-YouTube-720p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/警察持警盾惡意狂歐靜坐無攻擊動作學生-YouTube-720p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>警察在門口圍起人牆不讓媒體拍攝,行政院內外大喊讓媒體進去、媒體監督</p>
|
||||
|
||||
<p>[video width=“568” height=“320” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/警察在門口圍起人牆不讓媒體拍攝,行政院內外大喊讓媒體進去、媒體監督。-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/警察在門口圍起人牆不讓媒體拍攝,行政院內外大喊讓媒體進去、媒體監督。-YouTube-360p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>這就是馬英九對學生訴求的回答</p>
|
||||
|
||||
<p>[video width=“400” height=“300” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/這就是馬英九對學生訴求的回答-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/這就是馬英九對學生訴求的回答-YouTube-360p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>我多麼希望這不是真的</p>
|
||||
|
||||
<p>[video width=“1280” height=“720” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/我多麼希望這不是真的-YouTube-720p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/我多麼希望這不是真的-YouTube-720p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>拍到警察故意用盾牌打了從2_01開始</p>
|
||||
|
||||
<p>[video width=“480” height=“360” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/拍到警察故意用盾牌打了從2_01開始-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/拍到警察故意用盾牌打了從2_01開始-YouTube-360p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>行政院介於後門與側門的民眾進入最後的驅離。鎮暴警察先是衝撞,接著再拉出民眾。雙方在拉扯過程中,開始零星對話,雙方都很無奈</p>
|
||||
|
||||
<p>[video width=“1280” height=“720” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/行政院介於後門與側門的民眾進入最後的驅離。鎮暴警察先是衝撞,接著再拉出民眾。雙方在拉扯過程中,開始零星對話,雙方都很無奈。-YouTube-720p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/行政院介於後門與側門的民眾進入最後的驅離。鎮暴警察先是衝撞,接著再拉出民眾。雙方在拉扯過程中,開始零星對話,雙方都很無奈。-YouTube-720p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>行政院側門部分聲援民眾撤出,一路高喊「馬英九下台、江宜樺下台、退回服貿」往立法院走,他們決定要回去守護立法院。但正門部分仍有聲援民眾與警方拉扯。</p>
|
||||
|
||||
<p>[video width=“568” height=“320” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/行政院側門部分聲援民眾撤出,一路高喊「馬英九下台、江宜樺下台、退回服貿」往立法院走,他們決定要回去守護立法院。但正門部分仍有聲援民眾與警方拉扯。-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/行政院側門部分聲援民眾撤出,一路高喊「馬英九下台、江宜樺下台、退回服貿」往立法院走,他們決定要回去守護立法院。但正門部分仍有聲援民眾與警方拉扯。-YouTube-360p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>行政院驅離現場紀錄</p>
|
||||
|
||||
<p>[video width=“480” height=“360” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/行政院驅離現場紀錄-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/行政院驅離現場紀錄-YouTube-360p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>2014.3.24-手無寸鐵的民眾-被警方強力驅趕-備份</p>
|
||||
|
||||
<p>[video width=“480” height=“360” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/▶-2014.3.24-手無寸鐵的民眾-被警方強力驅趕-備份-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/▶-2014.3.24-手無寸鐵的民眾-被警方強力驅趕-備份-YouTube-360p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>林森北路與北平東路口有警備車駛入,警察強行前進</p>
|
||||
|
||||
<p>[video width=“568” height=“320” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/林森北路與北平東路口有警備車駛入,警察強行前進。-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/林森北路與北平東路口有警備車駛入,警察強行前進。-YouTube-360p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>流血的真相</p>
|
||||
|
||||
<p>[video width=“202” height=“360” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/流血的真相-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/流血的真相-YouTube-360p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>20140324-行政院台灣警察打人,非常暴力</p>
|
||||
|
||||
<p>[video width=“1280” height=“720” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/20140324-行政院台灣警察打人,非常暴力-YouTube-720p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/20140324-行政院台灣警察打人,非常暴力-YouTube-720p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>【行政院現場】稍早後門第一波清場畫面</p>
|
||||
|
||||
<p>[video width=“320” height=“180” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/【行政院現場】稍早後門第一波清場畫面-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/【行政院現場】稍早後門第一波清場畫面-YouTube-360p.mp4"][/video</a>]</p>
|
||||
|
||||
<p>警察以盾打手無寸鐵民眾!!!(高調)</p>
|
||||
|
||||
<p>[video width=“598” height=“360” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/03/Anti-riot-police-HIT-the-protest-people-警察以盾打手無寸鐵民眾!!!(高調)-YouTube-360p.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/03/Anti-riot-police-HIT-the-protest-people-警察以盾打手無寸鐵民眾!!!(高調)-YouTube-360p.mp4"][/video</a>]</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
407
themes/public/article/321123/index.html
Normal file
407
themes/public/article/321123/index.html
Normal file
@@ -0,0 +1,407 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [測試]同步多個Wordpress | My cool new Blog</title>
|
||||
<meta name="description" content="[測試]同步多個Wordpress - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[測試]同步多個Wordpress">
|
||||
<meta itemprop="description" content="[測試]同步多個Wordpress - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[測試]同步多個Wordpress">
|
||||
<meta property="og:description" content="[測試]同步多個Wordpress - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/321123/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/321123/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/321123/">[測試]同步多個Wordpress</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-01-10</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>在GCE上搞了一個測試用的 Wordpress</p>
|
||||
|
||||
<p>想說來玩玩看多個WP同步</p>
|
||||
|
||||
<p>下載了 WP2WP 的plugin ,設定很簡單</p>
|
||||
|
||||
<p>底下試試看能不能同步圖片等等</p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2014/02/yoyo.jpg"><img src="http://www.cowbay.org/wp-content/uploads/2014/02/yoyo.jpg" alt="瑤瑤" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
482
themes/public/article/733/index.html
Normal file
482
themes/public/article/733/index.html
Normal file
@@ -0,0 +1,482 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] DIY FC Storage | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] DIY FC Storage - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] DIY FC Storage">
|
||||
<meta itemprop="description" content="[筆記] DIY FC Storage - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] DIY FC Storage">
|
||||
<meta property="og:description" content="[筆記] DIY FC Storage - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/733/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/733/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/733/">[筆記] DIY FC Storage</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2014-03-31</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>因為工作上的需求,最近在測試VDI的環境,雖然我本來已經有DELL的MD系列Storage
|
||||
但是走的是iscsi的架構,原本只有 1G的頻寬,
|
||||
考慮到VDI在某些特定時段會發生大量的流量吞吐的情形,而且SI對於在現有環境下
|
||||
實際測試出來的數據不滿意,覺得不是很適合拿來建置VDI的環境。
|
||||
當然啦,廠商想要賺硬體的錢,這種想法我可以接受
|
||||
不過總是要知道如果改走8G甚至16G的fiber channel storage
|
||||
和升級成10G的ISCSI 效能會差多少
|
||||
可是廠商表示要借到整組走光纖的Server + Switch + Storage 可能有困難
|
||||
而且基本上我手邊的機器也沒辦法停機下來裝HBA卡,畢竟只是為了測試而已
|
||||
再加上不好光明正大的跟老闆要個五萬十萬的預算就為了看看跑出來的效果如何,
|
||||
老闆大概只會回我「共體時艱」…</p>
|
||||
|
||||
<p>那借又借不到,老闆又不給預算,那怎麼辦呢?
|
||||
想來想去,乾脆來土炮一組好了!
|
||||
機房內有一些零組件,還有一台退役的R410,要搞起來應該不算太困難吧.</p>
|
||||
|
||||
<p>底下簡單介紹這次測試用到的配備,其實光算硬體的價錢,真的不高,
|
||||
畢竟都是一些散置在機房的備品,真正的額外支出很少</p>
|
||||
|
||||
<p>1.DELL 4G HBA 卡
|
||||
DELL QLE2460 4G HBA Adapter x 2 / 300 RMB以內
|
||||
淘寶購買,一張一百多塊RMB
|
||||
這是最具風險的部分,因為要從淘寶買過來,不敢保證東西到底會不會有問題
|
||||
不過因為便宜,還是跟他賭賭看,8G的HBA售價幾乎是10倍以上,所以不考慮
|
||||
請大陸的同事買了之後直送台灣,很快就收到了</p>
|
||||
|
||||
<p>2.5.25轉 2.5 x4 / 1500 台幣
|
||||
這次我計畫要測試4G的FC實際上到底能夠跑到多少速度,
|
||||
如果用2.5”傳統硬碟,擔心硬碟速度會跟不上,
|
||||
所以找了退役的四顆M4 64G SSD作為儲存空間
|
||||
因為一般PC不會有這麼多的SATA電源可以用,所以找了一個這種設備
|
||||
<a href="http://www.icydock.com.tw/goods.php?id=97">http://www.icydock.com.tw/goods.php?id=97</a>
|
||||
<a href="http://www.pcstore.com.tw/megabid/M13937041.htm">http://www.pcstore.com.tw/megabid/M13937041.htm</a>
|
||||
把機殼上的一個5.25空間轉成4 x 2.5,
|
||||
本來這樣子做會擔心的就是硬碟溫度,剛好我這次用SSD來測試,不擔心溫度的問題
|
||||
而且這個東西只需要一個大4pin電源就可以了。
|
||||
3.光纖線 / 300 台幣
|
||||
其實我一開始沒想到光纖線居然這麼貴,短短五米都開價一千多..
|
||||
後來直接找協力廠商幫忙搞一條LC-LC的線來,
|
||||
算成本價 300塊 (我本來想請他喝杯飲料就算了 XD )</p>
|
||||
|
||||
<p>4. DELL H700 Raid Controller
|
||||
拍賣購買,含電池、線材 5000左右</p>
|
||||
|
||||
<p>5.其他硬體配備
|
||||
CPU : i7 型號忘了 一點點重要,因為有大量IO,所以會吃CPU運算,
|
||||
不過大概也就是i3等級可以輕鬆應付
|
||||
M/B : ASUS P8Z68 Deluxe 主機板部分滿重要的,因為HBA & Raid 都走PCI-E
|
||||
而Z68本身沒有內建顯卡,所以顯示卡又吃掉一個PCI-E 還好這張版子有
|
||||
四個PCI-E 足夠使用(除了HBA/RAID/VGA,我還多加了一張 Intel 網卡,
|
||||
其實沒啥必要,這張主機板本身就內建雙網卡,其中一個也是Intel晶片)
|
||||
RAM: Kingston 4Gx4 不是很重要,當作STORAGE用,RAM的用量不多
|
||||
PSU: 隨便
|
||||
CASE:隨便
|
||||
硬碟: WD Sata 160G 灌系統用,不重要
|
||||
OS: OSNexus QuantaStor 這東西滿有趣的,可以用來管NFS/SMB/ISCSI/FC,
|
||||
有興趣可以下載來玩玩看,免費版可以用 6T的空間,綽綽有餘。</p>
|
||||
|
||||
<p>花費不到 5000 台幣
|
||||
其他配備就算都買新的,我想應該也是一萬以內可以搞定
|
||||
主要就是注意PCI-E的數量要夠就好
|
||||
SSD如果用128G的下去玩,四顆 大概也是一萬
|
||||
不過因為我有多的M4 所以就沒有另外買了</p>
|
||||
|
||||
<p>組裝過程就略過了
|
||||
除了買來的HBA沒有短檔版,要上R410時,必須拆檔版,而且不太穩之外,沒什麼大問題
|
||||
在R410上裝好VMWARE ESXI5 會自動抓到這張HBA卡,不需要管驅動,在PC上也是,
|
||||
安裝好QuantaStor,就可以看到HBA卡了</p>
|
||||
|
||||
<p>設定步驟也略過….</p>
|
||||
|
||||
<p>硬體、作業系統、VM都搞定之後
|
||||
在ESXI上起一台Win8,然後跑Crystal Disk Mark 測試看看
|
||||
HBA跑 2G 速度時,CDM測試出來的數據大概是 <sup>170</sup>⁄<sub>170</sub> MB
|
||||
HBA跑 4G 速度時,CDM測試出來的數據大概是 <sup>300</sup>⁄<sub>300</sub> MB</p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2014/03/fc-4G-300MB.png"><img src="http://www.cowbay.org/wp-content/uploads/2014/03/fc-4G-300MB-1024x866.png" alt="fc-4G-300MB" /></a>
|
||||
距離理論數據(2G: 250MB/ 4G: 500MB) 都還有一段距離,其實這也是讓我一直百思不解的地方
|
||||
所以想上來問問看,是不是在家用PC上,PCI-E的頻寬其實是「共用」的,
|
||||
導致從RAID丟資料到HBA,受限於頻寬,才達不到理論數據?
|
||||
因為在我印象中,光纖的儲存設備似乎不像ISCSI這種走ETHERNET的協定,會有衰減的問
|
||||
題吧?
|
||||
或者是有人用過FC SAN的,有沒有數據可以參考看看?</p>
|
||||
|
||||
<p>找時間我再來把SSD裝去R410,然後改從R410提供空間給PC
|
||||
看看這樣會不會比較快..</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,409 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [BLOG] 再次搬家! | My cool new Blog</title>
|
||||
<meta name="description" content="[BLOG] 再次搬家! - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[BLOG] 再次搬家!">
|
||||
<meta itemprop="description" content="[BLOG] 再次搬家! - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[BLOG] 再次搬家!">
|
||||
<meta property="og:description" content="[BLOG] 再次搬家! - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/blog-e5-86-8d-e6-ac-a1-e6-90-ac-e5-ae-b6-ef-bc-81/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/blog-e5-86-8d-e6-ac-a1-e6-90-ac-e5-ae-b6-ef-bc-81/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/blog-e5-86-8d-e6-ac-a1-e6-90-ac-e5-ae-b6-ef-bc-81/">[BLOG] 再次搬家!</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-10-06</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>之前用的123systems 雖然一年只要30美金,就有1core / 2G RAM/20G H.D.D的規格可以用,</p>
|
||||
|
||||
<p>但是速度越來越慢,只有跑個wordpress,卻常常發生網頁開不起來,連SSH登入都近乎停擺的情況。</p>
|
||||
|
||||
<p>剛好時間也快到了,就順勢換成另一個VPS空間 <a href="https://inceptionhosting.com/">https://inceptionhosting.com/</a></p>
|
||||
|
||||
<p>月租費 5.35歐元,換算大概6塊多7塊美金左右,規格同樣是 1 core/2G RAM,硬碟增加到50G。</p>
|
||||
|
||||
<p>而且目前看起來,除了yum在安裝軟體的時候,速度比較慢,還有下載檔案速度大概只有六七百 K左右,</p>
|
||||
|
||||
<p>其他的效能都還算不錯,開網頁、登入發表文章等等都很快速,應該就此定居下來了吧。</p>
|
||||
|
||||
<p>另外,這次順便把很吃資源的apache給換成了 nginx ,對於網站的效能應該也多少有點幫助!</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,405 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [BLOG] 又搬家啦! | My cool new Blog</title>
|
||||
<meta name="description" content="[BLOG] 又搬家啦! - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[BLOG] 又搬家啦!">
|
||||
<meta itemprop="description" content="[BLOG] 又搬家啦! - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[BLOG] 又搬家啦!">
|
||||
<meta property="og:description" content="[BLOG] 又搬家啦! - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/blog-e5-8f-88-e6-90-ac-e5-ae-b6-e5-95-a6-ef-bc-81/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/blog-e5-8f-88-e6-90-ac-e5-ae-b6-e5-95-a6-ef-bc-81/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/blog-e5-8f-88-e6-90-ac-e5-ae-b6-e5-95-a6-ef-bc-81/">[BLOG] 又搬家啦!</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2016-03-08</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>最近DigitalOcean(DO) 新加坡機房的速度越來越慢</p>
|
||||
|
||||
<p>只是拿來做跳板上 PTT 而已,就常常頓爹,用得很不爽</p>
|
||||
|
||||
<p>剛好在測試vultr 的機器,發現日本機房速度滿快的,而且也有FreeBSD可以用</p>
|
||||
|
||||
<p>就花了點時間從DO轉到vultr來,觀察一段時間看看吧..</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,752 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [BLOG] 新增 Vultr Storage VPS 提供 iscsi 給wordpress 主機使用 | My cool new Blog</title>
|
||||
<meta name="description" content="[BLOG] 新增 Vultr Storage VPS 提供 iscsi 給wordpress 主機使用 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[BLOG] 新增 Vultr Storage VPS 提供 iscsi 給wordpress 主機使用">
|
||||
<meta itemprop="description" content="[BLOG] 新增 Vultr Storage VPS 提供 iscsi 給wordpress 主機使用 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[BLOG] 新增 Vultr Storage VPS 提供 iscsi 給wordpress 主機使用">
|
||||
<meta property="og:description" content="[BLOG] 新增 Vultr Storage VPS 提供 iscsi 給wordpress 主機使用 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/blog-e6-96-b0-e5-a2-9e-vultr-storage-vps-e6-8f-90-e4-be-9b-iscsi-e7-b5-a6wordpress-e4-b8-bb-e6-a9-9f-e4-bd-bf-e7-94-a8/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/blog-e6-96-b0-e5-a2-9e-vultr-storage-vps-e6-8f-90-e4-be-9b-iscsi-e7-b5-a6wordpress-e4-b8-bb-e6-a9-9f-e4-bd-bf-e7-94-a8/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/blog-e6-96-b0-e5-a2-9e-vultr-storage-vps-e6-8f-90-e4-be-9b-iscsi-e7-b5-a6wordpress-e4-b8-bb-e6-a9-9f-e4-bd-bf-e7-94-a8/">[BLOG] 新增 Vultr Storage VPS 提供 iscsi 給wordpress 主機使用</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2016-03-10</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/blog">BLOG</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<h2 id="新增-vultr-storage-vps-提供-iscsi-給wordpress-主機使用"><strong>新增 Vultr Storage VPS 提供 iscsi 給wordpress 主機使用</strong></h2>
|
||||
|
||||
<p>前幾天因為DO的WP主機速度不理想,就連拿來當作上PTT的跳板都會頓爹</p>
|
||||
|
||||
<p>所以把主機換到了vultr 的東京機房,光是ping值就從 14x ms 下降到了 4x ms,整個大改善啊!</p>
|
||||
|
||||
<p>而且方案從原本的 10USD 換成了 5USD (1 cpu / 768M/15G) ,裝好FreeBSD拿來跑 WP算是綽綽有餘</p>
|
||||
|
||||
<p>不過因為這台還當作 pydio 主機來用, 15G的空間實在不夠用</p>
|
||||
|
||||
<p>發TICKET詢問客服能不能增加硬碟空間,客服表示只能upgrade plan</p>
|
||||
|
||||
<p>但是再往上一級的10 USD方案,也只有 20G,多了 5 USD 只有多5G空間(好啦 還有流量也增加,問題是我用不到流量啊…)</p>
|
||||
|
||||
<p>算一算,實在不是很划算</p>
|
||||
|
||||
<p>就在這個摸門特,發現了 vultr 有 Storage Instance !</p>
|
||||
|
||||
<p>只要 5USD 就有一台虛擬主機 (1 cpu / 512M/125G SATA HD)</p>
|
||||
|
||||
<p>怎麼算都比upgrade 到 10USD的方案划算,而且價格一樣!</p>
|
||||
|
||||
<p>二話不說,馬上申請一台,一樣跑FreeBSD 10.2,打算拿來當作儲存空間用</p>
|
||||
|
||||
<p>至於要用 sshfs / curlftpfs / nfs /iscsi 則是還沒決定,且戰且走</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p></p>
|
||||
|
||||
<p>系統開起來之後,先到管理介面替兩台主機都新增一個 private IP,然後兩台主機都需要重新開機</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2016/03/firefox_2016-03-10_11-36-04.png"><img src="http://wp.cowbay.org/wp-content/uploads/2016/03/firefox_2016-03-10_11-36-04-1024x722.png" alt="firefox_2016-03-10_11-36-04" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>重新開機後,必須要手動到系統內去新增虛擬 IP</p>
|
||||
|
||||
<p>就分別ssh 到這兩台機器,然後用bsdconfig 去設定 Network Management</p>
|
||||
|
||||
<p>(By the way , Storage Instance 的效能真的差滿多的,兩台一起設定,就能比較出來)</p>
|
||||
|
||||
<p>設定完之後,兩台ping 一下,應該要能通
|
||||
> root@wpstorage:/etc # ping 10.99.0.11
|
||||
>
|
||||
> PING 10.99.0.11 (10.99.0.11): 56 data bytes
|
||||
>
|
||||
> 64 bytes from 10.99.0.11: icmp_seq=0 ttl=64 time=0.469 ms
|
||||
>
|
||||
> 64 bytes from 10.99.0.11: icmp_seq=1 ttl=64 time=0.715 ms
|
||||
>
|
||||
> 64 bytes from 10.99.0.11: icmp_seq=2 ttl=64 time=0.511 ms
|
||||
>
|
||||
> 64 bytes from 10.99.0.11: icmp_seq=3 ttl=64 time=0.755 ms
|
||||
>
|
||||
> ^C
|
||||
>
|
||||
> — 10.99.0.11 ping statistics —
|
||||
>
|
||||
> 4 packets transmitted, 4 packets received, 0.0% packet loss
|
||||
>
|
||||
> round-trip min/avg/max/stddev = 0.<sup>469</sup>⁄<sub>0</sub>.<sup>612</sup>⁄<sub>0</sub>.<sup>755</sup>⁄<sub>0</sub>.124 ms
|
||||
接下來就來測試怎麼把Storage Instance的空間掛來 WP 使用</p>
|
||||
|
||||
<p>先測試比較簡單的 sshfs</p>
|
||||
|
||||
<p>在WP主機上,先載入fuse.ko
|
||||
> kldload fuse.ko
|
||||
然後 sshfs root@10.99.0.11 /mnt</p>
|
||||
|
||||
<p>輸入密碼之後,就把Storage主機的硬碟掛載 /mnt 底下了</p>
|
||||
|
||||
<p>測試一下速度</p>
|
||||
|
||||
<p>root@wp:/iscsi # dd if=/dev/zero of=testfile bs=1k count=100000
|
||||
100000+0 records in
|
||||
100000+0 records out
|
||||
102400000 bytes transferred in 17.661407 secs (1056241 bytes/sec)</p>
|
||||
|
||||
<p>WHAT !!!!!?????</p>
|
||||
|
||||
<p>這效能是怎麼回事???糟糕到一個不行啊!!!換算起來才 1mb 不到!?</p>
|
||||
|
||||
<p>有沒有那麼糟糕啊??看來用 sshfs 行不通!</p>
|
||||
|
||||
<p>馬上 umount</p>
|
||||
|
||||
<p>既然用fuse 去掛載進來的效能這麼糟糕,那 curlftpfs 應該也不用測試了,跳過,改用 iscsi 好了</p>
|
||||
|
||||
<p>翻了一下 google ,好像 FreeBSD 10.2的 iscsi 改用 ctl 來處理</p>
|
||||
|
||||
<p>於是參考這篇文章 <a href="http://jxtm.jzu.cn/?p=3238">用FreeBSD10搭建基于ZFS的iSCSI服务 </a>跳過 ZFS 的部分來建立iscsi target</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>以下這段在 storage 主機操作</p>
|
||||
|
||||
<p>首先修改 /etc/rc.conf 加入
|
||||
> <pre class="brush:java;">ctld_enable=“YES”
|
||||
>
|
||||
>
|
||||
> </pre>
|
||||
</p>
|
||||
|
||||
<p>接著編輯 ctld 的設定檔</p>
|
||||
|
||||
<p>vim /etc/ctld.conf
|
||||
> <pre class="brush:java;">portal-group san {
|
||||
>
|
||||
> discovery-auth-group no-authentication
|
||||
>
|
||||
> listen 10.99.0.10 #改成自己的 IP
|
||||
>
|
||||
> }
|
||||
>
|
||||
>
|
||||
> target iqn.2014-05.com.example:target0 { #target name 可改可不改,就先保留,不要動吧
|
||||
>
|
||||
> auth-group no-authentication
|
||||
>
|
||||
> portal-group san
|
||||
>
|
||||
> lun 0 {
|
||||
>
|
||||
> path /mnt/iscsifile #指定 iscsi file 的位置
|
||||
>
|
||||
> blocksize 4096
|
||||
>
|
||||
> size 100G #指定大小
|
||||
>
|
||||
> }
|
||||
>
|
||||
> }</pre>
|
||||
建立一個 target(iqn.2014-05.com.example:target0 )、一個 portal-group (san) 不需要認證 (反正這個LAN只有我自己的主機能存取)</p>
|
||||
|
||||
<p>再來修改ctld.conf 的權限
|
||||
> <pre class="brush:java;">chmod 600 /etc/ctl.conf</pre>
|
||||
啟動 ctld 服務
|
||||
> <pre class="brush:java;">service ctld start</pre>
|
||||
檢查 /var/log/messages 看看有沒有啥錯誤,正常來說應該不會有啥問題。</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>iscsi target 到這邊設定OK,接著來去WP主機建立 iscsi initiator</p>
|
||||
|
||||
<p>先載入 iscsi_initiator.ko
|
||||
> kldload -v iscsi_initiator.ko
|
||||
如果以後開機要自動載入的話</p>
|
||||
|
||||
<p>vim /boot/loader.conf
|
||||
新增底下這一行
|
||||
> iscsi_initiator_load=”YES”
|
||||
存檔後離開,修改檔案權限
|
||||
> chmod 755 /boot/loader.conf
|
||||
再來,搜尋一下 iscsi target
|
||||
> iscontrol -v -d targetaddress=10.99.0.10 initiatorname=iqn
|
||||
>
|
||||
>
|
||||
> #targetaddress 要改成 storage主機的 IP
|
||||
如果一切沒問題,應該會出現這樣的訊息
|
||||
> adding ‘targetaddress=10.99.0.10’
|
||||
>
|
||||
> I-: cmd=0x3 len=265
|
||||
>
|
||||
> SessionType=Discovery
|
||||
>
|
||||
> InitiatorName=nxl
|
||||
>
|
||||
> MaxBurstLength=131072
|
||||
>
|
||||
> HeaderDigest=None,CRC32C
|
||||
>
|
||||
> DataDigest=None,CRC32C
|
||||
>
|
||||
> MaxRecvDataSegmentLength=65536
|
||||
>
|
||||
> ErrorRecoveryLevel=0
|
||||
>
|
||||
> DefaultTime2Wait=0
|
||||
>
|
||||
> DefaultTime2Retain=0
|
||||
>
|
||||
> DataPDUInOrder=Yes
|
||||
>
|
||||
> DataSequenceInOrder=Yes
|
||||
>
|
||||
> MaxOutstandingR2T=1
|
||||
>
|
||||
> T-: cmd=0x23 len=212
|
||||
>
|
||||
> MaxBurstLength=131072
|
||||
>
|
||||
> HeaderDigest=None
|
||||
>
|
||||
> DataDigest=None
|
||||
>
|
||||
> MaxRecvDataSegmentLength=131072
|
||||
>
|
||||
> ErrorRecoveryLevel=0
|
||||
>
|
||||
> DefaultTime2Wait=0
|
||||
>
|
||||
> DefaultTime2Retain=0
|
||||
>
|
||||
> DataPDUInOrder=Yes
|
||||
>
|
||||
> DataSequenceInOrder=Yes
|
||||
>
|
||||
> MaxOutstandingR2T=1
|
||||
>
|
||||
> I-: cmd=0x4 len=16
|
||||
>
|
||||
> SendTargets=All
|
||||
>
|
||||
> T-: cmd=0x24 len=75
|
||||
>
|
||||
> TargetName=iqn.2014-05.com.example:target0
|
||||
>
|
||||
> TargetAddress=10.99.0.10:3260,2
|
||||
>
|
||||
> TargetName=iqn.2014-05.com.example:target0
|
||||
>
|
||||
> TargetAddress=10.99.0.10:3260,2
|
||||
>
|
||||
> I-: cmd=0x6 len=0
|
||||
>
|
||||
> T-: cmd=0x26 len=0
|
||||
雖然很多看不懂,但是看樣子似乎是有找到,把 targetName / TargetAddress 抄下來</p>
|
||||
|
||||
<p>接著設定 iscsi initiator的設定檔</p>
|
||||
|
||||
<p>vim /etc/iscsi.conf
|
||||
> wpiscsi {
|
||||
>
|
||||
> authmethod = CHAP
|
||||
>
|
||||
> chapIName = YOUR-ISCSI-USERNAME #認證名稱 沒用到
|
||||
>
|
||||
> chapSecret = YOUR-ISCSI-PASSWORD #認證密碼 沒用到
|
||||
>
|
||||
> initiatorname = iqn
|
||||
>
|
||||
> TargetName = iqn.2014-05.com.example:target0 #改成剛剛搜尋回傳的結果
|
||||
>
|
||||
> TargetAddress = 10.99.0.10:3260,2 # 改成剛剛搜尋回傳的結果
|
||||
>
|
||||
> }
|
||||
存檔離開、設定權限
|
||||
> chmod 755 /etc/iscsi.conf
|
||||
測試連線
|
||||
> iscontrol -c /etc/iscsi.conf -n wpiscsi
|
||||
正常的話,會出現類似這樣的訊息
|
||||
> <span style="font-family: Consolas,Monaco,Menlo,Courier,Verdana,sans-serif;"><span style="color: #111111;">iscontrol[8146]: running</span></span>
|
||||
dmesg 看一下,最底下應該會出現找到新磁碟的訊息
|
||||
> da0 at iscsi0 bus 0 scbus2 target 0 lun 0
|
||||
>
|
||||
> da0: <FREEBSD CTLDISK 0001> Fixed Direct Access SPC-4 SCSI device
|
||||
>
|
||||
> da0: Serial Number MYSERIAL 0
|
||||
>
|
||||
> da0: 102400MB (26214400 4096 byte sectors: 255H 63S/T 1631C)
|
||||
BINGO !抓到了!</p>
|
||||
|
||||
<p>再來就是去bsdconfig 分割,然後掛載
|
||||
> root@wp:/iscsi # mount
|
||||
>
|
||||
> /dev/vtbd0p2 on / (ufs, local, soft-updates)
|
||||
>
|
||||
> devfs on /dev (devfs, local, multilabel)
|
||||
>
|
||||
> /dev/da0s1a on /iscsi (ufs, local, journaled soft-updates)
|
||||
>
|
||||
> root@wp:/iscsi #
|
||||
馬上來測試一下速度看看!可以發現磁碟寫入速度有大幅度的增加!!
|
||||
> root@wp:/iscsi # dd if=/dev/zero of=testfile bs=1k count=1000
|
||||
>
|
||||
> 1000+0 records in
|
||||
>
|
||||
> 1000+0 records out
|
||||
>
|
||||
> 1024000 bytes transferred in 0.005329 secs (192151364 bytes/sec)
|
||||
>
|
||||
> root@wp:/iscsi # dd if=/dev/zero of=testfile bs=1k count=10000
|
||||
>
|
||||
> 10000+0 records in
|
||||
>
|
||||
> 10000+0 records out
|
||||
>
|
||||
> 10240000 bytes transferred in 0.196187 secs (52195094 bytes/sec)
|
||||
>
|
||||
> root@wp:/iscsi # dd if=/dev/zero of=testfile bs=1k count=100000
|
||||
>
|
||||
> 100000+0 records in
|
||||
>
|
||||
> 100000+0 records out
|
||||
>
|
||||
> 102400000 bytes transferred in 17.661407 secs (5797953 bytes/sec)
|
||||
>
|
||||
> root@wp:/iscsi # dd if=/dev/zero of=testfile bs=1k count=100000
|
||||
>
|
||||
> 100000+0 records in
|
||||
>
|
||||
> 100000+0 records out
|
||||
>
|
||||
> 102400000 bytes transferred in 9.815858 secs (10432099 bytes/sec)
|
||||
</p>
|
||||
|
||||
<p>接著編輯 /root/iscsi.sh ,重開機就去執行這個指令,把iscsi 掛進來
|
||||
> #!/bin/sh
|
||||
>
|
||||
> iscontrol -c /etc/iscsi.conf -n wpiscsi
|
||||
>
|
||||
> sleep 60
|
||||
>
|
||||
> mount /dev/da0s1d /iscsi
|
||||
chmod u+rwx /root/iscsi.sh</p>
|
||||
|
||||
<p>大功告成!</p>
|
||||
|
||||
<p>日後重開機的話,手動執行 iscsi.sh ,就可以了!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/iscsi">iscsi</a>
|
||||
|
||||
<a href="/tags/storage">storage</a>
|
||||
|
||||
<a href="/tags/vps">vps</a>
|
||||
|
||||
<a href="/tags/vultr">Vultr</a>
|
||||
|
||||
<a href="/tags/wordpress">wordpress</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,421 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [BLOG]Wordpress上超好用的備份外掛 BackWPup | My cool new Blog</title>
|
||||
<meta name="description" content="[BLOG]Wordpress上超好用的備份外掛 BackWPup - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[BLOG]Wordpress上超好用的備份外掛 BackWPup ">
|
||||
<meta itemprop="description" content="[BLOG]Wordpress上超好用的備份外掛 BackWPup - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[BLOG]Wordpress上超好用的備份外掛 BackWPup ">
|
||||
<meta property="og:description" content="[BLOG]Wordpress上超好用的備份外掛 BackWPup - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/blogwordpress-e4-b8-8a-e8-b6-85-e5-a5-bd-e7-94-a8-e7-9a-84-e5-82-99-e4-bb-bd-e5-a4-96-e6-8e-9b-backwpup/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/blogwordpress-e4-b8-8a-e8-b6-85-e5-a5-bd-e7-94-a8-e7-9a-84-e5-82-99-e4-bb-bd-e5-a4-96-e6-8e-9b-backwpup/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/blogwordpress-e4-b8-8a-e8-b6-85-e5-a5-bd-e7-94-a8-e7-9a-84-e5-82-99-e4-bb-bd-e5-a4-96-e6-8e-9b-backwpup/">[BLOG]Wordpress上超好用的備份外掛 BackWPup </a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-10-07</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/blog">BLOG</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>這兩天因為VPS搬家的關係,又稍微研究了一下WP的備份外掛。</p>
|
||||
|
||||
<p>本來我是用snapshot backup / simple backup</p>
|
||||
|
||||
<p>這兩個都支援自動排程和備份到遠端的功能。</p>
|
||||
|
||||
<p>不過,都不支援RESTORE…雖說我在還原時,大部分都是在CONSOLE底下直接操作,不過還是希望外掛能夠考慮到這一點。</p>
|
||||
|
||||
<p>看到snapshot backup的作者,有開發了另一套新的備份外掛– <a href="http://wordpress.org/plugins/backwpup/">BackWPup</a></p>
|
||||
|
||||
<p>可以排程、備份到遠端(FTP/AMAZON S3/DROPBOX),也加入了還原的功能!(不過我大概還是不會去軟體裡面用吧,直接在CONSOLE底下解壓縮、MYSQLDUMP快多了),而且LOG很詳細!可以直接看到BACKUP SCRIPT在執行的情況,非常方便!</p>
|
||||
|
||||
<p>可以在備份工作列表中,直接啟動備份。還會有進度可以看!</p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2013/10/backwpup-02.png"><img src="http://www.cowbay.org/wp-content/uploads/2013/10/backwpup-02-1024x510.png" alt="backwpup-02" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>按下 Display Working Log ,就會出現備份SCRIPT執行的狀況,拿來DEBUG再方便不過了!</p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2013/10/backwpup-03.png"><img src="http://www.cowbay.org/wp-content/uploads/2013/10/backwpup-03-1024x507.png" alt="backwpup-03" /></a></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
1500
themes/public/article/creating-a-new-theme/index.html
Normal file
1500
themes/public/article/creating-a-new-theme/index.html
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,515 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [筆記] Daily backup Websites and Offsite Backup using FTP 網頁備份 | My cool new Blog</title>
|
||||
<meta name="description" content="[筆記] Daily backup Websites and Offsite Backup using FTP 網頁備份 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[筆記] Daily backup Websites and Offsite Backup using FTP 網頁備份">
|
||||
<meta itemprop="description" content="[筆記] Daily backup Websites and Offsite Backup using FTP 網頁備份 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[筆記] Daily backup Websites and Offsite Backup using FTP 網頁備份">
|
||||
<meta property="og:description" content="[筆記] Daily backup Websites and Offsite Backup using FTP 網頁備份 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/daily-autobackup-websites-offsite-backup-using-ftp/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/daily-autobackup-websites-offsite-backup-using-ftp/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/daily-autobackup-websites-offsite-backup-using-ftp/">[筆記] Daily backup Websites and Offsite Backup using FTP 網頁備份</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2016-04-14</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<h2 id="daily-backup-websites-and-offsite-backup-using-ftp-網頁備份"><strong> Daily backup Websites and Offsite Backup using FTP 網頁備份</strong></h2>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>1.多個資料庫一起備份 (事實上應該說備份MySQL Server內的所有資料庫) backup multiple databases , in facts , all databases will be dump and backup</p>
|
||||
|
||||
<p>2.每一天都是完整備份,所以空間使用量請自行斟酌 in my case , there`s a little more than 500MB per day , that means 180GB per year</p>
|
||||
|
||||
<p>3.備份完的資料透過FTP 外推到其他空間 backup files will be push to another sites using FTP</p>
|
||||
|
||||
<p>4.變數請自行替換成符合個人的環境 please consider to change the variables in the script</p>
|
||||
|
||||
<p>
|
||||
> #!/bin/bash
|
||||
>
|
||||
>
|
||||
> ############### Infos - Edit them accordingly ########################
|
||||
>
|
||||
>
|
||||
> DATE=<code>date +%Y-%m-%d</code>
|
||||
>
|
||||
>
|
||||
> DATECODE=<code>date +%Y%m%d</code>
|
||||
>
|
||||
> LOCAL_BACKUP_DIR=“/backups”
|
||||
>
|
||||
> #DB_NAME1=“DB1”
|
||||
>
|
||||
> #DB_NAME2=“DB2”
|
||||
>
|
||||
> #DB_NAME3=“DB3”
|
||||
>
|
||||
> #DB_NAME4=“DB4”
|
||||
>
|
||||
> DB_USER=“DBadmin”
|
||||
>
|
||||
> DB_PASSWORD=“DBadminpassword”
|
||||
>
|
||||
>
|
||||
> FTP_SERVER=“ftp.abc.com”
|
||||
>
|
||||
> FTP_USERNAME=“ftpuser”
|
||||
>
|
||||
> FTP_PASSWORD=“ftpuserpassword”
|
||||
>
|
||||
> FTP_UPLOAD_DIR=“/website_backup”
|
||||
>
|
||||
>
|
||||
> LOG_FILE=/backups/backup-DATE.log
|
||||
>
|
||||
>
|
||||
> ############### Local Backup ########################
|
||||
>
|
||||
> #<del>mysqldump -u $DB_USER -p$DB_PASSWORD –databases $DB_NAME1 $DB_NAME2 $DB_NAME3 $DB_NAME4 |gzip > $LOCAL_BACKUP<em>DIR/$DATE-DB.sql.gz</del>
|
||||
>
|
||||
> #<del>mysql -uDBadmin -pDBadminpassword -e ‘show databases’ | while read dbname; do mysqldump -uroot -pu6hk4 “$dbname” > “$dbname”</em>$datecode.sql; done</del>
|
||||
>
|
||||
> mysql -uroot -pDBadmin -e ‘show databases’|grep -v Databas|grep -v information | while read dbname; do mysqldump -uDBadmin -pDBadminpassword “$dbname” > /backups/“$dbname”<em>$DATECODE.sql; done
|
||||
>
|
||||
> ls /backups/*.sql|while read dbname;do gzip -9 “$dbname”;done
|
||||
>
|
||||
> #############################################
|
||||
>
|
||||
> #網頁原始程式備份 ##
|
||||
>
|
||||
> #############################################
|
||||
>
|
||||
>
|
||||
> ls -l /var/www/html |egrep “^d”|awk -F “ ” ‘{print $9}’|while read sitename;do tar czvf /backups/“$sitename”</em>$DATECODE.tgz /var/www/html/$sitename;done
|
||||
>
|
||||
> #mysqldump -u $DB_USER -p$DB_PASSWORD $DB_NAME | gzip > $LOCAL_BACKUP_DIR/$DATE-$DB_NAME.sql.gz
|
||||
>
|
||||
>
|
||||
> ############### UPLOAD to FTP Server ################
|
||||
>
|
||||
>
|
||||
> ftp -nv $FTP_SERVER << EndFTP
|
||||
>
|
||||
> user “$FTP_USERNAME” “$FTP_PASSWORD”
|
||||
>
|
||||
> binary
|
||||
>
|
||||
> cd $FTP_UPLOAD_DIR
|
||||
>
|
||||
> lcd $LOCAL_BACKUP_DIR
|
||||
>
|
||||
> prom
|
||||
>
|
||||
> mput *.sql.gz
|
||||
>
|
||||
> mput *.tgz
|
||||
>
|
||||
> bye
|
||||
>
|
||||
> EndFTP
|
||||
>
|
||||
>
|
||||
> ############### Check and save log, also send an email ################
|
||||
>
|
||||
>
|
||||
> if test $? = 0
|
||||
>
|
||||
> then
|
||||
>
|
||||
> echo “Database Successfully Uploaded to the Ftp Server!”
|
||||
>
|
||||
> echo -e “Database Successfully created and uploaded to the FTP Server!” | mail -s “Backup from $DATE” user@abc.com
|
||||
>
|
||||
>
|
||||
> else
|
||||
>
|
||||
> echo “Error in database Upload to Ftp Server” > $LOG_FILE
|
||||
>
|
||||
> fi
|
||||
</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,442 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> 依稀-安靜聽完這一首 | My cool new Blog</title>
|
||||
<meta name="description" content="依稀-安靜聽完這一首 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="依稀-安靜聽完這一首">
|
||||
<meta itemprop="description" content="依稀-安靜聽完這一首 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="依稀-安靜聽完這一首">
|
||||
<meta property="og:description" content="依稀-安靜聽完這一首 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e4-be-9d-e7-a8-80-e5-ae-89-e9-9d-9c-e8-81-bd-e5-ae-8c-e9-80-99-e4-b8-80-e9-a6-96/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/e4-be-9d-e7-a8-80-e5-ae-89-e9-9d-9c-e8-81-bd-e5-ae-8c-e9-80-99-e4-b8-80-e9-a6-96/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e4-be-9d-e7-a8-80-e5-ae-89-e9-9d-9c-e8-81-bd-e5-ae-8c-e9-80-99-e4-b8-80-e9-a6-96/">依稀-安靜聽完這一首</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-07-29</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>他说过就算分手 也要做朋友
|
||||
他笑的时候光芒都将我刺透
|
||||
回想那甜蜜的温馨的每一刻
|
||||
流着泪也要你快乐
|
||||
祝福的话 我要怎么备注
|
||||
把想他的话 一句句变音符
|
||||
收拾好情绪 避免 渐渐麻木
|
||||
忘记他已经 有了归属
|
||||
要看开一点 微笑却没余地
|
||||
没有他在 学不会收拾那情绪
|
||||
是他不懂珍惜 还是我太任性
|
||||
时间会将 这一切治愈
|
||||
可我还是不习惯 没有他的温柔
|
||||
拿着相片情不自禁发呆 我想我还爱
|
||||
他说过就算分手 也要做朋友
|
||||
他笑的时候 光芒都将我刺透
|
||||
回想那甜蜜的 温馨的每一刻
|
||||
流着泪 也要你快乐
|
||||
他说过他会爱我 一直到永久
|
||||
他说了太多 分手要给我自由
|
||||
既然无法承受 也别再多找借口
|
||||
就安静 听完这一首
|
||||
要看开一点 微笑却没余地
|
||||
没有他在 学不会收拾那情绪
|
||||
是他不懂珍惜 还是我太任性
|
||||
时间会将 这一切治愈
|
||||
可我还是不习惯 没有他的温柔
|
||||
拿着相片情不自禁发呆 我想我还爱
|
||||
他说过就算分手 也要做朋友
|
||||
他笑的时候 光芒都将我刺透
|
||||
回想那甜蜜的 温馨的每一刻
|
||||
流着泪 也要你快乐
|
||||
他说过他会爱我 一直到永久
|
||||
他说了太多 分手要给我自由
|
||||
既然无法承受 也别再多找借口
|
||||
就安静 听完这一首
|
||||
他说过就算分手 也要做朋友
|
||||
他笑的时候 光芒都将我刺透
|
||||
回想那甜蜜的 温馨的每一刻
|
||||
流着泪 也要你快乐
|
||||
他说过他会爱我 一直到永久
|
||||
他说了太多 分手要给我自由
|
||||
既然无法承受 也别再多找借口
|
||||
就安静 听完这一首</p>
|
||||
|
||||
<p><a href="http://www.youtube.com/watch?v=ZXL1_oP4sCQ">http://www.youtube.com/watch?v=ZXL1_oP4sCQ</a></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,875 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> 個人/家庭 資料備份到百度雲端空間 | My cool new Blog</title>
|
||||
<meta name="description" content="個人/家庭 資料備份到百度雲端空間 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="個人/家庭 資料備份到百度雲端空間">
|
||||
<meta itemprop="description" content="個人/家庭 資料備份到百度雲端空間 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="個人/家庭 資料備份到百度雲端空間">
|
||||
<meta property="og:description" content="個人/家庭 資料備份到百度雲端空間 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-80-8b-e4-ba-ba-e5-ae-b6-e5-ba-ad-e8-b3-87-e6-96-99-e5-82-99-e4-bb-bd-e5-88-b0-e7-99-be-e5-ba-a6-e9-9b-b2-e7-ab-af-e7-a9-ba-e9-96-93/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/e5-80-8b-e4-ba-ba-e5-ae-b6-e5-ba-ad-e8-b3-87-e6-96-99-e5-82-99-e4-bb-bd-e5-88-b0-e7-99-be-e5-ba-a6-e9-9b-b2-e7-ab-af-e7-a9-ba-e9-96-93/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-80-8b-e4-ba-ba-e5-ae-b6-e5-ba-ad-e8-b3-87-e6-96-99-e5-82-99-e4-bb-bd-e5-88-b0-e7-99-be-e5-ba-a6-e9-9b-b2-e7-ab-af-e7-a9-ba-e9-96-93/">個人/家庭 資料備份到百度雲端空間</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-04-09</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>1.前言</p>
|
||||
|
||||
<p>2.雲端空間介紹</p>
|
||||
|
||||
<p>3.申請雲端空間(以百度雲為例)</p>
|
||||
|
||||
<p>4.下載、安裝雲端同步軟體</p>
|
||||
|
||||
<p>5.設置雲端同步軟體,自動上傳特定路徑內的檔案到雲端空間</p>
|
||||
|
||||
<p>6.與備份軟體的結合,達成檔案壓縮加密後自動上傳</p>
|
||||
|
||||
<p><del>7.資料分級、保密</del></p>
|
||||
|
||||
<p>feathers : Sync to remote and delete local</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p></p>
|
||||
|
||||
<p><strong>一、前言</strong></p>
|
||||
|
||||
<p>在3C產品越來越發達的現代,每天在不同裝置上產生的資料與日俱增,有的是網路下載來的影片、音樂,有的是手機、相機拍攝的照片、短片,這些資料平常散佈在各個裝置上,使用起來總是不那麼方便,而且因為儲存空間有限,但是欲望無窮,總是想要拍更多的照片,抓最新的影片,<s>偷拍更多的短片</s>….</p>
|
||||
|
||||
<p>於是乎,有部份使用者就想到了把這些裝置上的資料都複製到平常使用的桌機/筆電上進行分類、整理、上傳,這個看似方便的動作,卻常常因為機器停電、硬碟故障、使用者誤刪等等原因,進而造成資料遺失的重大危機。如果只是一般不重要的資料倒也就罷了,萬一是學生的畢業論文資料、工作論文資料、料倒所需文件、又或者是小孩從小到大的紀錄,這些資料如果遺失了,那可真是損失慘重啊!透過專業廠商進行資料救援,所費不貲,動輒數千上萬,還不一定能夠救回所有資料!</p>
|
||||
|
||||
<p><strong>二、雲端空間介紹</strong></p>
|
||||
|
||||
<p>當然,有部份廠商嗅到這部份的商機,於是推出了「雲端空間」的服務,所謂的雲端空間,其實就是廠商提供了不定容量的儲存空間,讓使用者上傳、存放資料。由於大部分廠商的機房可靠度遠高於家庭內的環境,因此可以把這些雲端空間視為資料的備份倉庫,萬一本機的電腦因為種種原因造成資料遺失,就可以透過雲端空間把備份資料救回。包括了Amazon 的Cloud Drive、Google 的 Google Drive、微軟的 OneDrive 等等,這些廠商為了吸引用戶上門,多半都會提供免費的空間使用,像Cloud Drive 有免費5G,Google Drive 有免費 15G ,OneDrive也是15G,但是在普遍追求高解析影像的現在,對於儲存空間的需求是越來越大,於是,在中國大陸開始推出了以TB為單位的雲端空間,像是百度的百度雲(2T)、360雲盤更是號稱「無限容量」,滿足使用者對於空間的渴望。底下就簡單介紹如何透過百度雲的同步工具,將影像、照片、文件等等各種資料同步到百度雲空間上。</p>
|
||||
|
||||
<p>然而,中國畢竟是中國,「詭異」的網路政策,總是讓人無法安心的將資料上傳在中國的伺服器上,如果對於資料安全有比較多的考量,建議還是改用「私有雲」的方式進行備份,不過這就跟本篇文章要介紹的作法不同了,而且也需要支出一筆額外的費用,這部份就看看以後有沒有機會再來介紹。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>申請雲端空間</strong><strong>(</strong><strong>以百度雲為例</strong><strong>)</strong></p>
|
||||
|
||||
<p>百度雲 <a href="http://pan.baidu.com">http://pan.baidu.com</a> 提供了數種登入方式,也提供了外部帳號認證的機制(像是 QQ /微博/人人網),不過都不是台灣熟知的網站,所以建議還是直接申請帳號就好。</p>
|
||||
|
||||
<p>首先開啟 百度雲首頁 <a href="http://pan.baidu.com">http://pan.baidu.com</a>,點選立即註冊百度帳號</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-12-19.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-12-19_thumb.png" alt="2015-04-07_16-12-19" title="2015-04-07_16-12-19" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>由於一般不會擁有大陸的手機號碼,所以建議用郵件帳號註冊,順道提一下,這邊的驗證碼還算「親民」的</p>
|
||||
|
||||
<p>在大陸網站碰過驗證碼是簡體中文字…整個傻眼</p>
|
||||
|
||||
<p>輸入郵件位址、密碼、驗證碼,確認勾選「我已閱讀並接受<百度用戶協議>」後,按下註冊按鈕</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-17-51.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-17-51_thumb.png" alt="2015-04-07_16-17-51" title="2015-04-07_16-17-51" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>接著就到郵箱去檢查是不是有收到帳號「激活」的信件</p>
|
||||
|
||||
<p>信件中會有個「激活」的連結,可以直接點選來啟用帳號</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-18-41.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-18-41_thumb.png" alt="2015-04-07_16-18-41" title="2015-04-07_16-18-41" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>點選連結之後,還要經過一次手機簡訊的驗證手續(大陸很愛搞這套)</p>
|
||||
|
||||
<p>輸入手機號碼點發送之後,過不久手機上就會收到帶有六位數驗證碼的簡訊</p>
|
||||
|
||||
<p>填好驗證碼之後,按下提交,帳號註冊、啟動、驗證的步驟就完成了,會直接把頁面轉到百度雲的首頁</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-19-45.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-19-45_thumb.png" alt="2015-04-07_16-19-45" title="2015-04-07_16-19-45" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>首次進入百度雲首頁時,會有一些功能說明,有興趣可以慢慢欣賞。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-20-13.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-20-13_thumb.png" alt="2015-04-07_16-20-13" title="2015-04-07_16-20-13" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>接著我們要下載百度雲同步的工具,要提醒一下,百度雲的工具軟體有兩種</p>
|
||||
|
||||
<p>一個叫百度雲管家,一個叫百度雲同步盤</p>
|
||||
|
||||
<p>這次要下載的是百度雲同步盤,在畫面上點擊 PC版下載</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-20-39.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-20-39_thumb.png" alt="2015-04-07_16-20-39" title="2015-04-07_16-20-39" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>點擊下載 Windows版</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-09_10-22-38.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-09_10-22-38_thumb.png" alt="2015-04-09_10-22-38" title="2015-04-09_10-22-38" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>下載完成後開始進行安裝</p>
|
||||
|
||||
<p>順帶一提,不管安裝什麼軟體,請注意在進行安裝程序時,畫面上的提示,不要不管說啥都一路下一步…很容易被裝了一些有的沒的軟體</p>
|
||||
|
||||
<p>這邊有兩個組件(plugin) ,一個是將 outlook 附件存到百度,一個是網頁上傳的功能,看個人需要決定要不要裝,我是兩個都取消後,再點選安裝</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-39-37.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-39-37_thumb.png" alt="2015-04-07_16-39-37" title="2015-04-07_16-39-37" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>設置雲端同步軟體,自動上傳特定路徑內的檔案到雲端空間</strong></p>
|
||||
|
||||
<p>安裝完成後,會開啟百度雲同步盤的程式</p>
|
||||
|
||||
<p>要求輸入帳號密碼,就輸入剛剛申請過的帳號、密碼,如果不是多人使用同一台電腦的環境,又或者不怕別人看到雲端空間的內容的話</p>
|
||||
|
||||
<p>這邊就把記住密碼勾選起來,按下登錄</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-40-02.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-40-02_thumb.png" alt="2015-04-07_16-40-02" title="2015-04-07_16-40-02" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>第一次進入,會要求選擇要同步的文件夾,第一次玩就用預設值吧,如果不滿意,在程式的設定裡也可以進行修改,接著按下確定</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-40-16.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-40-16_thumb.png" alt="2015-04-07_16-40-16" title="2015-04-07_16-40-16" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>這邊直接按確定就好(我也不知道問這個問題是幹嘛用的 )</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-40-35.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-40-35_thumb.png" alt="2015-04-07_16-40-35" title="2015-04-07_16-40-35" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>接下來會出現 <span style="text-decoration: line-through;">新手村教學 </span>引導說明</p>
|
||||
|
||||
<p>這邊 <span style="text-decoration: line-through;">打怪不會有經驗值,更不會掉寶物</span> ,直接跳過吧…</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-40-43.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-40-43_thumb.png" alt="2015-04-07_16-40-43" title="2015-04-07_16-40-43" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>真囉唆…當然是確定退出!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-40-50.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-40-50_thumb.png" alt="2015-04-07_16-40-50" title="2015-04-07_16-40-50" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>接著程式會打開百度雲同步盤的目錄,我先隨手複製一個檔案進去</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-42-10.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-42-10_thumb.png" alt="2015-04-07_16-42-10" title="2015-04-07_16-42-10" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>接著切換到剛剛瀏覽器的畫面,就會看到剛剛拉進同步盤的檔案,在瀏覽器上也看到了!(實際上需要一點時間,看個人的網路速度而定,中華電信雙向100M跑上下傳都還滿順的)</p>
|
||||
|
||||
<p>畫面左下方有個免費領取 2048G 容量的連結,點進去之後,會提示你如果在手機等等行動裝置上,也下載百度雲的同步工具</p>
|
||||
|
||||
<p>就可以免費增加 2T的空間,這部份不領白不領,就花點時間去依照說明操作吧,這邊就先不說明了</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-44-31.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_16-44-31_thumb.png" alt="2015-04-07_16-44-31" title="2015-04-07_16-44-31" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>進行到這邊,已經把基本的帳號申請、啟用、驗證,以及安裝同步工具、測試同步檔案的部份完成,接下來將說明透過備份軟體,把檔案加密壓縮後丟到雲端空間的操作</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<h2 id="span-style-font-weight-bold-與備份軟體的結合-達成檔案壓縮加密後自動上傳-span"><span style="font-weight: bold;">與備份軟體的結合,達成檔案壓縮加密後自動上傳</span></h2>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>網路上可以找到的備份軟體實在太多了!這邊僅介紹自己使用上比較順手的 <strong>Cobian Backup</strong></p>
|
||||
|
||||
<p><a href="http://www.cobiansoft.com/" title="http://www.cobiansoft.com/">http://www.cobiansoft.com/</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>一開始當然還是從網頁上把檔案下載回來,開始進行安裝</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-17-39.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-17-39_thumb.png" alt="2015-04-07_17-17-39" title="2015-04-07_17-17-39" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>授權說明,沒問題就勾選 「 I accept the conditions」,有問題就 Exit 吧(廢話…</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-17-49.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-17-49_thumb.png" alt="2015-04-07_17-17-49" title="2015-04-07_17-17-49" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>選擇安裝路徑,這邊不太需要去更改,下面的選項,請特別留意第三個 Install the Volume Shadow Copy requester</p>
|
||||
|
||||
<p>Volume Shadow Copy 中文叫陰影複製? 簡單說就是會針對現在的硬碟資料作一份快照,然後備份軟體將這份快照掛載到軟體內</p>
|
||||
|
||||
<p>再從這個掛載進來的磁區進行資料備份,這樣可以避免備份工作進行時,有些檔案因為已經被開啟,造成無法進行備份的狀況</p>
|
||||
|
||||
<p>詳細資料可以問問 google</p>
|
||||
|
||||
<p><a href="https://www.google.com.tw/search?q=volume+shadow+copy&amp;ie=utf-8&amp;oe=utf-8&amp;gws_rd=cr&amp;ei=EHUnVbK7CczX8gWFiYHADA" title="https://www.google.com.tw/search?q=volume+shadow+copy&amp;ie=utf-8&amp;oe=utf-8&amp;gws_rd=cr&amp;ei=EHUnVbK7CczX8gWFiYHADA">https://www.google.com.tw/search?q=volume+shadow+copy&ie=utf-8&oe=utf-8&gws_rd=cr&ei=EHUnVbK7CczX8gWFiYHADA</a></p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-18-07.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-18-07_thumb.png" alt="2015-04-07_17-18-07" title="2015-04-07_17-18-07" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>安裝的類型,我選擇以服務形式進行安裝,如果選這個,底下會詢問要用什麼帳號進行安裝</p>
|
||||
|
||||
<p>Windows 系統預設會有一個本機系統帳戶,可以管理這些服務,那為什麼還要用其他帳號進行安裝呢?</p>
|
||||
|
||||
<p>這是因為如果備份的來源/目的假如是 NAS 的話,就會需要輸入帳號密碼來登入NAS,這時候如果選擇 local system account</p>
|
||||
|
||||
<p>就會發生帳號密碼不對,進而無法存取的狀況</p>
|
||||
|
||||
<p>雖然這次沒有要存取 NAS ,不過還是習慣改成自己的帳號密碼了..</p>
|
||||
|
||||
<p>接著按下 Next</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-18-15.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-18-15_thumb.png" alt="2015-04-07_17-18-15" title="2015-04-07_17-18-15" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>如果選擇用本機系統帳號,就會提示可能發生的問題</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-19-08.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-19-08_thumb.png" alt="2015-04-07_17-19-08" title="2015-04-07_17-19-08" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>設定完成,可以開始進行安裝了</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-19-18.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-19-18_thumb.png" alt="2015-04-07_17-19-18" title="2015-04-07_17-19-18" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>安裝過程都會在視窗上顯示訊息,中間會暫停個幾秒鐘安裝、啟動服務</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-19-33.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-19-33_thumb.png" alt="2015-04-07_17-19-33" title="2015-04-07_17-19-33" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>裝完了!</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-19-58.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-19-58_thumb.png" alt="2015-04-07_17-19-58" title="2015-04-07_17-19-58" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>安裝完成後,進入主畫面,先來修改語言設定,Cobian Backup 預設內建多國語言,所以有繁體中文可以選</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-20-41.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-20-41_thumb.png" alt="2015-04-07_17-20-41" title="2015-04-07_17-20-41" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>先來新增一個備份工作</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-21-17.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-21-17_thumb.png" alt="2015-04-07_17-21-17" title="2015-04-07_17-21-17" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>首先會進入一般選項,這裡要注意備份類型,簡單解釋如下</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>完整備份: 美一次進行備份工作時,來源目錄內有哪些檔案、目錄,通通備份起來</p>
|
||||
|
||||
<p>增量備份:備份上次備份後,新增、修改過的檔案</p>
|
||||
|
||||
<p>差異備份:備份上次完整備份後,新增、修改過的檔案</p>
|
||||
|
||||
<p>虛擬備份: Dry Run 只是試跑,不會真正進行備份</p>
|
||||
|
||||
<p>增量備份和差異備份的差異,可以問問 google <a href="http://is.gd/POPGql" title="http://is.gd/POPGql">http://is.gd/POPGql</a></p>
|
||||
|
||||
<p>一開始可能不太好理解,不過就這次操作的目的而言,增量、差異備份對我們來說沒差</p>
|
||||
|
||||
<p>基於個人習慣,我還是選擇差異備份,同時檢查上面的五個選項是否都有勾選</p>
|
||||
|
||||
<p>ok之後,點畫面左邊的檔案設定來源和目的地</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-11-25.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-11-25_thumb.png" alt="2015-04-10_15-11-25" title="2015-04-10_15-11-25" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>上面是來源目錄,下面是目的地目錄,我們可以直接按新增去選擇</p>
|
||||
|
||||
<p>這邊的來源我選擇我的文件夾裡面的圖片目錄,目的則是前面安裝完的百度雲同步盤目錄</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-22-35.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-22-35_thumb.png" alt="2015-04-07_17-22-35" title="2015-04-07_17-22-35" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>選擇目的地目錄的視窗</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-22-20.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-22-20_thumb.png" alt="2015-04-07_17-22-20" title="2015-04-07_17-22-20" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>來源、目的設定完成後,就切換到設定排程視窗,這邊設定每天晚上的 11:59:59 自動進行備份,當然可以依照個人需求去進行調整</p>
|
||||
|
||||
<p>如果排程類型選擇定時,底下的間隔選擇 1分鐘,那就是每一分鐘都會進行一次備份工作,不過我想應該不會有這麼迫切進行備份的需求吧…</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-23-29.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-07_17-23-29_thumb.png" alt="2015-04-07_17-23-29" title="2015-04-07_17-23-29" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>再來是動態設定,這邊可以設定備份工作執行時,在系統上的優先順序</p>
|
||||
|
||||
<p>還有要保留幾份備份資料,不過我們這次的目的,不需要保留多份備份,所以都不修改</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-24-57.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-24-57_thumb.png" alt="2015-04-10_15-24-57" title="2015-04-10_15-24-57" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>再來是設定「封存」條件</p>
|
||||
|
||||
<p>這邊其實就是設定在備份時,會先把來源目錄壓縮、加上密碼保護</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-26-41.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-26-41_thumb.png" alt="2015-04-10_15-26-41" title="2015-04-10_15-26-41" /></a></p>
|
||||
|
||||
<p>前面提過,因為這次選擇的雲端空間是中國的百度雲,如果對於資料有安全上的疑慮</p>
|
||||
|
||||
<p>那就可以在這邊選擇壓縮、加密</p>
|
||||
|
||||
<p>當然,在數學的角度來說,加密一定可以破,要花多久時間而已</p>
|
||||
|
||||
<p>建議是用英文大小寫、數字、符號當作密碼,增加破解密碼的難度</p>
|
||||
|
||||
<p>如果實在想不出來,這邊建議可以考慮找一個字串,然後在記事本中,不要切換輸入法,但是用自己常用的輸入法把這個字串打出來,用這個按鍵組合作為密碼</p>
|
||||
|
||||
<p>舉例來說,我常用注音,那我想用中華民國的注音輸入按鍵組合作為密碼</p>
|
||||
|
||||
<p>那我就開個記事本,在記事本中,英數輸入法狀態下,盲打「中華民國」的注音,就會得到圖中的結果,就用這串文字當作密碼</p>
|
||||
|
||||
<p>以後要輸入密碼時,就在英數輸入法的狀態下,打出中華民國的注音按鍵就可以</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-32-03.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-32-03_thumb.png" alt="2015-04-10_15-32-03" title="2015-04-10_15-32-03" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>接著是過濾條件,這邊可以設定只要備份哪些類型的條件、要排除哪些類型的條件不要備份</p>
|
||||
|
||||
<p>同樣的,這次我們是要全部備份,所以也不需要另外進行設定</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-34-57.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-34-57_thumb.png" alt="2015-04-10_15-34-57" title="2015-04-10_15-34-57" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>「事件」屬性</p>
|
||||
|
||||
<p>這邊是設定在備份工作開始前、結束後,要不要進行其他的工作,一般也不需要設定</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-36-44.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-36-44_thumb.png" alt="2015-04-10_15-36-44" title="2015-04-10_15-36-44" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>終於到最後的「進階」屬性了</p>
|
||||
|
||||
<p>這邊只需要確認清除存檔屬性、包含備份類型這兩個選項有勾選就好,ok之後,按下確定,回到Cobian Backup 主畫面</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-37-58.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-37-58_thumb.png" alt="2015-04-10_15-37-58" title="2015-04-10_15-37-58" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>回到主畫面後,在剛剛設定的工作上按右鍵,選擇執行已選取的工作,就會開始進行備份</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-39-32.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-39-32_thumb.png" alt="2015-04-10_15-39-32" title="2015-04-10_15-39-32" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>這是我的來源路徑裡面的檔案,預設我只放了一個圖片1.jpg的圖檔在裡面</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-08_09-01-08.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-08_09-01-08_thumb.png" alt="2015-04-08_09-01-08" title="2015-04-08_09-01-08" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>第一次備份完成後,在百度雲同步盤的目錄中,可以看到多了一個壓縮檔</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-08_09-01-52.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-08_09-01-52_thumb.png" alt="2015-04-08_09-01-52" title="2015-04-08_09-01-52" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>這個壓縮檔的內容,就是剛剛看到的圖片 1.jpg</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-42-34.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-42-34_thumb.png" alt="2015-04-10_15-42-34" title="2015-04-10_15-42-34" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>接著我放了一個檔案大小比較大的檔案進去,取名叫圖片2.jpg</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-08_09-02-43.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-08_09-02-43_thumb.png" alt="2015-04-08_09-02-43" title="2015-04-08_09-02-43" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>然後再次手動執行備份工作</p>
|
||||
|
||||
<p>執行完成後,點開第二次備份建立的壓縮檔案,會發現檔案只有一個圖片2.jpg</p>
|
||||
|
||||
<p>Why ??</p>
|
||||
|
||||
<p>前面說過,差異備份只會進行從上一次的完整備份之後,進行新增/修改的檔案</p>
|
||||
|
||||
<p>從上次備份之後,我只新增了這個檔案,所以當然只備份這個</p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-44-23.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-44-23_thumb.png" alt="2015-04-10_15-44-23" title="2015-04-10_15-44-23" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>同時,在瀏覽器中,開啟百度雲網盤的頁面,也可以看到這些檔案</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><a href="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-47-03.png"><img src="http://wp.cowbay.org/wp-content/uploads/2015/04/2015-04-10_15-47-03_thumb.png" alt="2015-04-10_15-47-03" title="2015-04-10_15-47-03" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>到這邊,資料自動備份、上傳雲端的設定就已經全部完成</p>
|
||||
|
||||
<p>以後只要把數位相機、手機上的照片先複製到「我的文件夾」底下的「圖片」目錄</p>
|
||||
|
||||
<p>先進行重新命名、排序、美容(!?)等等步驟後,只要等到晚上 11:59:59</p>
|
||||
|
||||
<p>Cobian Backup 就會自動將這些檔案同步到雲端去了!</p>
|
||||
|
||||
<p>只要經過備份,那麼一份資料同時間就會有原本的裝置、本機硬碟、還有雲端空間三份存在</p>
|
||||
|
||||
<p>就不用再擔心在裝置上誤刪檔案,或者本機硬碟壞掉引起的檔案遺失了!</p>
|
||||
|
||||
<p>硬碟壞了,換掉就好。</p>
|
||||
|
||||
<p>照片沒了,總沒辦法重新再照一次吧!</p>
|
||||
|
||||
<p>希望這篇po文能幫到各位!</p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
|
||||
|
||||
|
||||
<div class="tags">
|
||||
<i class="fa fa-tags"></i>
|
||||
<div class="links">
|
||||
|
||||
<a href="/tags/%E7%99%BE%E5%BA%A6%E9%9B%B2">百度雲</a>
|
||||
|
||||
<a href="/tags/%E8%B3%87%E6%96%99%E5%82%99%E4%BB%BD">資料備份</a>
|
||||
|
||||
<a href="/tags/%E9%9B%B2%E7%AB%AF">雲端</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,473 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [其他] 假冒 Apple 的詐騙信件 | My cool new Blog</title>
|
||||
<meta name="description" content="[其他] 假冒 Apple 的詐騙信件 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[其他] 假冒 Apple 的詐騙信件">
|
||||
<meta itemprop="description" content="[其他] 假冒 Apple 的詐騙信件 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[其他] 假冒 Apple 的詐騙信件">
|
||||
<meta property="og:description" content="[其他] 假冒 Apple 的詐騙信件 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-85-b6-e4-bb-96-e5-81-87-e5-86-92-apple-e7-9a-84-e8-a9-90-e9-a8-99-e4-bf-a1-e4-bb-b6/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/e5-85-b6-e4-bb-96-e5-81-87-e5-86-92-apple-e7-9a-84-e8-a9-90-e9-a8-99-e4-bf-a1-e4-bb-b6/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-85-b6-e4-bb-96-e5-81-87-e5-86-92-apple-e7-9a-84-e8-a9-90-e9-a8-99-e4-bf-a1-e4-bb-b6/">[其他] 假冒 Apple 的詐騙信件</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-10-07</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>今天早上收到的,而且還真的是我的apple ID的信箱?</p>
|
||||
|
||||
<p>是真的APPLE被駭了?還是手機的APP有問題??</p>
|
||||
|
||||
<p>
|
||||
<table style="width: 100%;" cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td height="28"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div><img src="http://images.apple.com/itunes/images/product_title.png" alt="" /></div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div><img src="http://image.alerts.v.me/webdocs/images/left%21%20_banner.png?1368444358" alt="" /></div>
|
||||
<div><img src="http://image.alerts.v.me/webdocs/images/welcome.png?1368444358" alt="" /></div>
|
||||
<div><img src="http://image.alerts.v.me/webdocs/images/right_banner.png?1368444358" alt="" /></div>
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div>Dear Apple Customer,</div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div>To g! et back into your apple account, you’ll need to confirm your account . It’s easy: Click the button below to open a secure browser window. Confirm that you’re the owner of the account and then follow the instructions.</div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div>Before log in your account will be Confirmed, let us know right away.</div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div></p>
|
||||
|
||||
<ul>
|
||||
<li>Reporting it is important because it helps us prevent fraudsters from stealing your information. Yours s! incerely, apple .
|
||||
</div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div>Thanks,</div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div>The Apple Team</div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div>Please do not reply to this email. It was sent from an email address that cannot accept incoming messages.</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></li>
|
||||
</ul>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,409 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [其他]沒想到我的網頁在GOOGLE排名這麼高? | My cool new Blog</title>
|
||||
<meta name="description" content="[其他]沒想到我的網頁在GOOGLE排名這麼高? - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[其他]沒想到我的網頁在GOOGLE排名這麼高?">
|
||||
<meta itemprop="description" content="[其他]沒想到我的網頁在GOOGLE排名這麼高? - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[其他]沒想到我的網頁在GOOGLE排名這麼高?">
|
||||
<meta property="og:description" content="[其他]沒想到我的網頁在GOOGLE排名這麼高? - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-85-b6-e4-bb-96-e6-b2-92-e6-83-b3-e5-88-b0-e6-88-91-e7-9a-84-e7-b6-b2-e9-a0-81-e5-9c-a8google-e6-8e-92-e5-90-8d-e9-80-99-e9-ba-bc-e9-ab-98-ef-bc-9f/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/e5-85-b6-e4-bb-96-e6-b2-92-e6-83-b3-e5-88-b0-e6-88-91-e7-9a-84-e7-b6-b2-e9-a0-81-e5-9c-a8google-e6-8e-92-e5-90-8d-e9-80-99-e9-ba-bc-e9-ab-98-ef-bc-9f/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-85-b6-e4-bb-96-e6-b2-92-e6-83-b3-e5-88-b0-e6-88-91-e7-9a-84-e7-b6-b2-e9-a0-81-e5-9c-a8google-e6-8e-92-e5-90-8d-e9-80-99-e9-ba-bc-e9-ab-98-ef-bc-9f/">[其他]沒想到我的網頁在GOOGLE排名這麼高?</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-07-05</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/blog">BLOG</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>早上意外收到群暉的客服主管來信,大意是說之前PO了一篇<a href="http://www.cowbay.org/?p=213" title="[雜念] 群暉科技 synology 的Support 客服人員 請不要再犯一樣的錯誤了,好嗎?">對群暉客服的碎碎念</a></p>
|
||||
|
||||
<p>結果在GOOGLE搜尋時,因為排名比較前面,不小心被這位主管看到了,所以來信致意一下這樣。</p>
|
||||
|
||||
<p>我就很好奇,隨手去搜尋了一下「群暉 客服」,結果跑出來的結果排第四,小輸官網、104、還有M01 <img src="http://www.cowbay.org/wp-content/plugins/ultimate-tinymce/addons/emotions/img/popobig/boss.png" alt="Big Boss" title="Big Boss" /></p>
|
||||
|
||||
<p><a href="http://www.cowbay.org/wp-content/uploads/2013/07/google-search-synology-no-4.png"><img src="http://www.cowbay.org/wp-content/uploads/2013/07/google-search-synology-no-4.png" alt="google-search-synology-no-4" /></a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>該說wordpress的SEO作太好了嗎? <img src="http://www.cowbay.org/wp-content/plugins/ultimate-tinymce/addons/emotions/img/popobig/big_smile.png" alt="Big Smile" title="Big Smile" /></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,851 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [其它] 在marvel看過最恐怖的經驗/故事(補連結+整理) | My cool new Blog</title>
|
||||
<meta name="description" content="[其它] 在marvel看過最恐怖的經驗/故事(補連結+整理) - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[其它] 在marvel看過最恐怖的經驗/故事(補連結+整理)">
|
||||
<meta itemprop="description" content="[其它] 在marvel看過最恐怖的經驗/故事(補連結+整理) - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[其它] 在marvel看過最恐怖的經驗/故事(補連結+整理)">
|
||||
<meta property="og:description" content="[其它] 在marvel看過最恐怖的經驗/故事(補連結+整理) - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-85-b6-e5-ae-83-e5-9c-a8marvel-e7-9c-8b-e9-81-8e-e6-9c-80-e6-81-90-e6-80-96-e7-9a-84-e7-b6-93-e9-a9-97-e6-95-85-e4-ba-8b-e8-a3-9c-e9-80-a3-e7-b5-90-e6-95-b4-e7-90-86/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/e5-85-b6-e5-ae-83-e5-9c-a8marvel-e7-9c-8b-e9-81-8e-e6-9c-80-e6-81-90-e6-80-96-e7-9a-84-e7-b6-93-e9-a9-97-e6-95-85-e4-ba-8b-e8-a3-9c-e9-80-a3-e7-b5-90-e6-95-b4-e7-90-86/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-85-b6-e5-ae-83-e5-9c-a8marvel-e7-9c-8b-e9-81-8e-e6-9c-80-e6-81-90-e6-80-96-e7-9a-84-e7-b6-93-e9-a9-97-e6-95-85-e4-ba-8b-e8-a3-9c-e9-80-a3-e7-b5-90-e6-95-b4-e7-90-86/">[其它] 在marvel看過最恐怖的經驗/故事(補連結+整理)</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2015-12-22</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>作者unicrysfish (獨晶魚) 看板marvel</p>
|
||||
|
||||
<p>標題Re[其它] 在marvel看過最恐怖的經驗/故事(補連結+整理)</p>
|
||||
|
||||
<p>時間Tue Dec 8 00:47:23 2015</p>
|
||||
|
||||
<p>大家好我是原po</p>
|
||||
|
||||
<p>轉眼間已經過一年了</p>
|
||||
|
||||
<p>很開心剛剛看到板上有人整理2014跟2015的推薦文^^</p>
|
||||
|
||||
<p>我這篇算是舊文的總整理</p>
|
||||
|
||||
<p>有興趣也可以參考看看
|
||||
</p>
|
||||
|
||||
<p>當初心血來潮整理的經典好文中間經過連結失效的慘劇</p>
|
||||
|
||||
<p>剛剛已全數更換成google短網址</p>
|
||||
|
||||
<p>手更新到發抖XD</p>
|
||||
|
||||
<p>供舊朋友想回味</p>
|
||||
|
||||
<p>新朋友想一窺好文作參考^^</p>
|
||||
|
||||
<p>想要投票的也可以繼續投</p>
|
||||
|
||||
<p>有空時會補上</p>
|
||||
|
||||
<p>有段時間沒來看板了不太熟悉現在的板規</p>
|
||||
|
||||
<p>這篇沒有M點</p>
|
||||
|
||||
<p>希望不會被刪文XD</p>
|
||||
|
||||
<p>網頁板</p>
|
||||
|
||||
<p><a href="https://www.ptt.cc/bbs/marvel/M.1415526249.A.F3C.html">https://www.ptt.cc/bbs/marvel/M.1415526249.A.F3C.html</a></p>
|
||||
|
||||
<p>※ 引述《unicrysfish》之銘言:</p>
|
||||
|
||||
<p>作者unicrysfish (獨晶魚) 看板marvel</p>
|
||||
|
||||
<p>標題[其它] 在marvel看過最恐怖的經驗/故事</p>
|
||||
|
||||
<p>時間Sun Nov 9 17:44:06 2014</p>
|
||||
|
||||
<p>最近在複習幾篇經典文</p>
|
||||
|
||||
<p>看得超毛但又很過癮</p>
|
||||
|
||||
<p>想問大家覺得本版最恐怖的是哪一篇?</p>
|
||||
|
||||
<p>翻譯創作的也可以討論</p>
|
||||
|
||||
<p>感謝啦^^</p>
|
||||
|
||||
<p>ps我覺得很毛的:</p>
|
||||
|
||||
<p>(4票)二技時的經驗(紙人)<a href="https://goo.gl/MJDgme">https://goo.gl/MJDgme</a></p>
|
||||
|
||||
<p>(34票)美山路異聞錄(高雄)(全集)<a href="https://goo.gl/1QJC81">https://goo.gl/1QJC81</a></p>
|
||||
|
||||
<p>(5票)陶瓷娃娃<a href="https://goo.gl/ss0PIH">https://goo.gl/ss0PIH</a></p>
|
||||
|
||||
<p>尹清楓怪遇記事</p>
|
||||
|
||||
<p><a href="https://goo.gl/9im8r8">https://goo.gl/9im8r8</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/SLZDmW">https://goo.gl/SLZDmW</a></p>
|
||||
|
||||
<p>鬼娶親(推文有附吳君如電影片段超有畫面)</p>
|
||||
|
||||
<p><a href="https://goo.gl/EOeAUz">https://goo.gl/EOeAUz</a></p>
|
||||
|
||||
<p>吳君如電影片段 <a href="https://goo.gl/JcuN5R">https://goo.gl/JcuN5R</a></p>
|
||||
|
||||
<p>(不敢點膽大的板友跟我分享吧)</p>
|
||||
|
||||
<p>(8票)國中時的靈驗照片(有圖囉)</p>
|
||||
|
||||
<p><a href="https://goo.gl/sJC5PH">https://goo.gl/sJC5PH</a></p>
|
||||
|
||||
<p>圖在這篇</p>
|
||||
|
||||
<p><a href="https://goo.gl/cEp1ro">https://goo.gl/cEp1ro</a></p>
|
||||
|
||||
<p>(2票)五樓那間套房(真人真事推文也很精彩)</p>
|
||||
|
||||
<p><a href="https://goo.gl/2DI3AG">https://goo.gl/2DI3AG</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/83dtfV">https://goo.gl/83dtfV</a></p>
|
||||
|
||||
<p>(5票)2007 in the usa(六部分)</p>
|
||||
|
||||
<p><a href="https://goo.gl/CiMi6e">https://goo.gl/CiMi6e</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/V6cST7">https://goo.gl/V6cST7</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/Ky2U9O">https://goo.gl/Ky2U9O</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/w0iykC">https://goo.gl/w0iykC</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/OjN23A">https://goo.gl/OjN23A</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/XeOoeG">https://goo.gl/XeOoeG</a></p>
|
||||
|
||||
<p>一點點恐怖</p>
|
||||
|
||||
<p><a href="https://goo.gl/pySZEs">https://goo.gl/pySZEs</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/gqYHBn">https://goo.gl/gqYHBn</a></p>
|
||||
|
||||
<p>還有一篇在電梯前面跪著的學姐(忘記篇名)</p>
|
||||
|
||||
<p>謝謝Z大補充:地下室的女人</p>
|
||||
|
||||
<p><a href="https://goo.gl/iETQbc">https://goo.gl/iETQbc</a></p>
|
||||
|
||||
<p>這幾篇在這個連結都有</p>
|
||||
|
||||
<p><a href="http://goo.gl/AWIURg">http://goo.gl/AWIURg</a></p>
|
||||
|
||||
<p>(5票)ps想問大家有沒有看過一個卡通叫學校有鬼-花子來了嗎?</p>
|
||||
|
||||
<p>小時候看都超害怕的到現在有幾集都記得超清楚</p>
|
||||
|
||||
<p>像是搭公車發現公車上的人都是死人</p>
|
||||
|
||||
<p>紅色書包有鬼跑出來要吃掉小女孩</p>
|
||||
|
||||
<p>那時候造成好大的陰影喔</p>
|
||||
|
||||
<p>我找到日文的影片</p>
|
||||
|
||||
<p><a href="http://goo.gl/gNAjBL">http://goo.gl/gNAjBL</a></p>
|
||||
|
||||
<p>我沒膽(遮臉)敢看的跟我分享</p>
|
||||
|
||||
<p>私心想推我當道士這些年這部小說^^</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p>板友補充:</p>
|
||||
|
||||
<p>(4票)我們的鄰居 <a href="https://goo.gl/IeME3A">https://goo.gl/IeME3A</a></p>
|
||||
|
||||
<p>(10票)我的幾個小經驗3.在紐西蘭發生的事情</p>
|
||||
|
||||
<p><a href="https://goo.gl/ZZZ2Oz">https://goo.gl/ZZZ2Oz</a></p>
|
||||
|
||||
<p>活著的人偶 <a href="https://goo.gl/U3K0YI">https://goo.gl/U3K0YI</a></p>
|
||||
|
||||
<p>隔壁的女人 <a href="https://goo.gl/hIfNcS">https://goo.gl/hIfNcS</a></p>
|
||||
|
||||
<p>(殘穢)畢業旅行 <a href="https://goo.gl/RuwKZd">https://goo.gl/RuwKZd</a></p>
|
||||
|
||||
<p>(3票)取子箱 <a href="https://goo.gl/wldztk">https://goo.gl/wldztk</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/7xu9ce">https://goo.gl/7xu9ce</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/ba3ilJ">https://goo.gl/ba3ilJ</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/4gB96v">https://goo.gl/4gB96v</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/TN4Mxd">https://goo.gl/TN4Mxd</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/IHNDvv">https://goo.gl/IHNDvv</a></p>
|
||||
|
||||
<p>考據 <a href="https://goo.gl/yN1cmK">https://goo.gl/yN1cmK</a></p>
|
||||
|
||||
<p>外傳(印證)<a href="https://goo.gl/rr2uvp">https://goo.gl/rr2uvp</a></p>
|
||||
|
||||
<p>渡假地打工 <a href="http://goo.gl/nklVBl">http://goo.gl/nklVBl</a></p>
|
||||
|
||||
<p>Mshow俱樂部 <a href="https://goo.gl/YqqiG7">https://goo.gl/YqqiG7</a></p>
|
||||
|
||||
<p>G縣廚</p>
|
||||
|
||||
<p><a href="http://goo.gl/b3MNA0">http://goo.gl/b3MNA0</a></p>
|
||||
|
||||
<p>雨天的怪人</p>
|
||||
|
||||
<p><a href="https://goo.gl/i2ay8w">https://goo.gl/i2ay8w</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/D21jY8">https://goo.gl/D21jY8</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/sm3Lce">https://goo.gl/sm3Lce</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/A1Y1DG">https://goo.gl/A1Y1DG</a></p>
|
||||
|
||||
<p>(2票)沒有鬼的故事(大推)</p>
|
||||
|
||||
<p><a href="https://goo.gl/B3RvCe">https://goo.gl/B3RvCe</a></p>
|
||||
|
||||
<p>(5票)強者我朋友系列</p>
|
||||
|
||||
<p><a href="https://goo.gl/NAQcn4">https://goo.gl/NAQcn4</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/jKalHt">https://goo.gl/jKalHt</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/mH1wEQ">https://goo.gl/mH1wEQ</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/m443Gf">https://goo.gl/m443Gf</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/HBsS1W">https://goo.gl/HBsS1W</a></p>
|
||||
|
||||
<p>山中謎霧</p>
|
||||
|
||||
<p><a href="https://goo.gl/49YWsQ">https://goo.gl/49YWsQ</a></p>
|
||||
|
||||
<p>(3票)夜晚的估價</p>
|
||||
|
||||
<p><a href="https://goo.gl/cVSbxN">https://goo.gl/cVSbxN</a></p>
|
||||
|
||||
<p>你發現了嗎?</p>
|
||||
|
||||
<p><a href="https://goo.gl/2oECYH">https://goo.gl/2oECYH</a></p>
|
||||
|
||||
<p>(2票)晚上曬衣服</p>
|
||||
|
||||
<p><a href="https://goo.gl/QXdtjS">https://goo.gl/QXdtjS</a></p>
|
||||
|
||||
<p>(7票)八尺大人</p>
|
||||
|
||||
<p><a href="https://goo.gl/lpOAOV">https://goo.gl/lpOAOV</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/HQkuMW">https://goo.gl/HQkuMW</a></p>
|
||||
|
||||
<p>(2票)嘉明湖</p>
|
||||
|
||||
<p><a href="https://goo.gl/z5051m">https://goo.gl/z5051m</a></p>
|
||||
|
||||
<p>(2票 )土城青草山系列</p>
|
||||
|
||||
<p><a href="https://goo.gl/0CVIbM">https://goo.gl/0CVIbM</a></p>
|
||||
|
||||
<p>(4票)事故物件</p>
|
||||
|
||||
<p><a href="https://goo.gl/BLyDzg">https://goo.gl/BLyDzg</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/bDuSNQ">https://goo.gl/bDuSNQ</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/CdvmIO">https://goo.gl/CdvmIO</a></p>
|
||||
|
||||
<p>斯德哥爾摩街命案</p>
|
||||
|
||||
<p><a href="https://goo.gl/g7sOue">https://goo.gl/g7sOue</a></p>
|
||||
|
||||
<p>他的呢喃</p>
|
||||
|
||||
<p><a href="https://goo.gl/ba9Vwi">https://goo.gl/ba9Vwi</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/FPHqan">https://goo.gl/FPHqan</a></p>
|
||||
|
||||
<p>(9票)辦公室怪談</p>
|
||||
|
||||
<p><a href="https://goo.gl/zCf2iy">https://goo.gl/zCf2iy</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/V0uY9B">https://goo.gl/V0uY9B</a></p>
|
||||
|
||||
<p>(2票)大園空難預知錄</p>
|
||||
|
||||
<p><a href="https://goo.gl/g6SrOK">https://goo.gl/g6SrOK</a></p>
|
||||
|
||||
<p>(3票)房號733</p>
|
||||
|
||||
<p><a href="https://goo.gl/c8qvdc">https://goo.gl/c8qvdc</a></p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p>恐懼罐頭系列(這很多篇大家就自己蒐關鍵字了^^)</p>
|
||||
|
||||
<p>(3票)想請問一個軍中鬼故事</p>
|
||||
|
||||
<p><a href="https://goo.gl/QCvGpN">https://goo.gl/QCvGpN</a></p>
|
||||
|
||||
<p>重慶紅衣男孩(這篇我覺得要搭配dark angel 一起看雖說沒有人能證明確實有關)</p>
|
||||
|
||||
<p><a href="http://goo.gl/2hN3Ak">http://goo.gl/2hN3Ak</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/XDvcBq">https://goo.gl/XDvcBq</a></p>
|
||||
|
||||
<p>(2票)檳榔園的阿婆</p>
|
||||
|
||||
<p><a href="https://goo.gl/8xCVJK">https://goo.gl/8xCVJK</a></p>
|
||||
|
||||
<p>(2票)毛骨聳然撞鬼經驗(義莊篇)</p>
|
||||
|
||||
<p><a href="https://goo.gl/Hv8Q1G">https://goo.gl/Hv8Q1G</a></p>
|
||||
|
||||
<p>(3票)海報</p>
|
||||
|
||||
<p><a href="https://goo.gl/krXHyk">https://goo.gl/krXHyk</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/tDo2e9">https://goo.gl/tDo2e9</a></p>
|
||||
|
||||
<p>婚紗店夜驚魂</p>
|
||||
|
||||
<p><a href="https://goo.gl/CYOaDL">https://goo.gl/CYOaDL</a></p>
|
||||
|
||||
<p>電梯來了,你搭不搭呢?</p>
|
||||
|
||||
<p><a href="https://goo.gl/sfUxpA">https://goo.gl/sfUxpA</a></p>
|
||||
|
||||
<p>(2票)蠟燭灣奇譚</p>
|
||||
|
||||
<p><a href="https://goo.gl/Kq6Am1">https://goo.gl/Kq6Am1</a></p>
|
||||
|
||||
<p>禁后</p>
|
||||
|
||||
<p><a href="http://goo.gl/pidblt">http://goo.gl/pidblt</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/ZRcqaG">https://goo.gl/ZRcqaG</a></p>
|
||||
|
||||
<p><a href="http://goo.gl/fDm6Cm">http://goo.gl/fDm6Cm</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/qJocfY">https://goo.gl/qJocfY</a></p>
|
||||
|
||||
<p>屋頂揮手的女人</p>
|
||||
|
||||
<p><a href="https://goo.gl/UMSXvl">https://goo.gl/UMSXvl</a></p>
|
||||
|
||||
<p>(2票)揮手的女人影片</p>
|
||||
|
||||
<p><a href="https://goo.gl/tZIU7m">https://goo.gl/tZIU7m</a></p>
|
||||
|
||||
<p>黑特板鬧鬼事件之從拍窗事件</p>
|
||||
|
||||
<p><a href="https://goo.gl/mpYlpl">https://goo.gl/mpYlpl</a></p>
|
||||
|
||||
<p>信義區百貨(S百貨回文)</p>
|
||||
|
||||
<p><a href="https://goo.gl/wnrthw">https://goo.gl/wnrthw</a></p>
|
||||
|
||||
<p>醫院工作經驗</p>
|
||||
|
||||
<p><a href="https://goo.gl/QqC4HC">https://goo.gl/QqC4HC</a></p>
|
||||
|
||||
<p>(2票)兇殺案托夢</p>
|
||||
|
||||
<p><a href="https://goo.gl/AENWLQ">https://goo.gl/AENWLQ</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/4ksyCM">https://goo.gl/4ksyCM</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/WnC6Q0">https://goo.gl/WnC6Q0</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/kwt3KA">https://goo.gl/kwt3KA</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/mGnLWg">https://goo.gl/mGnLWg</a></p>
|
||||
|
||||
<p>房子的主人</p>
|
||||
|
||||
<p><a href="https://goo.gl/7lbGYu">https://goo.gl/7lbGYu</a></p>
|
||||
|
||||
<p>奧克拉荷馬州:黑山</p>
|
||||
|
||||
<p><a href="https://goo.gl/CBQjcz">https://goo.gl/CBQjcz</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/1qEqh5">https://goo.gl/1qEqh5</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/0mwumS">https://goo.gl/0mwumS</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/fuddGt">https://goo.gl/fuddGt</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/p32Hy1">https://goo.gl/p32Hy1</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/TZEXRq">https://goo.gl/TZEXRq</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/4Kngrc">https://goo.gl/4Kngrc</a></p>
|
||||
|
||||
<p>好朋友日本混血的台灣電梯事件</p>
|
||||
|
||||
<p><a href="https://goo.gl/lH4Ug9">https://goo.gl/lH4Ug9</a></p>
|
||||
|
||||
<p>海龜湯</p>
|
||||
|
||||
<p><a href="https://goo.gl/GLt5L7">https://goo.gl/GLt5L7</a></p>
|
||||
|
||||
<p>剪指甲的人</p>
|
||||
|
||||
<p><a href="https://goo.gl/cbDAZL">https://goo.gl/cbDAZL</a></p>
|
||||
|
||||
<p>室設的故事</p>
|
||||
|
||||
<p><a href="https://goo.gl/aJvxzT">https://goo.gl/aJvxzT</a></p>
|
||||
|
||||
<p>Re[分享] 日本都市傳說:危險的好奇心 (完)</p>
|
||||
|
||||
<p><a href="http://goo.gl/V6F955">http://goo.gl/V6F955</a></p>
|
||||
|
||||
<p>這篇是單獨一篇但是是回文^^</p>
|
||||
|
||||
<p>ID</p>
|
||||
|
||||
<p><a href="http://goo.gl/m7sYh3">http://goo.gl/m7sYh3</a></p>
|
||||
|
||||
<p>(4票)山中傳奇 奇萊山</p>
|
||||
|
||||
<p><a href="https://goo.gl/o6bFI8">https://goo.gl/o6bFI8</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/4EUWgP">https://goo.gl/4EUWgP</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/ZkJH1C">https://goo.gl/ZkJH1C</a></p>
|
||||
|
||||
<p><a href="http://goo.gl/D7W4SD">http://goo.gl/D7W4SD</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/PVas2j">https://goo.gl/PVas2j</a></p>
|
||||
|
||||
<p><a href="http://goo.gl/5HBRKS">http://goo.gl/5HBRKS</a></p>
|
||||
|
||||
<p>奇萊山小人</p>
|
||||
|
||||
<p><a href="http://goo.gl/Vma43o">http://goo.gl/Vma43o</a></p>
|
||||
|
||||
<p>圖</p>
|
||||
|
||||
<p><a href="http://goo.gl/w3hLHf">http://goo.gl/w3hLHf</a></p>
|
||||
|
||||
<p>夢境</p>
|
||||
|
||||
<p><a href="https://goo.gl/WHvplD">https://goo.gl/WHvplD</a></p>
|
||||
|
||||
<p>日本怪談:對講機</p>
|
||||
|
||||
<p><a href="https://goo.gl/C9w6aM">https://goo.gl/C9w6aM</a></p>
|
||||
|
||||
<p>冰庫女鬼</p>
|
||||
|
||||
<p><a href="https://goo.gl/qOcmqB">https://goo.gl/qOcmqB</a></p>
|
||||
|
||||
<p>海嬤仔</p>
|
||||
|
||||
<p><a href="https://goo.gl/AcBkBi">https://goo.gl/AcBkBi</a></p>
|
||||
|
||||
<p>賣房子</p>
|
||||
|
||||
<p><a href="https://goo.gl/2t7U17">https://goo.gl/2t7U17</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/hYqv1V">https://goo.gl/hYqv1V</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/xHGgIC">https://goo.gl/xHGgIC</a></p>
|
||||
|
||||
<p><a href="https://goo.gl/994tX3">https://goo.gl/994tX3</a></p>
|
||||
|
||||
<p>不要再吸毒了</p>
|
||||
|
||||
<p><a href="https://goo.gl/4GYkNM">https://goo.gl/4GYkNM</a></p>
|
||||
|
||||
<p>憨吉a番麥</p>
|
||||
|
||||
<p><a href="https://goo.gl/tDArQp">https://goo.gl/tDArQp</a></p>
|
||||
|
||||
<p>有遺漏或希望我補的跟我說^^</p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,427 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [分流] 蓮蕂芠競選總部 - 加州樂透篇 | My cool new Blog</title>
|
||||
<meta name="description" content="[分流] 蓮蕂芠競選總部 - 加州樂透篇 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[分流] 蓮蕂芠競選總部 - 加州樂透篇">
|
||||
<meta itemprop="description" content="[分流] 蓮蕂芠競選總部 - 加州樂透篇 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[分流] 蓮蕂芠競選總部 - 加州樂透篇">
|
||||
<meta property="og:description" content="[分流] 蓮蕂芠競選總部 - 加州樂透篇 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-88-86-e6-b5-81-e8-93-ae-e8-95-82-e8-8a-a0-e7-ab-b6-e9-81-b8-e7-b8-bd-e9-83-a8-ef-bc-8d-e5-8a-a0-e5-b7-9e-e6-a8-82-e9-80-8f-e7-af-87/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/e5-88-86-e6-b5-81-e8-93-ae-e8-95-82-e8-8a-a0-e7-ab-b6-e9-81-b8-e7-b8-bd-e9-83-a8-ef-bc-8d-e5-8a-a0-e5-b7-9e-e6-a8-82-e9-80-8f-e7-af-87/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-88-86-e6-b5-81-e8-93-ae-e8-95-82-e8-8a-a0-e7-ab-b6-e9-81-b8-e7-b8-bd-e9-83-a8-ef-bc-8d-e5-8a-a0-e5-b7-9e-e6-a8-82-e9-80-8f-e7-af-87/">[分流] 蓮蕂芠競選總部 - 加州樂透篇</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2014-10-28</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>在八卦版看到的</p>
|
||||
|
||||
<p>作者: WatPoint (華點) 看板: joke
|
||||
標題: [kuso] 蓮蕂芠競選總部-加州樂透篇(完全同步版)
|
||||
時間: Tue Oct 28 16:53:32 2014</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>蓮蕂芠競選總部 - 加州樂透篇 (純屬虛構,不要告我QQ):
|
||||
<a href="http://youtu.be/BEtxA8_85a4">http://youtu.be/BEtxA8_85a4</a></p>
|
||||
|
||||
<p>影片說明:
|
||||
今天早上,連勝文的食安競選廣告,被發現跟加州樂透的廣告很像
|
||||
為了確定到底有多像,特地做了這個影片將兩者同步。沒想到同步率根本…</p>
|
||||
|
||||
<p>※※※※※※註:加州樂透的廣告有經過縮放並調整時間軸※※※※※※
|
||||
※註:加州樂透的廣告有經過縮放處理</p>
|
||||
|
||||
<p>連勝文競選總部-食安篇:
|
||||
<a href="http://youtu.be/zQRd0PL-Ot4">http://youtu.be/zQRd0PL-Ot4</a>
|
||||
加州樂透廣告:
|
||||
<a href="https://www.youtube.com/watch?v=15hT5TOSVAg">https://www.youtube.com/watch?v=15hT5TOSVAg</a>
|
||||
<a href="https://www.youtube.com/watch?v=FUd99lU3A9c">https://www.youtube.com/watch?v=FUd99lU3A9c</a></p>
|
||||
|
||||
<p>因登入次數不足,無法在八卦發文,求勇者幫轉八卦</p>
|
||||
|
||||
<p>[video width=“1280” height=“720” mp4=“<a href="http://www.cowbay.org/wp-content/uploads/2014/10/蓮蕂芠競選總部---加州樂透篇-純屬虛構,不要告我QQ.mp4"][/video">http://www.cowbay.org/wp-content/uploads/2014/10/蓮蕂芠競選總部---加州樂透篇-純屬虛構,不要告我QQ.mp4"][/video</a>]</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,435 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] 2歲童近視500度 都是iPad惹的禍? | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] 2歲童近視500度 都是iPad惹的禍? - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] 2歲童近視500度 都是iPad惹的禍?">
|
||||
<meta itemprop="description" content="[剪報] 2歲童近視500度 都是iPad惹的禍? - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] 2歲童近視500度 都是iPad惹的禍?">
|
||||
<meta property="og:description" content="[剪報] 2歲童近視500度 都是iPad惹的禍? - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-2-e6-ad-b2-e7-ab-a5-e8-bf-91-e8-a6-96500-e5-ba-a6-e9-83-bd-e6-98-afipad-e6-83-b9-e7-9a-84-e7-a6-8d-ef-bc-9f/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/e5-89-aa-e5-a0-b1-2-e6-ad-b2-e7-ab-a5-e8-bf-91-e8-a6-96500-e5-ba-a6-e9-83-bd-e6-98-afipad-e6-83-b9-e7-9a-84-e7-a6-8d-ef-bc-9f/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-2-e6-ad-b2-e7-ab-a5-e8-bf-91-e8-a6-96500-e5-ba-a6-e9-83-bd-e6-98-afipad-e6-83-b9-e7-9a-84-e7-a6-8d-ef-bc-9f/">[剪報] 2歲童近視500度 都是iPad惹的禍?</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-04-18</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p><table style="width: 100%;" border="0" cellspacing="3" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="130%"><img src="http://udn.com/2010/images/linedot.gif" alt="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="75%">
|
||||
<div id="story_author">【聯合報╱記者汪莉絹/綜合報導】</div></td>
|
||||
<td width="25%">
|
||||
<div id="story_update" align="right">2013.04.18 03:49 am</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<div id="story"></p>
|
||||
|
||||
<p>大陸兒童近視眼出現低齡化趨勢,而電子產品正是兒童的視力殺手,武漢一名兩歲半男童因長期玩iPad,近視達五百度,大陸國家衛生和計畫生育委員會日前發布警示,提醒家長儘量避免讓兩歲以下兒童操作電子影像產品。</p>
|
||||
|
||||
<p>武漢晚報報導,一名男童華華(假名)今年兩歲半,最近一段時間,他的媽媽發現他看東西常瞇著眼睛,帶到醫院眼科檢查,發現近視達五百度。華華的媽媽說,華 華一歲半就開始接觸iPad,大人也樂得輕鬆,只要孩子哭鬧,就拿出iPad給他玩。半年前華華的媽媽又買回iPad3,華華玩iPad的時間越來越長。 醫生說,正是由於過度使用iPad,華華才會假性近視。</p>
|
||||
|
||||
<p>中南醫院眼科醫生說,因過多接觸電子產品導致視力損傷的幼兒,並不少見。兒童醫院裡近視的孩子越來越多,兒童近視有提早的趨勢。</p>
|
||||
|
||||
<p></div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div>
|
||||
全文網址: <a href="http://udn.com/NEWS/MAINLAND/MAI2/7838770.shtml#ixzz2QlpnG37I">2歲童近視500度 都是iPad惹的禍? | 陸港傳真 | 兩岸台商 | 聯合新聞網</a>
|
||||
Power By udn.com</div></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,421 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] 《要千人只4人錄取》佳能大林廠 作業員難找 | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] 《要千人只4人錄取》佳能大林廠 作業員難找 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] 《要千人只4人錄取》佳能大林廠 作業員難找">
|
||||
<meta itemprop="description" content="[剪報] 《要千人只4人錄取》佳能大林廠 作業員難找 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] 《要千人只4人錄取》佳能大林廠 作業員難找">
|
||||
<meta property="og:description" content="[剪報] 《要千人只4人錄取》佳能大林廠 作業員難找 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-e3-80-8a-e8-a6-81-e5-8d-83-e4-ba-ba-e5-8f-aa4-e4-ba-ba-e9-8c-84-e5-8f-96-e3-80-8b-e4-bd-b3-e8-83-bd-e5-a4-a7-e6-9e-97-e5-bb-a0-e4-bd-9c-e6-a5-ad-e5-93-a1-e9-9b-a3-e6-89-be/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/e5-89-aa-e5-a0-b1-e3-80-8a-e8-a6-81-e5-8d-83-e4-ba-ba-e5-8f-aa4-e4-ba-ba-e9-8c-84-e5-8f-96-e3-80-8b-e4-bd-b3-e8-83-bd-e5-a4-a7-e6-9e-97-e5-bb-a0-e4-bd-9c-e6-a5-ad-e5-93-a1-e9-9b-a3-e6-89-be/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-e3-80-8a-e8-a6-81-e5-8d-83-e4-ba-ba-e5-8f-aa4-e4-ba-ba-e9-8c-84-e5-8f-96-e3-80-8b-e4-bd-b3-e8-83-bd-e5-a4-a7-e6-9e-97-e5-bb-a0-e4-bd-9c-e6-a5-ad-e5-93-a1-e9-9b-a3-e6-89-be/">[剪報] 《要千人只4人錄取》佳能大林廠 作業員難找</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-04-14</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>每月可領二萬元,是一般薪資的中上程度</p>
|
||||
|
||||
<p>連這種話都說得出口!?這種資方媽的腦袋是有什麼問題??</p>
|
||||
|
||||
<p>為什麼不去非洲國家開這種薪資,好讓大家把你當神崇拜!?</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>《要千人只4人錄取》佳能大林廠 作業員難找
|
||||
<div id="K3"> <span style="font-size: 14px; line-height: 1.5;">地偏徵人不易 廠方考慮調整薪資與工作量</span></div>
|
||||
〔記者吳世聰/嘉縣報導〕去年六月開始營運的台灣佳能大林廠,有千人的正式作業員缺額,但昨天在嘉義縣政府創新學院舉辦的徵才活動,竟只有十八人投遞履歷表,經面試只錄取四人,廠方坦承徵人不易,會想辦法調整工作量及薪資待遇,改善「人才荒」的問題。</p>
|
||||
|
||||
<p>來台設廠的日本佳能公司,在大林鎮大埔美智慧工業區設立大林廠,去年六月開始營運,以製造數位相機及交換鏡頭為主,目前已經僱用二千二百名員工。</p>
|
||||
|
||||
<p>廠方表示,目前每個月不足的正式作業人員約有二百人,累積到年底預估不足近千人,廠方「強力招募」人力,希望年底僱用的人員能達到三千人的目標。</p>
|
||||
|
||||
<p>廠方為了補足人力,除了每天在廠內受理面試外,昨天也在創新學院舉辦徵才活動,但場面十分冷清,只有十八人投遞履歷表,面試雙方合議,只錄取四人,廠方坦承招募作業員有困難度,但會設法克服。</p>
|
||||
|
||||
<p>廠方指出,大林廠與台中廠的薪資及福利都一樣,但台中廠找的到人力,大林廠卻應徵不到人,分析原因,有可能是大林廠已經僱用了二千二百人,而嘉義地區的子弟原本就有限,加上大林廠區地點偏僻,生活機能較不完備,無法吸引外來人口及年輕人留下來工作。</p>
|
||||
|
||||
<p><span style="font-size: 28px; color: #ff0000;">廠方人員表示,目前台灣佳能的正式作業員,時薪是一百零九元,享有勞、健保及六%的勞退金,也有婚喪喜慶補助及免費提供員工宿舍,每月可領約二萬元,是一般薪資的中上程度。</span>不過,有應徵及離職者認為,廠方所開出的薪水普遍偏低,難以維持基本生活需求。</p>
|
||||
|
||||
<p>廠方強調,將持續徵人,若「人才荒」無法解決的話,將考量調整工作量、薪資及提高福利,以吸引更多人加入。</p>
|
||||
|
||||
<p>原文: <a href="http://www.libertytimes.com.tw/2013/new/apr/14/today-center1.htm">http://www.libertytimes.com.tw/2013/new/apr/14/today-center1.htm</a></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,420 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] 全市光纖上網 「內容恐被監控」 | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] 全市光纖上網 「內容恐被監控」 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] 全市光纖上網 「內容恐被監控」">
|
||||
<meta itemprop="description" content="[剪報] 全市光纖上網 「內容恐被監控」 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] 全市光纖上網 「內容恐被監控」">
|
||||
<meta property="og:description" content="[剪報] 全市光纖上網 「內容恐被監控」 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-e5-85-a8-e5-b8-82-e5-85-89-e7-ba-96-e4-b8-8a-e7-b6-b2-e3-80-8c-e5-85-a7-e5-ae-b9-e6-81-90-e8-a2-ab-e7-9b-a3-e6-8e-a7-e3-80-8d/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/e5-89-aa-e5-a0-b1-e5-85-a8-e5-b8-82-e5-85-89-e7-ba-96-e4-b8-8a-e7-b6-b2-e3-80-8c-e5-85-a7-e5-ae-b9-e6-81-90-e8-a2-ab-e7-9b-a3-e6-8e-a7-e3-80-8d/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-e5-85-a8-e5-b8-82-e5-85-89-e7-ba-96-e4-b8-8a-e7-b6-b2-e3-80-8c-e5-85-a7-e5-ae-b9-e6-81-90-e8-a2-ab-e7-9b-a3-e6-8e-a7-e3-80-8d/">[剪報] 全市光纖上網 「內容恐被監控」</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-05-07</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>值得追蹤的消息</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>【聯合報╱記者陳雅芃/台北報導】</p>
|
||||
|
||||
<p>市議員王世堅昨天質詢說,北市府為推動新十大建設之一「全市光纖到府」政策,現已建置通訊監察設備,提供調查局「以通訊監察之名,行監控200多萬市民之實」。</p>
|
||||
|
||||
<p><span style="font-size: 16px; color: #ff0000;">北市府資訊局長詹德存說,此光纖案依法須將光纖轉接的通訊備及系統,送具有通訊監察執行機關調查局審核。調查局未來必須依法進行監聽,事前無須告知市府。</span></p>
|
||||
|
||||
<p>市府推動「光纖網路全面化」政策,委由「台灣智慧光網聯盟」建置並營運,目前合約訂出目標為家戶覆蓋率為80%,不過朝95%以上邁進。換言之,約250萬市民可享有該服務。</p>
|
||||
|
||||
<p>不過王世堅指出,資訊局依規定向NCC申請網路建設許可證前,需具有通訊監察執行機關調查局審核其建置的光纖相關通訊監察系統及設備。</p>
|
||||
|
||||
<p>王世堅說,他曾發文詢問資訊局,有關調查局未來監聽事宜,卻得到「無法知悉調查局執行細節」。民眾若使用全市光纖上網,內容訊息勢必會經調查局監控,嚴重侵害民眾個資及憲法所保障的通訊自由。</p>
|
||||
|
||||
<p>此外,市議員林世宗也說,依市府與「台灣智慧光網聯盟」合約,廠商年營業額達15億以上才開始收取0.5%權利金,簡直是賤租市府資源。</p>
|
||||
|
||||
<p>詹德存說,廠商年營業額達15億以上才能回本,預估8年後市府就可開始收取權利金。</p>
|
||||
|
||||
<p>林世宗說,市府和「台灣智慧光網聯盟」合約簽訂只收保證金6000萬,權利金需該廠商達15億以上年營業額後,才開始每年收取0.5%權利金750萬。
|
||||
<div>
|
||||
全文網址: <a href="http://mag.udn.com/mag/digital/storypage.jsp?f_ART_ID=454426#ixzz2SZFppTRE">全市光纖上網 「內容恐被監控」 | 網路衝浪 | 線上漫遊 | udn數位資訊</a>
|
||||
Power By udn.com</div></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,447 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] 到站就出不去 上班族氣:叫主管出來罰站 | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] 到站就出不去 上班族氣:叫主管出來罰站 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] 到站就出不去 上班族氣:叫主管出來罰站 ">
|
||||
<meta itemprop="description" content="[剪報] 到站就出不去 上班族氣:叫主管出來罰站 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] 到站就出不去 上班族氣:叫主管出來罰站 ">
|
||||
<meta property="og:description" content="[剪報] 到站就出不去 上班族氣:叫主管出來罰站 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-e5-88-b0-e7-ab-99-e5-b0-b1-e5-87-ba-e4-b8-8d-e5-8e-bb-e4-b8-8a-e7-8f-ad-e6-97-8f-e6-b0-a3-ef-bc-9a-e5-8f-ab-e4-b8-bb-e7-ae-a1-e5-87-ba-e4-be-86-e7-bd-b0-e7-ab-99/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/e5-89-aa-e5-a0-b1-e5-88-b0-e7-ab-99-e5-b0-b1-e5-87-ba-e4-b8-8d-e5-8e-bb-e4-b8-8a-e7-8f-ad-e6-97-8f-e6-b0-a3-ef-bc-9a-e5-8f-ab-e4-b8-bb-e7-ae-a1-e5-87-ba-e4-be-86-e7-bd-b0-e7-ab-99/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-e5-88-b0-e7-ab-99-e5-b0-b1-e5-87-ba-e4-b8-8d-e5-8e-bb-e4-b8-8a-e7-8f-ad-e6-97-8f-e6-b0-a3-ef-bc-9a-e5-8f-ab-e4-b8-bb-e7-ae-a1-e5-87-ba-e4-be-86-e7-bd-b0-e7-ab-99/">[剪報] 到站就出不去 上班族氣:叫主管出來罰站 </a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-04-26</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>最後不知道是台鐵先到還是高鐵先到??
|
||||
<table style="width: 100%;" border="0" cellspacing="3" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="76%">
|
||||
<div id="story_title">到站就出不去 上班族氣:叫主管出來罰站</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table style="width: 100%;" border="0" cellspacing="3" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="130%"><img src="http://udn.com/2010/images/linedot.gif" alt="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="75%">
|
||||
<div id="story_author">【聯合報╱記者<a href="http://blog.udn.com/hsinchu">李奕昕<img src="http://udn.com/1024/BLOG/blog.gif" alt="" /></a>、<a href="http://blog.udn.com/tainanshen">周宗禎<img src="http://udn.com/1024/BLOG/blog.gif" alt="" /></a>、<a href="http://blog.udn.com/hsinchu">羅緗綸<img src="http://udn.com/1024/BLOG/blog.gif" alt="" /></a>、梁雅雯/連線報導】</div></td>
|
||||
<td width="25%">
|
||||
<div id="story_update" align="right">2013.04.26 03:06 am</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div>
|
||||
<div id="story">高鐵昨停擺四小時,正值尖峰通勤時間,上班族趕不上開會、病人跟醫師約診「放鴿子」,有旅客「叫主管出來罰站!」怒火聲中,也有旅客很淡定,美籍工程師大衛就說:「搭過紐約地鐵就不會抱怨!」高鐵停擺,通勤族到站發現列車不開,焦急如熱鍋螞蟻,直說「慘了,會被客戶罵死!」</p>
|
||||
|
||||
<p><span style="font-size: 16px; color: #ff0000;">日用品公司業務員何餘芳跟客戶約在台北談合約,眼見高鐵始終沒有告知明確發車時間,忍不住埋怨,「就算遲到,禮貌上也要說明到達時間,但完全估算不出來!」結果同事搭自強號,他等高鐵,「看誰先到台北。」</span></p>
|
||||
|
||||
<p>網路公司林姓工程師十點要到高雄開會,「人家董事長、總經理已經坐在會議室,我回去怎麼向老闆交代?」一名從台南到台中的乘客,得知只能退回與對號座的差價廿五元,痛罵「叫主管罰站四小時,我給他廿五元!」</p>
|
||||
|
||||
<p>站務人員說,除了颱風或地震,從沒遇過如此大規模停駛,考驗危機處理能力,被旅客罵到灰頭土臉,只能摸摸鼻子檢討,「難得的震撼教育!」</p>
|
||||
|
||||
<p>眾人一片罵聲中,紐約美籍工程師大衛說,多次搭高鐵第一次誤點,他在美國老家搭地鐵曾受困數小時,連大哥大都不通,要抱怨還不知該找誰。</p>
|
||||
|
||||
<p>加拿大媳婦瑪莉安家人原本約了攝影師,要在台北為她與新生兒拍紀念照,等了兩個多小時仍等不到車,最後被迫放棄行程,不會說中文的瑪莉安笑說,「就改天吧,沒關係啦!」</p>
|
||||
|
||||
<p>「我們遠足,很好啊!」新竹縣五峰鄉花園國小和竹林分校四十九名師生畢業旅行,師生清晨六點卅從山區出發,到中午才上車,參訪高雄橋頭糖廠行程取消,師生利用等車時間,前往新竹新瓦屋文化保存區遊覽。</p>
|
||||
|
||||
<p></div>
|
||||
【2013/04/26 聯合報】<a href="http://udn.com/">@ </a><a href="http://udn.com/">http://udn.com/</a>
|
||||
<div>
|
||||
全文網址: <a href="http://udn.com/NEWS/NATIONAL/NATS2/%E5%88%B0%E7%AB%99%E5%B0%B1%E5%87%BA%E4%B8%8D%E5%8E%BB%20%E4%B8%8A%E7%8F%AD%E6%97%8F%E6%B0%A3%EF%BC%9A%E5%8F%AB%E4%B8%BB%E7%AE%A1%E5%87%BA%E4%BE%86%E7%BD%B0%E7%AB%99-7857117.shtml#ixzz2RWevNau0">到站就出不去 上班族氣:叫主管出來罰站 | 高鐵首次大停駛 | 國內要聞 | 聯合新聞網</a>
|
||||
Power By udn.com</div>
|
||||
</div></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,422 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] 南韓偶像不自愛 喝酒召妓壞軍紀 | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] 南韓偶像不自愛 喝酒召妓壞軍紀 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] 南韓偶像不自愛 喝酒召妓壞軍紀">
|
||||
<meta itemprop="description" content="[剪報] 南韓偶像不自愛 喝酒召妓壞軍紀 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] 南韓偶像不自愛 喝酒召妓壞軍紀">
|
||||
<meta property="og:description" content="[剪報] 南韓偶像不自愛 喝酒召妓壞軍紀 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-e5-8d-97-e9-9f-93-e5-81-b6-e5-83-8f-e4-b8-8d-e8-87-aa-e6-84-9b-e5-96-9d-e9-85-92-e5-8f-ac-e5-a6-93-e5-a3-9e-e8-bb-8d-e7-b4-80/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/e5-89-aa-e5-a0-b1-e5-8d-97-e9-9f-93-e5-81-b6-e5-83-8f-e4-b8-8d-e8-87-aa-e6-84-9b-e5-96-9d-e9-85-92-e5-8f-ac-e5-a6-93-e5-a3-9e-e8-bb-8d-e7-b4-80/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-e5-8d-97-e9-9f-93-e5-81-b6-e5-83-8f-e4-b8-8d-e8-87-aa-e6-84-9b-e5-96-9d-e9-85-92-e5-8f-ac-e5-a6-93-e5-a3-9e-e8-bb-8d-e7-b4-80/">[剪報] 南韓偶像不自愛 喝酒召妓壞軍紀</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-06-27</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>事實證明,睜眼說瞎話這種事,古今中外皆然。</p>
|
||||
|
||||
<p>韓國有偶像藝人膝蓋不適到按摩院治療。</p>
|
||||
|
||||
<p>台灣有政府高官蹺班按摩,還說政務官沒有上下班時間! What the FUCK !</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p>南韓偶像不自愛 喝酒召妓壞軍紀
|
||||
【聯合報╱記者梅衍儂/綜合報導】</p>
|
||||
|
||||
<p>2013.06.27 02:58 am</p>
|
||||
|
||||
<p>南韓偶像當兵期間不自愛,喝酒召妓敗壞軍紀!南韓SBS電視台節目「報導21」25日指出,正在服役的Rain、SE7EN與Mighty Mouth成員生菜等人,21日參加勞軍活動結束後,一行人先是違反軍紀飲酒作樂,隨後SE7EN和生菜半夜偷溜上街,到按摩院找性服務!</p>
|
||||
|
||||
<p>SE7EN與亮麗女星朴寒星交往10年,在南韓演藝圈傳為佳話。他今年3月入伍,21日和Rain、生菜等藝工隊同袍在春川市參加勞軍,台上載歌載舞與阿兵哥親切互動,不料一下台原形畢露,不僅身穿便服外出,還飲酒作樂,私藏手機,嚴重違反軍紀。</p>
|
||||
|
||||
<p>據該節目報導,Rain等人酒足飯飽後回旅館休息,SE7EN與生菜半夜偷溜出來,直奔按摩店。記者詢問,業者坦承「做黑的」,並透露SE7EN支付17萬韓元(約台幣4700元),猴急問何時提供「服務」,最後因等太久,拿回費用後離開。</p>
|
||||
|
||||
<p>記者欲確認身分,兩人驚慌遮臉,SE7EN與記者爆發肢體衝突。被問是否上按摩店找小姐,兩人答道:「我們絕對沒犯法。」隨即跳上計程車離開。</p>
|
||||
|
||||
<p>至於Rain雖未陷入「嫖妓疑雲」,但他今年1月違規外出與金泰希約會,如今又違紀喝酒、穿便服,再次受批評。<span style="color: #ff0000;">而國防部表示,兩位士兵因膝蓋不適才去按摩店治療</span>,但媒體吐槽:「那應該去醫院才對。」</p>
|
||||
|
||||
<p><a href="http://udn.com/NEWS/ENTERTAINMENT/ENT5/7990251.shtml#ixzz2XN9ns7E">http://udn.com/NEWS/ENTERTAINMENT/ENT5/7990251.shtml#ixzz2XN9ns7E</a></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,444 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] 在野黨打反貪 馬來西亞等待變天? | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] 在野黨打反貪 馬來西亞等待變天? - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] 在野黨打反貪 馬來西亞等待變天?">
|
||||
<meta itemprop="description" content="[剪報] 在野黨打反貪 馬來西亞等待變天? - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] 在野黨打反貪 馬來西亞等待變天?">
|
||||
<meta property="og:description" content="[剪報] 在野黨打反貪 馬來西亞等待變天? - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-e5-9c-a8-e9-87-8e-e9-bb-a8-e6-89-93-e5-8f-8d-e8-b2-aa-e9-a6-ac-e4-be-86-e8-a5-bf-e4-ba-9e-e7-ad-89-e5-be-85-e8-ae-8a-e5-a4-a9-ef-bc-9f/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/e5-89-aa-e5-a0-b1-e5-9c-a8-e9-87-8e-e9-bb-a8-e6-89-93-e5-8f-8d-e8-b2-aa-e9-a6-ac-e4-be-86-e8-a5-bf-e4-ba-9e-e7-ad-89-e5-be-85-e8-ae-8a-e5-a4-a9-ef-bc-9f/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-e5-9c-a8-e9-87-8e-e9-bb-a8-e6-89-93-e5-8f-8d-e8-b2-aa-e9-a6-ac-e4-be-86-e8-a5-bf-e4-ba-9e-e7-ad-89-e5-be-85-e8-ae-8a-e5-a4-a9-ef-bc-9f/">[剪報] 在野黨打反貪 馬來西亞等待變天?</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-05-02</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>這句話聽起來頗熟悉吶…</p>
|
||||
|
||||
<p>「國陣」以往執政期間內,常發生「任用私人、貪瀆與施政不力等弊端,內部分裂,民意支持度不斷下滑。」</p>
|
||||
|
||||
<p>
|
||||
<table style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="75%">
|
||||
<div id="story_author">【聯合報╱新加坡記者林以君】</div></td>
|
||||
<td width="25%">
|
||||
<div id="story_update" align="right">2013.05.02 03:42 am</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div>
|
||||
<div id="story"></p>
|
||||
|
||||
<p><strong>前言:</strong></p>
|
||||
|
||||
<p><strong>馬來西亞國會下議院、州議會選舉將於五月五日舉行,今天是倒數三天。</strong></p>
|
||||
|
||||
<p><strong>五年前,大馬最大黨「巫統」領導的「國陣」輸掉國會三分之二多數的優勢席次;五年後,反對陣營「民聯」主打「五月五,換政府」。本報今起貼近馬來西亞,報導大馬最可能「變天」的大選。</strong></p>
|
||||
|
||||
<p>馬來西亞五月五日將舉行國會與州議會大選,可能發生史上首度政黨輪替,卻沒有人敢打包票一定會變天。可確定的是,目前執政的「國民陣線(國陣)」,以及在野「人民聯盟(民聯)」,都是背水一戰;而「反貪腐」是此次選舉攻防重點。</p>
|
||||
|
||||
<p>中國輸出入銀行二○一二年對馬來西亞政經情勢分析報告中指出,<span style="font-size: 16px; color: #ff0000;">「國陣」以往執政期間內,常發生「任用私人、貪瀆與施政不力等弊端,內部分裂,民意支持度不斷下滑。」</span></p>
|
||||
|
||||
<p>馬來西亞在「國際透明組織」二○一二年調查卅國的三千位管理人員後,在貪汙嚴重程度排名第一。調查訪問全球卅個國家的三千位經理人,「你是否曾經因為競爭對手賄賂而失去合約」,有百分之五十的大馬受訪者回答「YES」,排名第一。</p>
|
||||
|
||||
<p>國際透明組織大馬負責人洛爾說:「這顯示,大馬私人公司把向公部門賄賂系統化,某種程度上甚至是制度化了。」</p>
|
||||
|
||||
<p>因此,反對陣營主打反貪腐,就頗得民心。檳城在五年前由華裔林冠英主政後,貪汙或許未見根絕,但城市變清潔,債務赤字大幅改善。二○○八年前,檳城州都是「國陣」執政,林冠英說:「(執政)這五年,檳州債務下降百分之九十五,中央債務卻增加百分之九十五。」</p>
|
||||
|
||||
<p>檳城人很自豪五年來的改變,也是說服別州用選票變天的最佳理由。林冠英不僅一次表示,民聯有信心在中央執政,其中重要原因之一是痛打執政的「國陣」的最大弱點,貪腐。</p>
|
||||
|
||||
<p>林冠英五年前代表民主行動黨參選,拉下在檳城執政卅九年的民政黨,獲選檳城首席部長(Chief Minister),相當於一州最高行政官員。他身兼民主行動黨祕書長,也是「民聯」陣營中的「執政模範」。</p>
|
||||
|
||||
<p>他說:「你看檳(城)州,我們也是沒有執政經驗,但五年來,檳州成為全馬來西亞最傑出的州,外資累計三百六十一億令吉(約合台幣三千五百億),比過去高出百分之一百八十七。」</p>
|
||||
|
||||
<p>林冠英表示,國陣最大的問題是貪汙,「要改變就必須嚴厲肅貪」;他也說,「肅貪的話,『巫統』就完蛋,不肅貪,國家就完蛋。」</p>
|
||||
|
||||
<p></div>
|
||||
【2013/05/02 聯合報】<a href="http://udn.com/">@ </a><a href="http://udn.com/">http://udn.com/</a>
|
||||
<div>
|
||||
全文網址: <a href="http://udn.com/NEWS/WORLD/WOR3/7869813.shtml#ixzz2S5xKq0WC">在野黨打反貪 馬來西亞等待變天? | 國際焦點 | 全球觀察 | 聯合新聞網</a>
|
||||
Power By udn.com</div>
|
||||
</div></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,454 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] 張柏芝玩跳水 遭陸官方打回票 | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] 張柏芝玩跳水 遭陸官方打回票 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] 張柏芝玩跳水 遭陸官方打回票">
|
||||
<meta itemprop="description" content="[剪報] 張柏芝玩跳水 遭陸官方打回票 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] 張柏芝玩跳水 遭陸官方打回票">
|
||||
<meta property="og:description" content="[剪報] 張柏芝玩跳水 遭陸官方打回票 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-e5-bc-b5-e6-9f-8f-e8-8a-9d-e7-8e-a9-e8-b7-b3-e6-b0-b4-e9-81-ad-e9-99-b8-e5-ae-98-e6-96-b9-e6-89-93-e5-9b-9e-e7-a5-a8/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/e5-89-aa-e5-a0-b1-e5-bc-b5-e6-9f-8f-e8-8a-9d-e7-8e-a9-e8-b7-b3-e6-b0-b4-e9-81-ad-e9-99-b8-e5-ae-98-e6-96-b9-e6-89-93-e5-9b-9e-e7-a5-a8/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-e5-bc-b5-e6-9f-8f-e8-8a-9d-e7-8e-a9-e8-b7-b3-e6-b0-b4-e9-81-ad-e9-99-b8-e5-ae-98-e6-96-b9-e6-89-93-e5-9b-9e-e7-a5-a8/">[剪報] 張柏芝玩跳水 遭陸官方打回票</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-04-11</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>這種鬼理由,全世界大概也只有中國敢明目張膽這樣搞吧!
|
||||
<table style="width: 100%;" border="0" cellspacing="3" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="76%">
|
||||
<div id="story_title">張柏芝玩跳水 遭陸官方打回票</div>
|
||||
<div id="bq"></div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table style="width: 100%;" border="0" cellspacing="3" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="130%"><img src="http://udn.com/2010/images/linedot.gif" alt="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="75%">
|
||||
<div id="story_author">【聯合報╱記者闕志儒/台北報導】</div></td>
|
||||
<td width="25%">
|
||||
<div id="story_update" align="right">2013.04.11 03:20 am</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<div id="story"></p>
|
||||
|
||||
<p>
|
||||
<table style="width: 214px;" border="0" cellspacing="0" cellpadding="6" align="right">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="200">
|
||||
<div id="media_file" align="center"><img src="http://udn.com/NEWS/MEDIA/7822832-3043473.jpg?sn=1365547323435" alt="" /></div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>張柏芝資格審查未過,目前難登「水立方」。
|
||||
圖/CFP</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
被 港媒虧「票房毒藥」的張柏芝,近來轉型為「綜藝咖」,頻登大陸綜藝節目秀才藝,外傳她以每集200萬台幣天價參加江蘇衛視「星跳水立方」,並已在香港練習 跳水多時,也為「水立方」拍攝宣傳影片,卻遲遲未見她現身比賽,據查,張柏芝仍未通過大陸廣電總局批准,理由竟是「<span style="font-size: 16px;"><strong><span style="color: #ff0000;">中共老幹部不喜歡張柏芝穿泳裝</span></strong></span>」。</p>
|
||||
|
||||
<p></div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div>全文網址: <a href="http://udn.com/NEWS/ENTERTAINMENT/ENT1/7822832.shtml#ixzz2Q6yN2ldk">張柏芝玩跳水 遭陸官方打回票 | 熱門星聞 | 娛樂追星 | 聯合新聞網</a> <a href="http://udn.com/NEWS/ENTERTAINMENT/ENT1/7822832.shtml#ixzz2Q6yN2ldk">http://udn.com/NEWS/ENTERTAINMENT/ENT1/7822832.shtml#ixzz2Q6yN2ldk</a>
|
||||
Power By udn.com</div>
|
||||
</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,462 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] 彰化直擊/二林病死雞池塘 無關H7N9 | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] 彰化直擊/二林病死雞池塘 無關H7N9 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] 彰化直擊/二林病死雞池塘 無關H7N9 ">
|
||||
<meta itemprop="description" content="[剪報] 彰化直擊/二林病死雞池塘 無關H7N9 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] 彰化直擊/二林病死雞池塘 無關H7N9 ">
|
||||
<meta property="og:description" content="[剪報] 彰化直擊/二林病死雞池塘 無關H7N9 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-e5-bd-b0-e5-8c-96-e7-9b-b4-e6-93-8a-ef-bc-8f-e4-ba-8c-e6-9e-97-e7-97-85-e6-ad-bb-e9-9b-9e-e6-b1-a0-e5-a1-98-e7-84-a1-e9-97-9ch7n9/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/e5-89-aa-e5-a0-b1-e5-bd-b0-e5-8c-96-e7-9b-b4-e6-93-8a-ef-bc-8f-e4-ba-8c-e6-9e-97-e7-97-85-e6-ad-bb-e9-9b-9e-e6-b1-a0-e5-a1-98-e7-84-a1-e9-97-9ch7n9/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-e5-bd-b0-e5-8c-96-e7-9b-b4-e6-93-8a-ef-bc-8f-e4-ba-8c-e6-9e-97-e7-97-85-e6-ad-bb-e9-9b-9e-e6-b1-a0-e5-a1-98-e7-84-a1-e9-97-9ch7n9/">[剪報] 彰化直擊/二林病死雞池塘 無關H7N9 </a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-04-06</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>史上最厲害檢疫人員出現,連採樣送驗都不用,看腐爛的屍體就知道跟H7N9無關!</p>
|
||||
|
||||
<p>這人根本是國寶啊!請政府好好保護,必要時直接派去需要如此高超技術的國家協助作檢疫工作!</p>
|
||||
|
||||
<p>
|
||||
<table style="width: 100%;" border="0" cellspacing="3" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="130%"><img src="http://udn.com/2010/images/linedot.gif" alt="" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="75%">
|
||||
<div id="story_author">【聯合報╱記者凌筠婷、<a href="http://blog.udn.com/500changhua">簡慧珍<img src="http://udn.com/1024/BLOG/blog.gif" alt="" /></a>/彰化縣報導】</div></td>
|
||||
<td width="25%">
|
||||
<div id="story_update" align="right">2013.04.06 03:14 am</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<div id="story"></p>
|
||||
|
||||
<p>
|
||||
<div>
|
||||
<table style="width: 214px;" border="0" cellspacing="0" cellpadding="6" align="center">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="200">
|
||||
<div id="media_file" align="center"><img src="http://udn.com/NEWS/MEDIA/7812185-3039966.jpg?sn=1365115355180" alt="" /></div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>彰化二林鎮許姓養豬戶的池塘,昨發現一百多隻死雞,初步排除與H7N9禽流感有關。
|
||||
記者凌筠婷/攝影</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
大陸H7N9疫情持續的敏感時刻,彰化二林鎮許姓養豬戶的池塘,昨發現一百多隻死雞,還有不少病懨懨活雞;防疫人員排除與H7N9禽流感有關,懷疑許以死雞做為豬食,他否認,辯稱是被人偷載丟棄。</p>
|
||||
|
||||
<p>許姓養豬戶的養豬場在二林鎮北平里照西路旁,昨天有民眾檢舉堆放病死雞;防疫人員前往處理時病死雞已不見蹤影,卻在養豬場後方約一百公尺的池塘,發現浮滿病死雞的屍體。</p>
|
||||
|
||||
<p>防疫人員表示,死雞腐爛快,所以很難辨別已堆放幾天,「但絕對不只一天」。許姓養豬戶表示,他和太太平常餵豬後就離開,沒看到可疑車輛,也沒有聞到雞屍臭味。</p>
|
||||
|
||||
<p>許表示,池塘雖是他所有,當初想要養吳郭魚,後來因為實在太忙沒空照料,就閒置在那裡;不知道是誰把死雞丟來這裡,他的豬都是吃餿水和飼料。</p>
|
||||
|
||||
<p><span style="color: #ff0000;">動物防疫所人員找來怪手,撈起池塘裡一百多隻病死雞,全都是蛋雞。因腐爛嚴重無法採集完整檢體,初步排除與H7N9禽流感有關,防疫人員將雞屍噴灑消毒液後就地掩埋。</span></p>
|
||||
|
||||
<p>彰化縣養雞協會聽說二林鎮出現病死雞,十分重視,下午派員前往了解。理事長陳國村表示,養雞場的正常折損率為萬分之五,彰化縣包括肉雞與蛋雞每天約有一萬隻雞死亡,都交給禽畜化製場再製成動物飼料,不可能外流。</p>
|
||||
|
||||
<p>彰化縣農業局長郭丑哲表示,目前正值大陸H7N9疫情蔓延的敏感時刻,為確保防疫沒有缺口,將與警方連繫,調閱路口監視畫面追查,並加強管控病死雞流向。</p>
|
||||
|
||||
<p></div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
全文網址: <a href="http://udn.com/NEWS/NATIONAL/NATS5/7812185.shtml#ixzz2PeZeoI00">彰化直擊/二林病死雞池塘 無關H7N9 | 禽流感疫情延燒 | 國內要聞 | 聯合新聞網</a> <a href="http://udn.com/NEWS/NATIONAL/NATS5/7812185.shtml#ixzz2PeZeoI00">
|
||||
</a></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,421 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] 志工送餐 扁嗑光鼎泰豐小籠包 | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] 志工送餐 扁嗑光鼎泰豐小籠包 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] 志工送餐 扁嗑光鼎泰豐小籠包">
|
||||
<meta itemprop="description" content="[剪報] 志工送餐 扁嗑光鼎泰豐小籠包 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] 志工送餐 扁嗑光鼎泰豐小籠包">
|
||||
<meta property="og:description" content="[剪報] 志工送餐 扁嗑光鼎泰豐小籠包 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-e5-bf-97-e5-b7-a5-e9-80-81-e9-a4-90-e6-89-81-e5-97-91-e5-85-89-e9-bc-8e-e6-b3-b0-e8-b1-90-e5-b0-8f-e7-b1-a0-e5-8c-85/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/e5-89-aa-e5-a0-b1-e5-bf-97-e5-b7-a5-e9-80-81-e9-a4-90-e6-89-81-e5-97-91-e5-85-89-e9-bc-8e-e6-b3-b0-e8-b1-90-e5-b0-8f-e7-b1-a0-e5-8c-85/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-e5-bf-97-e5-b7-a5-e9-80-81-e9-a4-90-e6-89-81-e5-97-91-e5-85-89-e9-bc-8e-e6-b3-b0-e8-b1-90-e5-b0-8f-e7-b1-a0-e5-8c-85/">[剪報] 志工送餐 扁嗑光鼎泰豐小籠包</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-04-22</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>坐牢的人,住得比我大間,吃得比我好上不知道多少,馬的,我真該好好檢討檢討!
|
||||
<table style="width: 100%;" border="0" cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="75%">
|
||||
<div id="story_author">【聯合報╱記者<a href="http://blog.udn.com/taichungnews">趙容萱<img src="http://udn.com/1024/BLOG/blog.gif" alt="" /></a>、<a href="http://blog.udn.com/taichungshen">游振昇<img src="http://udn.com/1024/BLOG/blog.gif" alt="" /></a>/台中報導】</div></td>
|
||||
<td width="25%">
|
||||
<div id="story_update" align="right">2013.04.22 04:30 am</div></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div>
|
||||
前總統陳水扁移監台中監獄培德醫院第三天,<span style="color: #ff0000; font-size: 18px;">扁仍拒吃獄中伙食,三餐都吃光支持者送來的食物,昨天午餐吃牛肉炒麵、牛肉湯,晚餐有鼎泰豐小籠包、雞湯等,阿扁胃口不錯,都吃光了。</span>挺扁團體台灣志工隊成員林一方及鄭羽秀連續三天送餐,她說,很多支持者希望送食物給阿扁,拜託志工隊代轉,但志工隊知道阿扁個性,扁不接受不熟悉者送來的食物,因此婉拒支持者好意,由志工隊負責採買、送餐。</p>
|
||||
|
||||
<p>林一方說,他和鄭羽秀都是和阿扁熟識十多年的好朋友,阿扁的伙食一向由扁辦統籌,負責平日的送餐,台灣志工隊則負責假日送餐,阿扁移監台中,剛到一個新環境,不信任獄方提供的食物,昨天他和鄭羽秀來送餐,就是要讓阿扁放心、心情也會好一點。</p>
|
||||
|
||||
<p>台中監獄副典獄長陳金峰說,送進監獄給扁的食物,和其他受刑人一樣,都須經過嚴格檢查,雞、鴨、魚、肉須煮熟後切開,豬需去骨以利檢查,湯類、冷凍品、結冰品、含酒精成分的菜,如燒酒雞等都拒收。</p>
|
||||
|
||||
<p>此外,台中監獄外陸續有陳水扁的支持者聚集、聲援,並表示要長期如此,經警方與獄方協調後,同意比照江陳會在台中舉辦模式,今天起劃設意見表達專區,開放支持者使用。</p>
|
||||
|
||||
<p>警方說,闢設意見表達專區,可避免挺扁民眾聲援行動影響其他探監家屬的進出,也比較不會發生突發事件。
|
||||
<div>
|
||||
全文網址: <a href="http://udn.com/NEWS/NATIONAL/NAT3/7846610.shtml#ixzz2R9K7XzFc">志工送餐 扁嗑光鼎泰豐小籠包 | 陳水扁轉送培德 | 國內要聞 | 聯合新聞網</a>
|
||||
Power By udn.com</div>
|
||||
</div></p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,440 @@
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="Lednerb">
|
||||
<meta name="description" content="Bilberry Premium Theme for Hugo.">
|
||||
<meta name="keywords" content="blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts">
|
||||
<meta name="generator" content="Hugo 0.50" />
|
||||
<title> [剪報] 日本發表世界最速2Gbps光纖網路 | My cool new Blog</title>
|
||||
<meta name="description" content="[剪報] 日本發表世界最速2Gbps光纖網路 - Bilberry Premium Theme for Hugo.">
|
||||
<meta itemprop="name" content="[剪報] 日本發表世界最速2Gbps光纖網路">
|
||||
<meta itemprop="description" content="[剪報] 日本發表世界最速2Gbps光纖網路 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:title" content="[剪報] 日本發表世界最速2Gbps光纖網路">
|
||||
<meta property="og:description" content="[剪報] 日本發表世界最速2Gbps光纖網路 - Bilberry Premium Theme for Hugo.">
|
||||
<meta property="og:image" content="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?size=200">
|
||||
<meta property="og:url" content="https://h.cowbay.org/article/e5-89-aa-e5-a0-b1-e6-97-a5-e6-9c-ac-e7-99-bc-e8-a1-a8-e4-b8-96-e7-95-8c-e6-9c-80-e9-80-9f2gbps-e5-85-89-e7-ba-96-e7-b6-b2-e8-b7-af/">
|
||||
<meta property="og:site_name" content="My cool new Blog">
|
||||
<meta property="og:type" content="article">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="https://h.cowbay.org/favicon-16x16.png" sizes="16x16">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="https://h.cowbay.org/sass/combined.min.717098cb5503581e75f12e486a847ca410bf8367d4d8713f4c37affc868c5a1d.css">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body class="bilberry-hugo-theme">
|
||||
|
||||
<nav>
|
||||
|
||||
<div class="container">
|
||||
<ul class="topnav">
|
||||
|
||||
|
||||
<li><a href="/page/about-bilberry/">About Bilberry</a></li>
|
||||
|
||||
|
||||
|
||||
<li><a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Github</a></li>
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
<div id="search-box" class="search">
|
||||
<i class="fa fa-search"></i>
|
||||
<input id="search" type="text" placeholder="Search ...">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="logo">
|
||||
<a href="/" class="logo">
|
||||
|
||||
<img src="https://www.gravatar.com/avatar/88188b6cc451928eba90e8400bc68086?d=mm&size=200" alt="">
|
||||
|
||||
|
||||
<span class="overlay"><i class="fa fa-home"></i></span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="titles">
|
||||
<h3 class="title"><a href="/">My cool new Blog</a></h3>
|
||||
|
||||
<span class="subtitle">Hello World! This is the most epic subtitle ever.</span>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="languages">
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="toggler">
|
||||
|
||||
<i class="fa fa-bars" aria-hidden="true"></i>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="main container">
|
||||
|
||||
|
||||
<div class="article-wrapper u-cf single">
|
||||
|
||||
<a class="bubble" href="/article/e5-89-aa-e5-a0-b1-e6-97-a5-e6-9c-ac-e7-99-bc-e8-a1-a8-e4-b8-96-e7-95-8c-e6-9c-80-e9-80-9f2gbps-e5-85-89-e7-ba-96-e7-b6-b2-e8-b7-af/">
|
||||
<i class="fa fa-fw fa-pencil"></i>
|
||||
</a>
|
||||
|
||||
<article class="default article">
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3><a href="/article/e5-89-aa-e5-a0-b1-e6-97-a5-e6-9c-ac-e7-99-bc-e8-a1-a8-e4-b8-96-e7-95-8c-e6-9c-80-e9-80-9f2gbps-e5-85-89-e7-ba-96-e7-b6-b2-e8-b7-af/">[剪報] 日本發表世界最速2Gbps光纖網路</a></h3>
|
||||
<div class="meta">
|
||||
|
||||
|
||||
<span class="date moment">2013-04-15</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<span class="categories">
|
||||
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報</a>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<p>今天在PTT八卦版看到的PO文</p>
|
||||
|
||||
<p>作者 nemesis0 (レイ) 看板 Gossiping
|
||||
標題 [爆卦] 日本發表世界最速2Gbps光纖網路
|
||||
時間 Mon Apr 15 16:39:07 2013
|
||||
───────────────────────────────────────</p>
|
||||
|
||||
<p>So-net、“世界最速”最大2GbpsのFTTHサービス「NURO 光」~月額4980円から</p>
|
||||
|
||||
<p>ソネットエンタテインメント株式会社は15日、光ファイバーインターネット通信
|
||||
サービスの新ブランド「NURO 光」を発表した。</p>
|
||||
|
||||
<p>最大通信速度は下り2Gbps、上り1Gbps。</p>
|
||||
|
||||
<p>個人用の商用FTTHサービスでは世界最速だという。</p>
|
||||
|
||||
<p>宅内終端装置には1Gbpsの有線LANポートのほか、</p>
|
||||
|
||||
<p>最大450Mbpsの無線LAN機能(IEEE 802.11a/b/g/n、2.4GHz/5GHz)も標準装備する。</p>
|
||||
|
||||
<p>月額料金は、2年継続の場合で4980円。このほか契約料が840円、</p>
|
||||
|
||||
<p>基本工事費が3万1500円。</p>
|
||||
|
||||
<p>提供エリアは、関東1都6県。</p>
|
||||
|
||||
<p>戸建て住宅および2階建て以下の集合住宅を対象に、同日より受付を開始する。
|
||||
摘要:So-net於15日發表下載2Gbps 上傳1Gbps的光纖網路服務「NURO 光」。</p>
|
||||
|
||||
<p>為目前世界最快的個人商用光纖網路。</p>
|
||||
|
||||
<p>費用為每月4980yen(約台幣1500元),提供服務範圍為關東1都6縣。</p>
|
||||
|
||||
<p>補充:最後一行的意思是,當天開始為獨棟住戶及二層樓以下的公寓住戶提供服務。</p>
|
||||
|
||||
<p>住日本的快去申請!!!</p>
|
||||
|
||||
<p>其中有位鄉民的推文</p>
|
||||
|
||||
<p>推 faratia:人家都叫雞了,我們還在把妹 04/15 16:41</p>
|
||||
|
||||
<p>說得真好啊!</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer no-tags">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</article>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div id="disqus_thread"></div>
|
||||
<script type="application/javascript">
|
||||
var disqus_config = function () {
|
||||
|
||||
|
||||
|
||||
};
|
||||
(function() {
|
||||
if (["localhost", "127.0.0.1"].indexOf(window.location.hostname) != -1) {
|
||||
document.getElementById('disqus_thread').innerHTML = 'Disqus comments not available by default when the website is previewed locally.';
|
||||
return;
|
||||
}
|
||||
var d = document, s = d.createElement('script'); s.async = true;
|
||||
s.src = '//' + "bilberry-hugo-theme" + '.disqus.com/embed.js';
|
||||
s.setAttribute('data-timestamp', +new Date());
|
||||
(d.head || d.body).appendChild(s);
|
||||
})();
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="https://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
|
||||
|
||||
<div class="recent-posts">
|
||||
<strong>Latest posts</strong>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/article/google-550-5-7-1-sloution/">寄信給google被退信 錯誤 550-5.7.1的解法</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/netdata-linux-system-performance-monitor-dashboard/">Netdata Linux System Performance Monitor Dashboard</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/linux-performance-monitor-dashboard-netdata-md/">Linux 底下極其詳細的System performace Monitor Dashboard - Netdata</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/syntax-test/">Syntax Test</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/psql-create-role-and-assign-priviledges/">psql create role and assign priviledges</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/study-url/">Study URL</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/article/rsync-time-backup/">[筆記] Linux 底下好用的備份工具 rsync-time-backup</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="categories">
|
||||
<a href="/categories/"><strong>Categories</strong></a>
|
||||
<ul>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E6%9C%AA%E5%88%86%E9%A1%9E">未分類 (86)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%B7%A5%E4%BD%9C%E7%AD%86%E8%A8%98">工作筆記 (68)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%85%B6%E4%BB%96">其他 (46)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E7%AD%86%E8%A8%98">筆記 (30)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/%E5%89%AA%E5%A0%B1">剪報 (18)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/starting">Starting (5)</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/categories/blog">Blog (4)</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="right">
|
||||
|
||||
<div class="external-profiles">
|
||||
<strong>Social media</strong>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/TheRealLednerb" target="_blank"><i class="fa fa-twitter-adblock-proof"></i></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<a href="https://github.com/Lednerb" target="_blank"><i class="fa fa-github"></i></a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="languages">
|
||||
<strong>Other languages</strong>
|
||||
|
||||
|
||||
<a href="/en" class="active">en</a>
|
||||
|
||||
|
||||
|
||||
<a href="/de">de</a>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
<div class="credits">
|
||||
<div class="container">
|
||||
<div class="copyright">
|
||||
<a href="https://github.com/Lednerb" target="_blank">
|
||||
©
|
||||
|
||||
2017
|
||||
|
||||
by Lednerb
|
||||
</a>
|
||||
|
||||
</div>
|
||||
<div class="author">
|
||||
<a href="https://github.com/Lednerb/bilberry-hugo-theme" target="_blank">Bilberry Hugo Theme</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/externalDependencies.39c47e10e241eae2947b3fe21809c572.js" integrity="md5-OcR+EOJB6uKUez/iGAnFcg=="></script>
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript" src="https://h.cowbay.org/js/theme.ff50ae6dc1bfc220b23bf69dbb41b54e.js" integrity="md5-/1CubcG/wiCyO/adu0G1Tg=="></script>
|
||||
|
||||
<script>
|
||||
$(".moment").each(function() {
|
||||
$(this).text(
|
||||
moment( $(this).text() )
|
||||
.locale( "en" )
|
||||
.format('LL')
|
||||
);
|
||||
});
|
||||
|
||||
$(".footnote-return sup").html("");
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
var client = algoliasearch("Y2C4RWMPXW", "50ea7f8c41c0ad233926e0be2b769ed1");
|
||||
var index = client.initIndex("default-content");
|
||||
|
||||
$('#search').autocomplete({ hint: false, autoselect: true, debug: false },
|
||||
[
|
||||
{
|
||||
|
||||
source: $.fn.autocomplete.sources.hits(index, { hitsPerPage: 5, filters: 'language: en' }),
|
||||
|
||||
displayKey: function(suggestion) {
|
||||
return suggestion.title || suggestion.author
|
||||
},
|
||||
templates: {
|
||||
suggestion: function(suggestion) {
|
||||
return "<span class='entry " + suggestion.type + "'>"
|
||||
+ "<span class='title'>" + suggestion.title + "</span>"
|
||||
+ "<span class='fa fa-fw " + suggestion.iconClass + "'></span>"
|
||||
+ "</span>"
|
||||
;
|
||||
},
|
||||
empty: function() {
|
||||
return "<span class='empty'>Nothing found.</span>"
|
||||
},
|
||||
footer: function() {
|
||||
return '<div class="branding">Powered by <img src="https:\/\/h.cowbay.org\/dist\/algolia-logo-light.svg" /></div>'
|
||||
}
|
||||
|
||||
},
|
||||
}
|
||||
])
|
||||
.on('autocomplete:selected', function(event, suggestion, dataset) {
|
||||
window.location = (suggestion.url);
|
||||
})
|
||||
.keypress(function (event, suggestion) {
|
||||
if (event.which == 13) {
|
||||
window.location = (suggestion.url);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user