Friday.pe.kr

October 11, 2012

구글 핵커스페어 Hackfair 개최 11월 17~18일

Filed under: Uncategorized — Ku @ 3:23 pm

Google HackFair

구글 해커페어가 열린다고 합니다. 구글의 기술을 이용하여 새로운 창의적인 작품을 만드는 일인데요, 11월 17~18일 개최되고, 혹시 참여하시려면 10월 15일까지 작품을 제출하면 된다고 하네요. 작품선정되어 참여하게 되면, 넥서스 7과 같은 선물이 있다고 하니 놀랍습니다.

아래 링크 참조
http://googledevkr.blogspot.kr/2012/08/google-hackfair.html
또는 http://goo.gl/8qMki

구글의 기술이라는 것이, 구글의 서비스를 프로그래머 차원에서 이용할 수 있도록 api 지원하고 있습니다. 그러니까, 구글 맵이나, 캘린더, 등등을 개발자가 만드는 자기 프로그램에 이용할 수 있다는 것이죠.

덧붙이자면,

해커페어라 옮겼지만, Hackfair를 핵페어라고 부르기는 좀 이상합니다. 구글 개발자 블로그에서 밝힌 것과 같이, Make Faire에서 아이디어를 얻었다고 하지만, 사실 메이크 페어는 만드는 것 좋아하는 사람들이 개최하는 전시회 인데, 장터라는 느낌을 주는 페어 faire(끝에 e가 붙습니다.)가 사실 프랑스 말로 make란 의미랍니다.

그냥 해커스페어해도 해커가 만드는 것이니 틀리지 않을 텐데 국내 해커의 단의 의미상 핵페어라 변경한 듯 합니다. 고심이 있었겠지요.

암튼, 시간나면 구글 해커스페어(저는 이렇게 부릅니다. ^^)에 들러 보고 싶은데, 실력만 있다면 참여해서 선물을 받고 싶네요. 단순히 선물 땜에.. ㅜㅜ

March 18, 2009

브라비아 어플리캐스트 BRAVIA 사용자 정의 프로그램

Filed under: Uncategorized — Ku @ 8:52 am

브라비아 어플리캐스트 BRAVIA 사용자 정의 프로그램

브라비아 TV에서 AppliCast를 사용자가 작성할 수 있다고 한다. 아직 일본어판 밖에 나오지 않았지만, 내용은 간단해 보인다. 아래 내용은 자동 번역한 것. 대부분의 xml은 데이타 정보만 넣어주고, 간단한 png 그림과, 그리고 아래의 자바스크립트. 원래 내용은 첨부 파일을 참조하기 바란다. 소니 사이트의 예제 어플리캐스트

노마르 -> 노말, 아쿠티브 -> 액티브 : 무슨 암호인가 했네요. -.-;

폴더?카스?, ? 사? 는 무슨 뜻인지 아직 모르겠습니다.

var modeNode = getNode ( ‘mode’);
var funcNode = getNode ( ‘func’);

// 시작할 때입니다
function onLoad () (
setStr (funcNode, ‘onLoad ()가 호출되었습니다’);
setStr (modeNode, ‘현재 정상 모-드입니다’);
)

// 폴더/카스 모-드 변경 때입니다
function onFocus () (
setStr (funcNode, ‘onFocus ()가 호출되었습니다’);
setStr (modeNode, ‘현재 폴더/카스 모-드입니다’);
)

// 폴더/카스 모-드에서 정상 모-드에 전환시 부릅니다
function onUnfocus () (
setStr (funcNode, ‘onUnfocus ()가 호출되었습니다’);
setStr (modeNode, ‘현재 정상 모-드입니다’);
)

// Active 모-드 변경 때입니다
function onActivate () (
setStr (funcNode, ‘onActivate ()가 호출되었습니다’);
setStr (modeNode, ‘현재 액티브 모-드입니다’);
loadImage (getNode ( ‘active-bg’), ‘img/active-bg.png’);
)

// 정상 버튼을 누를 때 부릅니다 (폴더/카스 / Active 모-드)
function onUpKey () (
setStr (funcNode, ‘onUpKey ()가 호출되었습니다’);
)

// 아래 버튼을 누를 때 부릅니다 (폴더/카스 / Active 모-드)
function onDownKey () (
setStr (funcNode, ‘onDownKey ()가 호출되었습니다’);
)

// 오른쪽 버튼을 누를 때 부릅니다 (폴더/카스 / Active 모-드)
function onRightKey () (
setStr (funcNode, ‘onRightKey ()가 호출되었습니다’);
)

// 왼쪽 버튼을 누를 때 부릅니다 (폴더/카스 / Active 모-드)
function onLeftKey () (
setStr (funcNode, ‘onLeftKey ()가 호출되었습니다’);
)

// 확인 버튼을 누를 때 부릅니다 (활성 모-드)
// type : 0 pressed 1 released
function onConfirmKey (type) (
setStr (funcNode, ‘onConfirmKey (’+ type + ‘)을 요청했습니다’);
)

//? 사? 누를 때 부릅니다 (활성 모-드)
function onBlueKey () (
setStr (funcNode, ‘onBlueKey ()가 호출되었습니다’);
)

// 빨강 버튼을 누를 때 부릅니다 (활성 모-드)
function onRedKey () (
setStr (funcNode, ‘onRedKey ()가 호출되었습니다’);
)

//? 사? 누를 때 부릅니다 (활성 모-드)
function onGreenKey () (
setStr (funcNode, ‘onGreenKey ()가 호출되었습니다’);
)

//? 사? 누를 때 부릅니다 (활성 모-드)
function onYellowKey () (
setStr (funcNode, ‘onYellowKey ()가 호출되었습니다’);
)

February 24, 2009

batch cmd of changing share folder with same share name

Filed under: computer — Ku @ 8:56 pm

@echo off
net share OPEN /delete
date < nul > do.bat
echo . >> do.bat
echo mkdir OPEN_%%2 > current.bat
echo cd OPEN_%%2 >> current.bat
echo set cwd=%%cd%% >> current.bat
echo cd .. >> current.bat
echo net share OPEN=%%cwd%% >> current.bat
echo cacls %%cwd%% /g everyone:F  >> current.bat
call do.bat
del do.bat
del current.bat

One limitation is the batch is daily base. In fact I want to use it any time when I wish to empty share folder to others. But ‘time’ has a non file name compatible character, i.e. colon(:). However it’s useful for daily usage.

In this batch file, useful 1 trick and 2 tips are. (1) to get date string to variable, (2) net command, and (3) acl command. Always ‘net’ command is not sufficient for sharing folder. The ‘cacls’ command will fill this deficiency.

Below is Korean version. For English XP user,  Korean “current” is replaced.

-=-=-=-

누구나 내 폴더에 자료를 넣을 수 있도록, 쓰기 가능한 공유 폴더를 만들어 놓는다. 어느 경우 공유된 폴더의 내용을 옮겨야 하는 경우가 생긴다. 다른 사람에게 공유 되지 말아야 할 내용이나, 누군가 잘못 지우지 말아야 할 파일이 공유 폴더에 있을 때이다. 이럴때, 배치파일 클릭으로 새로운 공유 폴더를 생성한다.  물론 공유명은 변경되지 않는다. 쉽게 다시 정리하면, 이 배치 파일이 하는 일은, (1) 기존 공유 폴더의 공유를 해제한다. (아래 예에서는 “OPEN”이라는 공유명) (2) 새로운 폴더를 만든다. (날짜가 폴더 이름에 들어간다.) (3) 새로 만든 폴더를 기존 공유 이름으로 공유 설정한다. (읽고 쓰기 가능)

배치파일 내용은 아래와 같다.

@echo off
net share OPEN /delete
date < nul > do.bat
echo . >> do.bat
echo mkdir OPEN_%%2 > 현재.bat
echo cd OPEN_%%2 >> 현재.bat
echo set cwd=%%cd%% >> 현재.bat
echo cd .. >> 현재.bat
echo net share OPEN=%%cwd%% >> 현재.bat
echo cacls %%cwd%% /g everyone:F  >> 현재.bat
call do.bat
del do.bat
del 현재.bat

자부하건데 약간의 고수의 배치파일 기술이 들어있다고나 할까.. -.-;  공유명은 OPEN이다. 실제 폴더의 이름은 OPEN_2009-02-24 처럼 날짜가 포함된 폴더이다. 공유명을 바꾸려면 OPEN을 변경하면 되고 (두군데, net share OPEN …의 OPEN), 폴더 이름을 바꾸려면, OPEN_ 으로 나온 부분 (다섯째, 여섯째 줄)을 변경해 주면 된다.  그래도 날짜는 포함해야 한다. 

단점, 하루에 한번밖에 사용하지 못한다. 새로운 이름을 오늘 날짜로 밖에 설정할 수 없으니까. 날짜와 시간을 같이 나오게 하려 했는데, 시간에 콜론(’:')이 들어 있어서 폴더 이름으로 작성할 수가 없었다. 시작에 넣어두면, 매일 새로운 공유 폴더를 자동으로 생성할 수도 있다. 물론 보는 쪽에서는 동일한 공유 폴더명이지만…

사용법은 자료를 넣고 받는 폴더를 만들고, 그안에 배치 파일을 넣어 놓고, 클릭해서 실행한다. 그럼 폴더가 생성되고, 그 폴더가 공유 될 것이다. 폴더가 가득차거나 하면(공유 폴더에 너무 파일이 많아지면), 배치 파일을 다시 한번 클릭해 준다. 이전 폴더는 공유가 해제되고, 새로운 폴더로 동일한 공유명으로 폴더 공유가 시작된다.

누군가에게 유용할까? 음…

[출처] 공유 폴더 매일 바꾸기 자동 배치 파일|작성자 snowhare

 

 

June 2, 2008

disguised google adsense email… (phishing!!)

Filed under: Uncategorized — Ku @ 11:44 am

I recently receive the email from adsensor as like below…

================8<—————–
Dear Google AdWords customer!

In order to confirm your contact details, please click the link below:

Google AdWords Form

This should take you directly to the Google AdWords Form.

Thank you for choosing AdWords. We look forward to providing you with the most effective advertising available.

Sincerely,

The Google AdWords Team

————————

0×92990531, 0×94, 0×34490774, 0×87955923, 0×61, 0×2721, 0×76680795, 0×069, 0×668 define VI0 59X 0×75723883 77748588281962556302805303416 LT6D: 0×5221 0×503, 0×405, 0×7171, 0×11359635, 0×681, 0×097, 0×9, 0×46407496, 0×8732, 0×9, 0×97, 0×54477947 end: 0×88881376, 0×1365, 0×99, 0×2, 0×4, 0×41 0×9, 0×645, 0×24, 0×30, 0×11506952, 0×162 source: 0×45, 0×98, 0×0404 DF4U: 0×86, 0×17092009, 0×589, 0×33602071, 0×08541441, 0×79267241, 0×4545, 0×69, 0×5, 0×1768, 0×55, 0×45, 0×65, 0×0606

engine: 0×5703, 0×982, 0×71, 0×2819, 0×3, 0×8280 INCJ: 0×46781602, 0×12, 0×0, 0×2158, 0×51342551, 0×4501, 0×512, 0×43, 0×19584531, 0×0 MBD: 0×35, 0×7473, 0×0918, 0×36, 0×2 V5ZX, 1282, CLA hex: 0×0451, 0×56, 0×07006208, 0×6698, 0×0065, 0×25056016, 0×79000927, 0×882, 0×7040, 0×1438, 0×1 526464393 cvs: 0×0, 0×639, 0×22, 0×2, 0×95073433 hex close SVC: 0×416, 0×4000, 0×6495, 0×3, 0×2094, 0×6435, 0×37754537, 0×24, 0×03, 0×1839, 0×3, 0×55 0×05, 0×345, 0×52107265, 0×81719119, 0×4567, 0×5, 0×07374628, 0×6432, 0×702, 0×96, 0×82, 0×14, 0×254, 0×3820, 0×9 source: 0×12976535, 0×5, 0×0, 0×58, 0×83920064, 0×0413, 0×7, 0×6, 0×630, 0×29, 0×8345, 0×71, 0×33779581

start: 0×069, 0×185, 0×73 0×1, 0×6, 0×55, 0×398, 0×02376936, 0×8119, 0×27, 0×590 0×109, 0×37481452 create: 0×254, 0×9, 0×8169, 0×9, 0×7384, 0×79, 0×7, 0×6 38S H8T cvs W8AY start rcs LK2 rev 6EK: 0×6, 0×684, 0×09, 0×64, 0×6627, 0×741, 0×742, 0×223, 0×79, 0×9, 0×486, 0×534, 0×87789736 0×64869860, 0×9559, 0×3, 0×17, 0×1288, 0×55, 0×50340782, 0×857, 0×53, 0×80444776, 0×87, 0×89, 0×559 0×05, 0×377, 0×80084597 update serv 4FY 61X hex include. 0×131, 0×68, 0×1, 0×1661, 0×64, 0×58453071, 0×8097, 0×3518, 0×320, 0×8, 0×22152575, 0×47 46254603233318241323

7308412707898256883234530570×655, 0×7679, 0×0789, 0×85628134, 0×4874, 0×13, 0×462, 0×3, 0×3, 0×244, 0×8138, 0×8833, 0×8493 0×3, 0×868, 0×5616, 0×2, 0×6059, 0×89, 0×2, 0×898, 0×5145, 0×48631306 96OX: 0×3, 0×85814405, 0×88068981

============8<————-

In fact, the mail’s link is lead to some fault site. (I’m not been there.)

http!!!://www.google.com.ziake4.me.uk/accounts/VE/?service=adwords&c=274601543902968015540212332539532178117082674376771557&id=2580209249
(don’t click)

and the grey letters are not seen in the email because the color is white.

I’m not sure what the code and links do, but it’s sure its not from google.

some reference link… about such mail.

http://http://activerain.com/blogsview/438259/New-Email-Scam-Google

http://translate.google.com/translate?sourceid=navclient&hl=en&u=http%3a%2f%2fwww.google.co.kr%2furl%3fq%3dhttp%3a%2f%2fwww.funkblogjob.com.ar%2finternet%2fgoogle-adwords-falso%2f%26sa%3dX%26oi%3dblog_result%26resnum%3d51%26ct%3dresult%26usg%3dAFQjCNH9NkP7AW7lLZGJwpjmb_RD3AhDww
(espanol page translated to english)
original : http://activerain.com/blogsview/438259/New-Email-Scam-Google

much explanation in below.. 

http://www.ophircohen.com/2008/05/10/google-adwords-phishing-email/

May 17, 2008

East Sea

Filed under: Uncategorized — Ku @ 9:16 pm

Who insisting ’sea of japan’, are ignorant about history, and just grabbers.

The name of ‘north sea’ comes from the continental based concept, just like east sea.

The japanese favorite their nation’s name ‘Nippon’ means ‘the root of sun’. (Ni : sun, pon : root)

The sun’s root is where over the east sea.

If they insist to call the sea by their name,

they should toss away their favorite nation’s name ‘Nippon’,

and call themselves just by ‘japs’.

May 6, 2008

Filed under: Uncategorized — Ku @ 1:08 pm

http://googlekoreablog.blogspot.com/2008/05/2008-5-2.html

만우절도 아니고, … 한국식 구글 뉴스 웃긴다.

귤이 회수를 넘으면 탱자가 된다는 말이 있다. 실제로 그러진 않겠지만, 환경이 영향을 준다는 이야기라 생각한다.

구글의 신규 서비스는 사실 개발이 되어 발표되어도 적극적인 홍보를 하지 않아서 잘 모른다. 내가 보기에 구글은 조금씩 사용자를 늘려가는 전략을 사용한다. 대부분의 서비스는 ‘베타’서비스 부터 공개한다.

사실 구글 뉴스는 아직까지 베타였는데, 갑자기 “한국인의 입맛에 맞지 않는다”고 구글 뉴스 양식을 바꿔 버렸다!!! 아마 구글 코리아 해당 담당자가 그게 마음에 들지 않았나보다. 너무 어이 없는 일이어서 구글에 연락할 주소를 찾아봤어도 뭐, 딱히 하소연할 주소도 없다는 것을 알게 되었다. 말이 옆으로 샌다. 암튼 구글 공식 블로그에도 트랙백을 달 수 없는 것 같다. (블로그 트랙백은 거의 쓰지 않는 블로거… -.-;)

암튼, 외국 서비스도 한국에 들어오면 원칙없이 멋대로 변경해도 되는지… 정말 한심스러운 일이다.

두서없는 글이어서 설명…

구글뉴스는 섹션(사회면, 정치면.. )이라는 단위로 보여지는데, 그 섹션은 두 컬럼 중 한 컬럼을 사용해서 보여진다. 그리고 섹션당 보여지는 뉴스 갯수를 선택할 수 있다. 어느날 아침 (5월 2일) 한컬럼 씩만 차지했던 섹션을 두컬럼으로 확대했다. 글꼴도 가독성을 높인다며 썰렁하게 해 놓고. (그런 것이 문제가 되는 것은 아니다. ) 하지만, 보통 구글은, 새 기능은 이런 것인데, 새로운 뉴스페이지에서 사용하라, 이렇게 서비스가 시작되었다. 바로 기존의 서비스를 바꾸어 버리는 것이 아니고, 물론, 이런 문제는 한국에서만 일어나는 일이다. 다른나라 뉴스는 변경되지 않았다.

왜 한국에서만 이런 생각없는 일이 일어나는가? 쩝…

원래 이런 식…

기존뉴스구성

갑자기 변경한 한국식… 그리고 설정해 놓은 뉴스 갯수도 바꾸어 버렸다.

새로운 한국식 뉴스

어떻게 원래대로 서비스를 돌려 놓을 수 있을지 알 수도 없다. 이명박식인 것 같다. -.-;

April 10, 2008

google analytics - site visitor count

Filed under: Uncategorized — Ku @ 12:09 am

Google Analytics is the service which provides information about site vistors(from where, which page viewed). In fact, google uses this tool for their adsensor. Website owner can set up this service freely as far as not so much page view.

I’ve setup this service for my site friday.pe.kr. There are at least 5 persons who visit my site from overseas. Not many people, but it’s great for me. Are there the VISITORS of my site from oversea!!! ^^;

google analytics www.google.com/analytics/

I know there are other services, but google is at hand.

March 27, 2008

wordpress preinstalled blogroll

Filed under: Uncategorized — Ku @ 3:03 pm

However, I’m deleting them.

March 6, 2008

You Are Chosen As a Leader For the Mission of God.

Filed under: Uncategorized — Ku @ 8:04 am

This is newly received spam mail. 

 =====

You Are Chosen As a Leader For the Mission of God.

I am Kate Solomon now undergoing medical treatment for cancer. I am
married to Dr. Peter Solomon who worked with South Africa embassy in
Malaysia for nine years before he died in the year 2006.

Before my Husband died, we both make a deposite of a total sum $7.6M in a
Finance Company in Europe. Recently, my Doctor told me that I few month to
live due to cancer problem. Having known my condition I have decided to
donate this fund to a honest Person.

My Attorney will issue you a Letter of Authority from Court naming you the
original Beneficiary of these funds. Please assure me that you will act
accordingly as I stated herein. Hoping to hear from you. Please send all
reply to my email below.

In His Arms.
Mrs. Kate Solomon.

January 18, 2008

HUMOR is…

Filed under: a word — Ku @ 9:47 am

HUMOR

A sense of humor
is part of the art of leadership,
of getting along with people,
of getting things done.
     - Dwight D. Eisenhower

Next Page »

Powered by WordPress