Skip to content

Instantly share code, notes, and snippets.

View dudfoKim's full-sized avatar

Kim YeongRae dudfoKim

  • National Federation of Fisheries Cooperatives
  • Seoul, Korea
View GitHub Profile
@dudfoKim
dudfoKim / caffe_install.md
Created January 3, 2017 06:13 — forked from titipata/caffe_install.md
My notes on how to install caffe on Ubuntu

Caffe Installation

Note on how to install caffe on Ubuntu. Sucessfully install using CPU, more information for GPU see this link

###Installation

  • verify all the preinstallation according to CUDA guide e.g.
lspci | grep -i nvidia
@dudfoKim
dudfoKim / weather.R
Created April 14, 2016 06:48 — forked from richfitz/weather.R
Download some weather data from openweathermap.org
library(RCurl)
library(rjson)
url.base <- function()
"http://api.openweathermap.org/data"
city.to.id <- function(city, country="AU") {
url <- sprintf("%s/2.5/find?q=%s", url.base(), city)
res <- fromJSON(getURLContent(url))
if (!is.null(country)) {