본문 바로가기

프로그래밍

mongodb + nodejs + twitter streaming Twitter 에서 제공하는 Streaming API를 이용한실시한 트윗 저장. 일명 수집기? db는 mongodb 로 nodejs 에서 스크립트로 만든 객체 그대로 저장.생각보다 메모리 점유율도 낮고 뻗지도 않는다. nodejs는 하면 할수록 참 재미있는듯.. 더보기
spring + mongodb setup 무료 mongodb 호스팅500M free : https://mongolab.com 참조: http://www.mkyong.com/mongodb/spring-data-mongodb-hello-world-example/ http://www.springsource.org/spring-data/mongodb http://www.mongodb.org/ pom.xml org.mongodbmongo-java-driver2.11.0 org.springframework.dataspring-data-mongodb1.2.0.RELEASE SpringMongoConfig.java@Configurationpublic class SpringMongoConfig { public @BeanMongoDbFactory mongoDbF.. 더보기
Window Scheduler 출처 : http://ss64.com/nt/at.html AT.exeSchedule a command or batch file to run on a computer at a specific date and time. Additional scheduling options are available with the SCHTASKS command.Syntax Create an AT job: AT [\\computername] hh:mm [/INTERACTIVE] [ /EVERY:day(s) | /NEXT:day(s) ] "command" Delete an AT job: AT [\\computername] [ [id] [/DELETE] | /DELETE [/YES]] Key \\computername : Exec.. 더보기
Window curl library. http://curl.haxx.se/download.html 더보기
Access-Control-Allow-Origin 문제. 타 도메인 접근시 Access-Control-Allow-Origin 문제 발생.아래와 같이 필터 설정.참고 : http://raibledesigns.com/rd/entry/implementing_ajax_authentication_using_jquery public class OptionsHeadersFilter implements Filter { public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain) throws IOException, ServletException { HttpServletResponse response = (HttpServletResponse) res; response.setHeader("Acce.. 더보기
Apache Virtual Host 간략하게 정리. 할때마다 찾기 귀찮음. 1. 아파치 설정 Virtual 확장 설정 (httpd.conf에 추가해도 상관없으나, 관리를 위해)httpd.confInclude "conf/extra/httpd-vhosts.conf" 2. httpd-vhosts.confNameVirtualHost *:80 ServerAdmin taesuz@gmail.com DocumentRoot "/www/htdocs/taesuz.com" ServerName taesuz.com ServerAlias www.taesuz.com ErrorLog "logs/taesuz.com-error.log" CustomLog "logs/taesuz.com-access.log" combined #Mac에서는 별도로 설정할 필요가 없었으나, Win.. 더보기
Eclipse 에서 SVN 단축키가 안될때. 새로 새팅하면서 Eclipse 단축키가 안먹는다.설정을 해주면 가능. Window -> Customize Perspective -> Command Group Availability -> SVN 체크 -> OK 더보기
MAMP + Codeigniter + FirePHP 1. php.ini 설정. %MAMP_HOME%/bin/php/php5.3.6/conf--------------------------------- display_errors = Off -> On---------------------------------- 2. FirePHP Core Download 3. FirePHP.class.php -> firephp.php 4. copy /application/libraries 5. (OPTIONAL) autoload.php$autoload['libraries'] = array('firephp'); 6. using$this -> firephp -> log("Hello FirePHP from taesuz.com"); 더보기
JSTL Custom Function /WEB-INF/tlds/customFunction.tld JSTL 1.1 functions library JSTL XML 1.1 cfn get Day of week dayOfWeek DateUtils java.lang.Integer getDayOfWeek(java.util.Date) ${cfn:dayOfWeek(date)} DateUtils.javapublic class DateUtils {..... public static int getWeekOfYear(Date date) { Calendar cal = Calendar.getInstance(); cal.setTime(date); return cal.get(Calendar.WEEK_OF_YEAR); }....} JSP........ .......${c.. 더보기
Properties Editor Update Site : http://propedit.sourceforge.jp/eclipse/updates/ Properties 설정시 한글 꺠짐 문제 해결됨. 더보기