Tag: software
-
Topic Sensitive Pagerank
Topic sensitive pagerank is a way of getting pageranks per topic instead of using just one pagerank for all pages. In the book Mining of Massive Datasets, biased random walk algorithm is introduced. In the algorithm, we let the random surfer jumps to the page with the specific topic when it wants to teleport. That…
-
전통적인 process viewer top 의 대체품 htop
요즘 늘어난 cpu 코어를 충분히 활용해보고자 멀티 프로세스, 멀티 쓰레드로 애플리케이션을 종종 돌리고 있습니다. 그런데 top 은 이럴때 시스템 전반의 상황을 쉽게 보기가 어렵더군요. 그래서 찾아보니 htop이란게 있네요. http://htop.sourceforge.net/에서 더 많은 스크린샷을 볼 수 있고, OSX라면 macports로 설치가능합니다. 안해봤지만 리눅스에서도 yum이나 apt-get으로도 쉽게 설치가능할 것입니다. 장점은 기본 동작이 코어별로 cpu load를 보여주는 것이고, top보다는 기본으로…
-
My .tmux.conf
어쩌다보니 screen대신 이걸 쓰게 되었네요.
-
Fork Join Framework in Java7
Java7 introduced interesting framework called fork join. It’s a mapreduce like lightweight parallel programming library. The basic idea is to split the work into multiple small parts. Process them, and merge the results into final return value. I’ve written a sample code that computes sum of integers in ArrayList: Fork-Join framework is interesting in some…
-
Scrypt – follow up on moderan password hashing algorithm
This is the follow up on the previous article: modern password hashing. In case you didn’t read it, bcrypt is slow hashing algorithm which is not vulnerable to rainbow table as it has built-in salt. Also, as it can be slowed down as much as you want, it can’t be broken even if computers get…
-
Introduction to Information Retrieval 무료 ebook
http://nlp.stanford.edu/IR-book/ 정말 좋은 무료 ir book. 예를들어 ‘stopword는 색인안할것이다’같은 저의 오해를 깔끔히 깨주었습니다.
-
SWIRL 2012 – Future of IR
http://www.cs.rmit.edu.au/swirl12/discussion.php IR 관련 방향을 제시하는 중요논문들을 모아놓은 페이지입니다. 참가자들에게 숙제로 3개씩 추천을 받았나보네요. 다른데 볼거없이 이것만 읽어봐도 좋을듯.
-
Online regular expression testing
http://regexpal.com/ Nice online tool for testing regexp. Still, I wish it had the ability to print captured groups.
-
RoR zeroday
https://gist.github.com/1978249 Github를 덮친 ror zeroday attack입니다.RoR쓰시면 체크해보셔야 할듯.
-
NoSQL Data Modeling
http://highlyscalable.wordpress.com/2012/03/01/nosql-data-modeling-techniques/ Nosql 데이터 모델링 기법들. 같은 사이트에 mapreduce패턴정리도 올려져 있습니다. 이런쪽 기술 정리하는데 타고나신듯.