(ํ๋ธ๋ฃจ๊ฐ ์ค์น๋์ด ์์ง ์๋ค๋ฉด https://brew.sh/index_ko.html ์ฐธ๊ณ )
brew update
brew install opencv
user www-data; | |
worker_processes 4; | |
error_log /var/log/nginx/error.log; | |
pid /var/run/nginx.pid; | |
events { | |
worker_connections 1024; | |
} |
#!/usr/bin/env python | |
import yaml | |
import subprocess | |
from os import path, system | |
## | |
# Settings |
(ํ๋ธ๋ฃจ๊ฐ ์ค์น๋์ด ์์ง ์๋ค๋ฉด https://brew.sh/index_ko.html ์ฐธ๊ณ )
brew update
brew install opencv
When hosting our web applications, we often have one public IP
address (i.e., an IP address visible to the outside world)
using which we want to host multiple web apps. For example, one
may wants to host three different web apps respectively for
example1.com
, example2.com
, and example1.com/images
on
the same machine using a single IP address.
How can we do that? Well, the good news is Internet browsers
1234567890
1234567890
aaaabbccdd
Xcode 8์์ ํ๋ก์ ํธ๋ฅผ ๋น๋ ํ ๋ /usr/bin/codesign failed with exit code 1
์ค๋ฅ๊ฐ ๋๋ฉฐ, resource fork finder information or similar detritus not allowed ์ ๊ฐ์ ๋ฉ์์ง๊ฐ ๋จ๋ฉฐ ๋น๋๊ฐ ์ ์์ ์ผ๋ก ๋์ง ์๋๋ค.
๊ทธ๋ฆผ ํ์ผ๋ค์ด ๊ฐ์ง๊ณ ์๋ ์์ฑ์ ๊ฐ๋ฐ์ ๋ฐ ๊ธฐํ ์์ฑ์์ ๊ฐ์ธ์ ๋ณด๊ฐ ํฌํจ๋์ด ์์ด์ ๋น๋๊ฐ ์ ์์ ์ผ๋ก ๋์ง ์๋๋ค.
CREATE TABLE IF NOT EXISTS `country` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`iso` char(2) NOT NULL, | |
`name` varchar(80) NOT NULL, | |
`nicename` varchar(80) NOT NULL, | |
`iso3` char(3) DEFAULT NULL, | |
`numcode` smallint(6) DEFAULT NULL, | |
`phonecode` int(5) NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=MyISAM DEFAULT CHARSET=latin1; |