Skip to content

Instantly share code, notes, and snippets.

View wonchulee's full-sized avatar
🐱

Wonchul Lee wonchulee

🐱
  • NaverCloud
  • South Korea
View GitHub Profile
@wonchulee
wonchulee / reference
Last active February 27, 2020 03:47
Gitlab docker registry setup
Fixing issue : x509: cannot validate certificate for ... because it doesn't contain any IP SANs
- https://github.com/docker/distribution/issues/948
Create self-signed certificates
- https://docs.docker.com/registry/insecure/
docker registry
- https://docs.docker.com/registry/deploying/
@wonchulee
wonchulee / gist:2f7ae0582ec4825eb6f00fc7e650480b
Created December 3, 2019 13:28
fix x390 touchpad on fedora31
$ sudo sh -c 'echo -n "elantech" > /sys/bus/serio/devices/serio1/protocol'
# reference
https://wiki.debian.org/SynapticsTouchpad#Determining_the_type_of_Touchpad
https://www.reddit.com/r/thinkpad/comments/chxg1l/trackpad_issue_linux_x390/
@wonchulee
wonchulee / sample
Last active September 8, 2019 13:45
AV1
netflix sample: http://download.opencontent.netflix.com/?prefix=AV1/Chimera/
avif samples: https://github.com/AOMediaCodec/av1-avif/tree/master/testFiles
@wonchulee
wonchulee / gstreamer_cerbero_android.md
Last active March 30, 2019 06:03
how to build GStreamer cerbero for Android

How to build GStreamer cerbero for Android

###Clone and build cerbero

clone cerbero from gstreamer, not sdk/gstreamer

git clone git://anongit.freedesktop.org/gstreamer/cerbero

build cerbero for getting gstreamer-1.0-android-armv7-<version>.zip

@wonchulee
wonchulee / dev_gstreamer_with_homebrew.md
Last active August 29, 2015 14:19
developing gstreamer with homebrew

OSX gstreamer개발자를 위한 homebrew 활용 팁

이 페이지를 읽는 개발자는 homebrew를 알고 있다고 가정한다. 최신 gstreamer git master를 homebrew로 빌드하는 방법과 로컬 git을 사용하여 빌드하는 방법을 공유하고자 한다.

git master 빌드하기

$ brew install --HEAD gstreamer

homebrew에서 --HEAD 옵션으로 git master로 패키지를 설치할 수 있는 기능을 제공한다. 물론 해당 패키지의 recipe가 git으로 빌드할 수 있도록 head 항목이 recipe에 기술되어 있는 경우에 가능하다. (gstreamer 관련 패키지는 모두 등록되어 있다)