Skip to content

Instantly share code, notes, and snippets.

View phonchi's full-sized avatar

phonchi

  • Department of Applied Mathematics, National Sun Yat-sen University
View GitHub Profile
@phonchi
phonchi / 0_Background.md
Created June 15, 2016 03:09 — forked from ccwang002/0_Background.md
Lab Coding Instructions for Beginners

[TOC]

Lab Guide for Coding Beginners

亮亮(@ccwang002)| Mar, 2015 | CC 3.0 BY license

如果內容有誤,你可以用任何管道發訊息轟炸我,或用底下的 gist comment 留言。

學習方式

每個檔案都會是一個主題,主題底下會列出一些資源。資源的最後會有一個學習目標,方便讓你評估自己學到什麼程度。學習目標會給一個明確的任務,我盡量讓它能跟(宅宅的)日常生活結合。通常只要完成前一、二個目標就行了,這也不是功課所以不一定要給我看。如果你不介意給我看,我會分享我主觀的建議,但大部份的任務是沒有絕對的正確答案。只要能解決問題都是好方法。

<style> .reveal, .reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 { font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, "Microsoft JhengHei", Meiryo, "MS ゴシック", "MS Gothic", sans-serif; } h1, h2, h3, h4, h5, h6 { text-transform: none !important; } .color-yellow{ color: yellow; }
@phonchi
phonchi / AWS_EMR_Note.md
Last active May 19, 2017 00:14
Install on AWS EMR
  1. We can adjust some hadoop setting like use config.json to adjust hadoop block size
[
  {
    "Classification": "hdfs-site",
    "Properties": {
      "dfs.blocksize": "67108864"
    }
  }
]
@phonchi
phonchi / Install_FFmepg_OpenCV_EMR.md
Created May 19, 2017 00:24
Intall FFmepg and OpenCV on AWS EMR
sudo yum -y update
sudo yum -y groupinstall 'Development Tools'
sudo yum install -y cmake git pkgconfig
sudo yum install -y libpng-devel libjpeg-turbo-devel jasper-devel openexr-devel libtiff-devel libwebp-devel
sudo yum install -y libdc1394-devel libv4l-devel gstreamer-plugins-base-devel
sudo yum install -y gtk2-devel
sudo yum install -y tbb-devel eigen3-devel
wget https://bootstrap.pypa.io/get-pip.py
sudo python get-pip.py