http://www.serverframework.com/asynchronousevents/2011/10/windows-8-registered-io-networking-extensions.html
Category: Dev
Xcode Library Link setting
Xcode Project Build Dependency
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 기술을 바른 활용임!
HanSoft의 라이센스가 다양해졌구나…
짜잔~ Start-up 라이센스의 등장?
9인까지 1년 무료로 사용 가능(제약 사항 있음), 계약 만료 3개월 전에 연장 신청해야 됨…
http://hansoft.se/download/Start-up-Licence.html
MySQL + Twitter
MySql, multi row에서 주어진 개수만큼의 row를 가져오기
http://stackoverflow.com/questions/7097413/a-sql-query-to-select-until-sumusers-count-reaches-1000
MySQL, User Variable & 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)

