분류 전체보기 688

문맥 자유 문법(context free grammer)

문맥자유문법..읽다가 뭔지 몰라서 wiki에서 검색해보니 뭔 소린지... 뭔 서로소??수학공부좀 열심히 해둘걸~... ㅠㅠ찾다보니 알기 쉽게 설명해둔 위대한 글을 찾음.. ㅋㅋ 문맥 자유 문법(context free grammer) 문법이라고 하면 Context-Free Grammar(문맥으로부터 자유로운 문법)을 말한다. 즉, 의미를 따지지 않고 형태만 보고 문법을 논한다는 말이다. 즉, 단어의 형태와 배치만 보면 문법해석이 가능한 그런 문법을 말한다. 아마도 그런 뜻일 것이다. 같은 표현을 보고 상황에 따라 의미 해석을 다르게 한다면 컴퓨터 언어로는 부적격이다. 좀 더 정확하게 표현하면 괄호 치기 문법이라고 해야 할 것이다. 왜냐하면 수식을 풀이하는 것에 적합하기 때문이다. 이 문법을 표현하는 방법이..

study 2013.01.07

Visual Studio color schemes

Visual Studio color schemes 설명은 네이버 검색 고고http://search.naver.com/search.naver?sm=tab_hty.top&where=nexearch&ie=utf8&query=Visual+Studio+color+schemes&x=0&y=0 사이트 링크 고고http://studiostyl.es/ 꼭 설치하자 1등은 테마?는 (color scheme) Son of Obsidian Fixed C# code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28#region Studio Style class Program : IThemeable { static int _I = 1; deleg..

study 2012.11.21

TLD, be prepended to ...

다음과 같은 예문이 있다..사실 예문은 아니고 autocompleted.h 헤더.. User's desired TLD, if one is not already present in the text to autocomplete.When this is non-empty, it also implies that "www." should be prepended to the domain where possible.This should not have a leading '.' (use "com" instead of ".com"). const string16& desired_tld() const { return desired_tld_; } TLD가 뭔지 한참 해멨다 ㅠㅠ TLD [약어] (top-level domain...

study 2012.08.18

자바스크립트 새로고침 종류

아 내가 자바스크립트를 하고 있다니....... ㅠ location.reload() // 현재 페이지 새로고침top.document.(프레임이름).location.reload(); // 프레임 새로고침top.document.location.reload(); // 프레임 전체 새로고침opener.location.reload(); // 부모창 새로고침setTimeout("history.go(0);", 10); // 자동 새로고침 [출처] 자바스크립트 새로고침 종류|작성자 우정현 http://blog.naver.com/wjh13579/80155561216

study 2012.08.17