반응형

2012/02 5

doctype and margin

아무 생각없이 아래와 같은 CSS를 줬는데 동작하지 않아 대략 난감. body { width: 480px; text-align: center; margin-left: 0; margin-top: 0; } 한참을 헤매다 보니, HTML5로 동작하도록 태그를 준 경우와 안 준 경우에서 차이가 발생했다. 찾아보니 아래와 같은 글을 발견 http://www.webmasterworld.com/html/3533864.htm 자세한 이유는 더 분석해 봐야 할 것 같다. 일단 이유도 모르고 아래를 추가하니, 문제가 없어졌다. h1, p { margin: 0px; }

html에서 html tag를 쓸 수 있는가? (I don't like &lt;foo&gt; in <pre>.

웹으로 간단한 프레젠테이션을 만들려고 했더니, html 태그를 쓰는게 무척 귀찮다는 걸 깨달았다. 물론 괜찮은 자바스크립트 유틸리티들이 있으면 쉽게 할 수 있겠지만, 원하는건 메모장 펴놓고 직접 고치는 거였는데... xmp라는 태그가 있었으나, 해당 태그는 표준에서 제외되었다는 사실을 알았다. https://www.w3.org/Bugs/Public/show_bug.cgi?id=12235 ... 와 같은 방법으로 지원하면 안되는건가? :(

resume in github

참고 : http://bunhere.tistory.com/324 github에 resume repo를 만들어보기로 마음먹었다. 일단 resume repo를 생성하여 index.html을 넣었다. 물론 master branch에 넣은 파일은 아무런 의미가 없다. 1) master branch 설정하기. # mkdir resume # cd resume/ # git init Initialized empty Git repository in /workspace/github/resume/.git/ # touch index.html # git add index.html # git commit -m "Add index.html in master branch" [master (root-commit) 481a88e] Ad..

Open Source/git 2012.02.15

앱에서 안드로이드 마켓/티스토어 연결하는 법.

1) 안드로이드 마켓 방식. Intent intent = new Intent(Intent.ACTION_VIEW); intent.addCategory(Intent.CATEGORY_DEFAULT); intent.setData(Uri.parse("market://details?id={패키지}")); startActivity(intent; 2) 티스토어 방식 String tstorePID = "0000029083"; Intent intent = new Intent(); intent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP); intent.setClassName("com.skt.skaf.A000Z00040", "com.skt.skaf.A000Z00040.A000Z00040"); i..

반응형