MySQL, SELECT AS WHERE

select등을 하면서 as로 alias를 만들어 사용한 컬럼을 조건절에서 사용할때…
MySQL에서는 이 alias를 ” 로 묶어줘야 정상 동작;;;

select character_name as name, level as lv from characters where lv >= 10; <- 정상 동작하지 않음
select character_name as name, level as lv from characters where ‘lv’ >= 10; <- OK

 

Daum Big Data – lesson for big data

Lessons for Big Data

  • 기술 내재화가 중요 (No Vendors!)
    – 개발자들이 직접 Hadoop을 활용할 수 있는 환경 필요

    – 오픈소스의적극활용및개발잉여력제공

  • 데이터 분석 및 처리의 역할 파괴 (No Data Scientist!)

    – 개발자들이 직접 실시간 분석을 위한 Hive 활용
    – 문서,이미지등다양한형태의데이터처리를위한토대마련

  • Small Data를 활용 강화 (No Big Mistakes!)

    – Small Data라도 실시간으로 저렴하게 데이터를 처리하고, – 처리된 데이터를 더 빠르고 쉽게 분석하도록 하여,
    – 이를 비즈니스 의사결정에 바로 이용하는 것
    – 이것이 바로 BigData 기술을 바른 활용임!

MySQL, User Variable & connection string

http://vanilla47.com/MySQL%20Docs/connectors-en.html-chapter/connector-net.html#connector-net-programming-connecting-connection-string

 

요는 SQL Query에서 user variables을 써야 되는데,

@이게 파라미터 인식자로도 동작을 하기 때문에,

connection string에서

AllowUserVariables=true

을 해줘야 됨… ㅠㅜ

 

http://www.dreamincode.net/forums/topic/199334-using-mysqlhelper/

cocos2d project ARC enabling

create cocos2d iOS project

remove cocos2d libs group – only remove reference

add ‘target’ to project :: cocoa touch static library

building setting :: search user path : yes, user header search paths : ./**

select other target of the project :: select ‘build phase – link binary with libraries’
add(+) cocos2d static library

add cocos2d lib files into lib directory

edit->Refactor->Object-c to ARC
select user project(not cocos2d library)

c#, http POST

http://www.hanselman.com/blog/HTTPPOSTsAndHTTPGETsWithWebClientAndCAndFakingAPostBack.aspx

 

or…

You could take a look at the WebClient class. It allows you to post data to an arbitrary url:

using (var client = new WebClient()) { var dataToPost = Encoding.Default.GetBytes("param1=value1&param2=value2"); var result = client.UploadData("http://example.com", "POST", dataToPost); // do something with the result }

Will generate the following request:

POST / HTTP/1.1 Host: example.com Content-Length: 27 Expect: 100-continue Connection: Keep-Alive param1=value1&param2=value2