Author Archive

Protected: [서평]분류의 역사

There is no excerpt because this is a protected post.

Posted in Futuristic Technology | Comments Off on Protected: [서평]분류의 역사

Protected: 2.IT 마케팅

There is no excerpt because this is a protected post.

Posted in IT Marketing | Comments Off on Protected: 2.IT 마케팅

Protected: 2.자동차와 IT융합 지능형 자동차2

There is no excerpt because this is a protected post.

Posted in Futuristic Technology | Comments Off on Protected: 2.자동차와 IT융합 지능형 자동차2

Protected: 1.자동차와 IT융합 지능형 자동차1

There is no excerpt because this is a protected post.

Posted in Futuristic Technology | Comments Off on Protected: 1.자동차와 IT융합 지능형 자동차1

Protected: 1.IT산업의 마케팅 흐름

There is no excerpt because this is a protected post.

Posted in IT Marketing | Enter your password to view comments.

REGEX

. $string1 = "Hello World\n"; if ($string1 =~ m/…../) { print "$string1 has length >= 5\n"; } ( ) $string1 = "Hello World\n"; if ($string1 =~ m/(H..).(o..)/) { print "We matched ‘$1’ and ‘$2’\n"; } Output: We matched ‘Hel’ and ‘o W’; + $string1 = "Hello World\n"; if ($string1 =~ m/l+/) { print "There are one or more consecutive letter \"l\"’s in $string1\n"; } Output: There are one or more consecutive letter "l"’s in Hello World ? $string1 = "Hello World\n"; if ($string1 =~ m/H.?e/) { print "There is an ‘H’ and a ‘e’ separated by "; print "0-1 characters (Ex: He Hoe)\n"; } ? $string1 = "Hello World\n"; if […]

Posted in PHP | Comments Off on REGEX

Efficiency

어느 한 비누공장에서 포장기계의 에러로 종종 비누가 케이스에 들어가지 않아서 문제가 되었다. 관리자는 컨설팅 회사에 의뢰해서 X레이 투시기를 도입하기로 함. 컨설팅 비용 (10만달러), X레이 기계 비용 (50만달러), 유지 인건비용 (5만달러/년) 그런데 X레이 기계를 주문하고 기다리는 몇달동안 에러율이 제로가 되어서 이상하게 여긴 관리자는 원인을 파악. 공장 신입사원 한명이 빈 케이스를 골라내기 위해 집에서 선풍기를 가져와 라인에 대고 ‘가벼운 빈 케이스’를 날려버림. 선풍기 비용 (50달러)

Posted in Talk | Comments Off on Efficiency