Project -> Target setting -> Build Phases -> Link Binary with Libraries
Just another WordPress site
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
Lessons for Big Data
– 오픈소스의적극활용및개발잉여력제공
– 개발자들이 직접 실시간 분석을 위한 Hive 활용
– 문서,이미지등다양한형태의데이터처리를위한토대마련
– Small Data라도 실시간으로 저렴하게 데이터를 처리하고, – 처리된 데이터를 더 빠르고 쉽게 분석하도록 하여,
– 이를 비즈니스 의사결정에 바로 이용하는 것
– 이것이 바로 BigData 기술을 바른 활용임!
짜잔~ Start-up 라이센스의 등장?
9인까지 1년 무료로 사용 가능(제약 사항 있음), 계약 만료 3개월 전에 연장 신청해야 됨…
http://hansoft.se/download/Start-up-Licence.html
http://stackoverflow.com/questions/7097413/a-sql-query-to-select-until-sumusers-count-reaches-1000
요는 SQL Query에서 user variables을 써야 되는데,
@이게 파라미터 인식자로도 동작을 하기 때문에,
connection string에서
AllowUserVariables=true
을 해줘야 됨… ㅠㅜ
http://www.dreamincode.net/forums/topic/199334-using-mysqlhelper/
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)
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¶m2=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¶m2=value2