Skip to content

Instantly share code, notes, and snippets.

@luckypapa
luckypapa / int_identical_index.c
Last active August 29, 2015 14:20
codercareer : No. 57 - Integer Identical to Index
// http://codercareer.blogspot.kr/2014/10/no-57-integer-identical-to-index.html
#include <stdio.h>
#include <stdbool.h>
// array has been already sorted.
// So we can use binary search to reduece timecost
int getValueSameWithIndex(int * array, int length) {
if (array == NULL || length == 0)
return -1;

OSX gstreamer개발자를 위한 homebrew 활용 팁

이 페이지를 읽는 개발자는 homebrew를 알고 있다고 가정한다. 최신 gstreamer git master를 homebrew로 빌드하는 방법과 로컬 git을 사용하여 빌드하는 방법을 공유하고자 한다.

git master 빌드하기

$ brew install --HEAD gstreamer

homebrew에서 --HEAD 옵션으로 git master로 패키지를 설치할 수 있는 기능을 제공한다. 물론 해당 패키지의 recipe가 git으로 빌드할 수 있도록 head 항목이 recipe에 기술되어 있는 경우에 가능하다. (gstreamer 관련 패키지는 모두 등록되어 있다)