Skip to content

Instantly share code, notes, and snippets.

View hongry18's full-sized avatar

hongry hongry18

View GitHub Profile
@hongry18
hongry18 / osx.route.md
Created January 22, 2018 01:56
맥 인터넷 무선, 유선 사용시 라우팅

sudo route -n add 출발지 목적지

example

내부망 192.168.0.0 ~ 192.168.255.255 연결할 게이트웨이 192.168.100.1

sudo route -n add 192.168.0.0/16 192.168.100.1

등록된 라우트 인터페이스 삭제

sudo route delete 192.168.0.0/16

@hongry18
hongry18 / epoll.go
Created January 26, 2018 09:50 — forked from tevino/epoll.go
Golang example for using epoll
package main
import (
"fmt"
"net"
"os"
"syscall"
)
const (
@hongry18
hongry18 / nginx.conf
Created February 8, 2018 04:24 — forked from Stanback/nginx.conf
Example Nginx configuration for adding cross-origin resource sharing (CORS) support to reverse proxied APIs
#
# CORS header support
#
# One way to use this is by placing it into a file called "cors_support"
# under your Nginx configuration directory and placing the following
# statement inside your **location** block(s):
#
# include cors_support;
#
# As of Nginx 1.7.5, add_header supports an "always" parameter which
@hongry18
hongry18 / haproxy.cfg.md
Last active April 4, 2018 02:30
haproxy setting was, websocket

haproxy.cfg

global
    tune.ssl.default-dh-param 2048
    log               127.0.0.1 local0 notice
    user              root
    group             root

defaults
    mode              http
@hongry18
hongry18 / GeoIP.module.install.md
Last active April 24, 2018 02:03
GeoIP module install
@hongry18
hongry18 / nginx.install.md
Last active April 25, 2018 02:11
install nginx

nginx

dependencies

yum -y install gcc gcc-c++ geoip geoip-devel

downloads & unArchive

@hongry18
hongry18 / curl.md
Created July 6, 2018 13:48 — forked from subfuzion/curl.md
curl POST examples

Common Options

-#, --progress-bar Make curl display a simple progress bar instead of the more informational standard meter.

-b, --cookie <name=data> Supply cookie with request. If no =, then specifies the cookie file to use (see -c).

-c, --cookie-jar <file name> File to save response cookies to.

텐서플로우 시작하기

글쓴이: 김정주([email protected])

이 문서는 텐서플로우 공식 페이지 내용을 바탕으로 만들어졌습니다.


소개

텐서플로우(TensorFlow)는 기계 학습과 딥러닝을 위해 구글에서 만든 오픈소스 라이브러리입니다. 데이터 플로우 그래프(Data Flow Graph) 방식을 사용하였습니다.

adb logcat colorfull

adb logcat --format=color -s 'System.err:* AndroidRuntime:*'