DIGITory/Ubuntu2014. 4. 23. 14:21

우분투에서 egg 형식의 압축파일을 풀 때 사용 가능. x86, x64 다 된다고 함.

unark.tgz

출처 : 

ARK 라이브러리를 이용한 EGG 파일 압축해제

http://www.indidev.net/forum/viewtopic.php?f=3&t=73

Posted by Joe.C
DIGITory/Android2014. 4. 16. 13:56

* Android(Nexus) 에서 Chrome Remote Inspector 사용하기


https://developers.google.com/chrome-developer-tools/docs/remote-debugging#remote-debugging-overview


1. ADB 연결 가능한 환경을 만든다.

- USB debugging 활성화 등등....

2. Target Device 와 USB로 연결한 상태에서 PC의 chrome browser 실행

3. about:inspect 로 진입

- "chrome://inspect/#devices" 뭐 이런 페이지로 리다이렉션 될거임.

4. 'Discover USB devices'에 체크하고 나면... 아래 연결된 devices 목록에 연결된 기기가 뜸.

5. Target Device 에 뜬 허가 팝업에서 Yes 선택

6. 이 상태에서 Target Device의 크롬을 실행하면 PC Chrome 화면에 Target Device의 tab 상황이 보임

7. Inspect!!!

Posted by Joe.C
DIGITory/Ubuntu2014. 4. 8. 10:53


"http://www.webupd8.org/2013/06/better-font-rendering-in-linux-with.html?m=1"

폰트들을 보기 편하게 살짝 변경해 주는 기능.

sudo add-apt-repository ppa:no1wantdthisname/ppa

sudo apt-get update

sudo apt-get upgrade

sudo apt-get install fontconfig-infinality


직접 받아서 빌드하여 설치하는 방법은 요기에....

"http://forums.debian.net/viewtopic.php?f=16&t=88545"

1. Clone the git repo


git clone https://github.com/chenxiaolong/Debian-Packages.git

cd Debian-Packages/


2. Install the build dependencies. Run the following

command and install the packages it lists using apt-get/synaptic/etc.


cd freetype-infinality/

dpkg-checkbuilddeps

cd ../fontconfig-infinality/

dpkg-checkbuilddeps


3. Build the packages:


cd ../freetype-infinality/

./build.sh

cd ../fontconfig-infinality/

./build.sh


4. Install the deb files:


cd ..

sudo dpkg -i freetype-infinality/*.deb fontconfig-infinality/*.deb


You'll need to reboot after installing the deb files. Enjoy the better

looking fonts!

Posted by Joe.C