2015年1月28日 星期三

Design

2015 波隆納
james barker  (動物)
valentina piacenza(動物)
oscar sabini
liuna virardi (圖騰臉)
bruno zocca (淺灰)
sergio ruzzier (動物)
catharina valckx (小女孩)
martina liebig (海底)
natascha rosenberg (動物擬人)
jaesun ahn
小松由美子
sinhye lee
amin hassanzadeh sharif (藍樹)
pesca nekono (日本動物)


歐洲房子

Gif
法國

教學


Video
映像教室
TECHNE 映像の教室

日本雜貨
http://aiueoshigeru.com/
永樂屋(布)

水彩
Mary Helmreich 美式寫實風景
與水彩交疊的鏡射影像 — Fabienne Rivory

名片
極簡風格

版畫
tassuro kiuchi 日本

PSD
Search PSD
50 Free Web And Mobile UI

特殊色票.
nipponcolors
色彩繽紛的美麗插畫 - HR-FM
Les contes de la nuit 夜晚與彩色玻璃
pip and pop

北歐
Antonella Abbatiello 水彩
動物騎腳踏車
Alice in Wonderland
ella (動物腳色)
明信片街景
Poppy & Red(動物與重覆花紋)
Teagan White(動物與重覆花紋)
Anna Emilia (動物與重覆花紋)
alessandro gottardo(簡約海報設計)
lisbeth zwereger (童書)
apak 溫馨暖色森林系)
Lotta Nieminen(圖示簡約)
alexander jansson(奇幻)

Flash Web Template
FlashVillage

素材
紋路 Plaintextures
Search ICON
漫畫圖庫素材
紐約窗景

攝影
成人的時尚童話
Let the poets cry themselves to sleeP
水底攝影 Elena Kalis
海底攝影 Enric Adrian Gener
奇幻攝影 Lissy
超現實建築物模型
與豬共生

日本木雕
yoshimasa (動物)
小泉悟 (動物)

日本插畫
徳田有希(卡通幽默)
植田真 (水彩,遼闊)
日本浴衣

想像力!
cowrest (童話小雜亂)
鷹野 百 (冷暗色、野獸派、動物)
yoko hishida (明亮)


minty
meguro393
zoosun
yumitomori
naffy
mamefuk
smoogee
Kazuaki Yamauchi
tanji
fukuda

大眼動物
kobasayu(水彩甜美)
Sakae Ozawa(3331)
小池葉月(簡單清爽)
i3ar247 design
yannascimbene
mateusz-kolek
金魚達人
Tomoyuki KANBE
Nomoco
高橋美賀子
山口藍(浮世繪)
森洋史(森林)
gallo44 (漫畫CG)
John Hathway(透視)
ogre-s(動物插畫)
貓咪

歐美插畫
浣熊
pascal campion
vivienne to
http://www.kenart.net/
〝骨肉分離〞的街頭塗鴉 - Nychos A & B
黑暗華麗的時尚插畫 - Tom Bagshaw
Galia Zin'ko
Mary Blair
Mateo Dineen(怪獸)Blog
極簡風格童話海報創作 – Christian Jackson
奇幻人物肖像

印刷
LookingGood
libook
藍格

配色
螢光色

PhotoShop濾鏡
50 Extremely Useful And Time Saving Free Photoshop Action Sets

比賽
波隆納插畫

特殊表現手法
燈箱下隱藏的另外一層意義

電影字體


難以分類
是誰說COS卡通角色STYLE與時尚畫不上等號
結合相片與手繪的美麗時尚插畫 - Jenny Liz Rome
壞芭比的真實生活
明信片網站 riflepaperco
Still and Dynamic Imagery

神秘的なウユニ塩湖
模型小房子
給準備拍攝北極光的你
台灣極光

2013年5月28日 星期二

shell script comparison of float

int=3.14
if [ `echo "$int < 6"|bc` -eq 1 ]; then
echo "true"
else
echo "false"
fi

2013年4月16日 星期二

jquery json to string

http://stackoverflow.com/questions/3593046/jquery-json-to-string

JSON.stringify = JSON.stringify || function (obj) {
var t = typeof (obj);
if (t != "object" || obj === null) {
// simple data type
if (t == "string") obj = '"'+obj+'"';
return String(obj);
}
else {
// recurse array or object
var n, v, json = [], arr = (obj && obj.constructor == Array);
for (n in obj) {
v = obj[n]; t = typeof(v);
if (t == "string") v = '"'+v+'"';
else if (t == "object" && v !== null) v = JSON.stringify(v);
json.push((arr ? "" : '"' + n + '":') + String(v));
}
return (arr ? "[" : "{") + String(json) + (arr ? "]" : "}");
}
};

var tmp = {one: 1, two: "2"};
JSON.stringify(tmp); // '{"one":1,"two":"2"}'

2013年1月21日 星期一

2012年12月18日 星期二

重心

http://www3.cnsh.mlc.edu.tw/~math/new/gravity.pdf

dbscan Gravity Center
Calculate Center of Gravity

實體中心
加權重心

2012年11月22日 星期四

Hive Left Join

http://myeyeofjava.iteye.com/blog/1703815

SELECT a.val, b.val FROM a LEFT OUTER JOIN b ON (a.key=b.key)

對應所有 a 表中的記錄都有一條記錄輸出。輸出的結果應該是 a.val, b.val,當 a.key=b.key 時,而當 b.key 中找不到等值的 a.key 記錄時也會輸出 a.val, NULL。「FROM a LEFT OUTER JOIN b」這句一定要寫在同一行——意思是 a 表在 b 表的左邊,所以 a 表中的所有記錄都被保留了;「a RIGHT OUTER JOIN b」會保留所有 b 表的記錄。OUTER JOIN 語義應該是遵循標准 SQL spec的。

http://rapapa.net/wp/wp-content/uploads/2012/06/Visual_SQL_JOINS_V2.png

2012年10月29日 星期一

Json with JavaScript

http://blog.roodo.com/syshen/archives/1410294.html
http://stackoverflow.com/questions/684672/loop-through-javascript-object

Limit or re-format x-axis items?


Highcharts how to use JavaScript variable as series data source?

line-time-series

http://www.highslide.com/forum/viewtopic.php?f=9&t=7665

http://stackoverflow.com/questions/8648861/how-to-use-epoch-time-with-highcharts-series-data

2012年8月27日 星期一

Nutch

Nutch 2.0
http://blog.csdn.net/amuseme_lu/article/details/7777426
Nutch2.0 之 Apache Gora 介紹
http://wiki.apache.org/nutch/Nutch2Tutorial
Nutch2在eclipse中的配置和测试

eclipse中調試nutch2.0+cassandra

Testing Nutch 2.0 under Eclipse
FIX:
1.
PROXY取檔問題
http://eureka.ykyuen.info/2010/03/09/eclipse-configure-proxy-for-subclipse/

2.Check-out Nutch branch and Gora trunk versions using the SVN wizard, with the following urls
http://svn.apache.org/viewvc/gora/

3.NUTCH SVN
http://svn.apache.org/repos/asf/nutch/branches/2.x/

ElasticSearch

Lucene4.0 / Solr 4.0 的新特性

Solr簡介
SolrCloud
SolrCloud 詳細
--------------------------------------

Nutch
Nutch Crawler工作流程
Nutch中Hadoop的应用之Injector
Nutch 1.4 Command Line Options of bin
Lucene:基于Java的全文检索引擎简介
lucene in 5 minutes
Apache nutch 1.5 和 Apache solr 3.6安裝配置
Apache nutch 1.5官方教學
Integrate Solr with Nutch

PTT 爬網技術
bbs2html
ptt crawler

Lucene API
不能直接更新index,只能透過新增刪除document的方式來更新index
Lucene的索引文件格式
Luke
Nutch Indexer分析
How to read a Lucene index?
Lucene實戰開發手記
Summarization with Lucene

Lucene 文件格式
Lucene的索引文件格式
lucene-segments的文件格式分析

Lucene Query
QueryParser Rules

nutch入门教程
http://www.docin.com/p-16526426.html

中華語文知識庫
mmseg4j 中文斷詞java 實作
当前几个主要的Lucene中文分词器的比较
國語辭典簡編本編輯資料字詞頻統計報告
辭典附錄

2012年8月1日 星期三

How to create output in gzip files in Hadoop Hive

set mapred.output.compress=true;
set hive.exec.compress.output=true;
set mapred.output.compression.codec=org.apache.hadoop.io.compress.GzipCodec;
set io.compression.codecs=org.apache.hadoop.io.compress.GzipCodec;
INSERT OVERWRITE DIRECTORY 'hive_out' select * from tables limit 10000;"

source

2012年7月27日 星期五

HADOOP Command

hadoop dfsadmin -report
hadoop fs -dus [directory]

Hive使用LEFT OUTER JOIN 實現not in 子句

source


查詢在key字段在a表中,但不在b表中的數據
select a.key from a left outer join b on a.key=b.key where b.key1 is null