요리비결 - 파절이
Mon, Apr 6, 2020
파절이 재료준비
파 2대 잘게 썰어서, 찬 물에 2시간 담그기 양념
설탕 1T 다진마늘 1T 진간장 3T 식초 2T 고추가루 1~2T 조리
비비고 비비고 참기름 1T 통깨 느낌대로
Compiling C++ on Linux
Tue, Mar 3, 2020
Checking GLIBC version on Linux system $ ldd --version ldd (Ubuntu GLIBC 2.27-3ubuntu1) 2.27 Hello World hello.cpp
#include <iostream> int main() { std::cout << "Hello World\n"; } $ g++ -o hello hello.
...
➦
Something making my heart beat
Tue, Mar 3, 2020
Movies I can watch again and again Little Miss Sunshine Samurai Champloo 24 The Equalizer 나의 아저씨 Game of Thrones 응답하라 1988 American Gangster Gladiator Love Actually Indiana Jones Actors Denzel Washington Russell Crowe 오나라 오정세 Music Beatles - Let it be Billy Joel - She’s Always A Woman Billy Joel - Piano Man Bob Marley - No Waman No Cry Bobby McFerrin - Don’t Worry be happy Brian Kennedy - Crazy Love Cassandra Wilson - Fragile CB Mass - 휘파람 (Featuring T, 이주한) (Asoto Union Version) Charlie Hunter - No Woman No Cry Chie Ayado - Leaving On A Jet Plane Chie Ayado - Let It Be Eagles - Hotel California (Live) Earth, Wind and Fire - September George Michael - Star People - Unplugged Gregory Porter - Musical Genocide (Live) Jason Mraz - Everything Is Sound Justin Bieber - Love Yourself Kirk Franklin - Blessing in the storm Lionel Richie - Easy Los Lobos - Donna Los Lobos - El Gusto Mariah Carey - Dreamlover Marianne Faithful - Madame George Mark Ronson - Uptown Funk (Feat.
...
➦
Jetson TX2 - Check system information
Thu, Feb 27, 2020
System Info System info
$ uname -a Linux devplayg-desktop 4.9.140-tegra #1 SMP PREEMPT Mon Dec 9 22:52:02 PST 2019 aarch64 aarch64 aarch64 GNU/Linux OS
$ cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=18.
...
➦
Jetson TX2 tips
Thu, Feb 27, 2020
RTSP Viewer RTSP_PATH=rtsp://id:pwd@1.1.1.1:3000/Streaming/Channels/101/ gst-launch-1.0 rtspsrc location="$RTSP_PATH" latency=500 ! rtph264depay ! h264parse ! nvv4l2decoder enable-max-performance=1 ! nvoverlaysink overlay-x=800 overlay-y=50 overlay-w=640 overlay-h=480 overlay=2
Installing and using CentOS 6.10 via Docker
Wed, Jan 1, 2020
Pulling and run image in general
$ docker run -it --name c6 centos:6.10 bash with sharing filesystem
$ docker run -it -v /host/dir:/container/dir --name c6 centos:6.10 bash with binding container ports to the host
...
➦
Installing and using MariaDB 10.3 via Docker
Wed, Jan 1, 2020
https://hub.docker.com/_/mariadb
Pulling and run image from command-line docker run --name db -e MYSQL_ROOT_PASSWORD=YOUR_PASSWORD -e TZ=Asia/Seoul -p 3306:3306 -d mariadb:10.3 --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci -e MYSQL_ROOT_PASSWORD=YOUR_PASSWORD -e TZ=Asia/Seoul -p 3306:3306 -d mariadb:10.
...
➦
Installing and using Ubuntu 18.04 via Docker
Wed, Jan 1, 2020
Pulling and run image in general
docker run -it --name ubt ubuntu:18.04 bash with sharing filesystem
docker run -it -v /host/dir:/container/dir --name ubt ubuntu:18.04 bash with binding container ports to the host
...
➦
Installing and using other containers via Docker
Wed, Jan 1, 2020
Pulling and run image Apache 2.4
docker run -dit --name web -p 8080:80 -v E:/webhome/:/usr/local/apache2/htdocs/ httpd:2.4
Install "SNMP Server" on Windows 10 and Ubuntu 18.04
Sun, Nov 3, 2019
1. Windows 10 Pro Run powershell as Administrator
Add-WindowsCapability -Online -Name “SNMP.Client~~~~0.0.1.0” Get-WindowsCapability -Online -Name “SNMP*” Set Windows SNMP Trap Events
evntwin Powershell commands to monitor windows. (Use “| ConvertTo-Json”) CPU
...
➦