javascript의 object literal

literal이란 사람이 이해할 수 있는 문자 또는 약속된 기호를 사용하여 값을 생성하는 표기법이다. {}로 0개 이상의 property를 선어하면 변수 할당 시점에 객체리터럴을 해석해 객체를 할당한다. 객체 리터럴은 expression이므로 <;>가 필요하다. block과는 다르다. var person = { name: 'LEE', age: 20 } <name: ‘LEE’>, <age: 20>를 프로퍼티라 부른다. name은 property의 키, ‘LEE’는 프로퍼티의 값이다. Property key에 문자열이나 심벌이외의 값 => 문자열로 변환 Access dot notation bracket notation 키가 숫자로 이루어진 문자열의 경우 따옴표를 생략해도 암시적으로 변환된다....

November 10, 2022 · 전파고양이

연구 체계 및 방법론

zettelkasten 개념적인 내용들만 기록한다. 프로젝트성이나 아직까지 개념화되지 않는 내용들은 project에 작성하고 주기적으로 옮겨준다. note taking process <2021-07-30 Fri>챕터를 읽고 이해한 내용을 손으로 우선 써본다. 떠오르는 생각들이 있으면 함께 메모해서 적어둔다. Reference Note 작성이 끝나면 다음으로는 영구노트 작성으로 넘어간다. 내가 잘 아는 내용들은 상관 없지만 모르는 내용들은 이 Reference Note를 종이로 작성하는게 더 좋다. 왜냐면 마치 설명하듯이 작성하게 되는 이점이 있으니까. 내가 쓰는 도구들 볼펜 볼트액션 볼펜 현재는 tactile turn에서 나오는 티타늄 볼트액션 볼펜을 이용하고 있다....

November 10, 2022 · 전파고양이

19장 타입파라미터

subtype이란 무엇인가? F가 G의 서브타입이라면 G가 쓰일 자리에 F가 쓰여도 된다. In programming language theory, subtyping (also subtype polymorphism or inclusion polymorphism) is a form of type polymorphism in which a subtype is a datatype that is related to another datatype (the supertype) by some notion of substitutability, meaning that program elements, typically subroutines or functions, written to operate on elements of the supertype can also operate on elements of the subtype....

April 12, 2020 · VERITAS

python virtualenv 환경정리

pyenv 설치 brew install pyenv virtualenv 사용하기 가상환경 생성하기 virtualenv {환경이름} 위의 경로를 생성하면 환경이름으로 된 폴더가 만들어짐 $ virtualenv venv 활성화 시키기 source {환경이름}/bin/activate를 입력하면 shell의 모양이 다음과 같이 바뀜 (환경이름) $ 내가 사용하는 모듈을 저장하기 pip freeze > requirements.txt 내가 사용하는 모듈 설치하기 pip install -r requirements.txt virtualEnvWrapper 설정하기 virutalenv만 사용하면 매번 source를 통해서 가상환경에 진입해야 한다. pip install virtualenvwrapper # ~/.zsrc에 아래를 등록 export WORKON_HOME=~/.virtualenvs export VIRTUALENVWRAPPER_PYTHON="$(which python3)" # Usage of python3 source /Users/veritas/....

April 12, 2020 · VERITAS

개인적으로 사용하는 emacs 설정 모음

Index Related: emacs main inbox emacs-my-package emacs-lisp-배워보기 emacs-documentation emacs-yasnippet Snippet collections can be stored in plain text files. They are arranged by sub-directories naming snippet tables. These mostly name Emacs major mode names. 기본적으로 Emacs major Mode의 네임으로 subdir을 만들어서 관리한다. Triggering Expansion link when yas-minor-mode is active 일 때 triggering key를 누르면 확장 된다. Writting Snippet emacs-my-package 내가 사용하는 package를 모아서 정리...

March 01, 2020 · VERITAS

6장 AOP

Proxy, ProxyPattern, DecoratorPattern Decorator Pattern 다른 언어와의 차이점 자바의 함수는 1급 객체가 아니다. Example1 Input Stream 자바에서 Decorator패턴을 구현하기 위해서는 결국 Proxy의 형태로 구현할 수 밖에 없다. 자바는 함수가 1급 객체가 아니기 때문이다. Figure 1: BufferedInputStream 예제 핵심 기능과 부가기능을 분리하는 여러가지 방법들

February 29, 2020 · VERITAS

java-junit

java-junit link 용어정리 JUnit 기본 단언문 특징 단언문 Hamcrest 대표적인 Matchers Index Related: java-junit sitename test link github-team-junit 용어정리 test context 테스트의 정의 반복적으로 수행되고 동일한 결과를 얻어야 함 테스트케이스에서 사용하는 인스턴스 파일이나 네트워크 등의 자원을 만들어서 지정 데이터베이스 연동 JUnit 기본 단언문 assertEqual: 두개의 값이 같은지 비교 assertSame: 두 개의 객체가 정말 동일한 객체인지 확인 assertTrue: 예상 값의 참 거짓을 판별 asserNull: 대상 값이 null이면 참이 됨 fail 특징 fixture @BeforeClass @AfterClass @Before @After 테스트 종류 시간 제한 테스트 @Test(timeout=1000) 테스트 무시 @Ignore 배열지원 @RunWith JUnit Test 클래스를 실행하기 위해서 Runner명시적으로 지정 @Suiteclasses(Class[]) 여러개의 테스트 클래스를 수행하기 위해서 쓰임 @RunWith(Suite....

February 29, 2020 · VERITAS

emacs 스크롤을 pixcel 단위로 변경하기

아래와 같이 설정해주면 inline 이미지에서 스크롤시 점프하지 않는다. ;; https://emacs.stackexchange.com/questions/10354/smooth-mouse-scroll-for-inline-images (pixel-scroll-mode) (setq pixel-dead-time 0) ; Never go back to the old scrolling behaviour. (setq pixel-resolution-fine-flag t) ; Scroll by number of pixels instead of lines (t = frame-char-height pixels). (setq mouse-wheel-scroll-amount '(1)) ; Distance in pixel-resolution to scroll each mouse wheel event. (setq mouse-wheel-progressive-speed nil) ; Progressive speed is too fast for me.

karo

hugo를 사용한 정적 블로깅

설치 brew install hugo 디렉토리 구조 만들기 hugo new site {blog_name} theme추가 git submodule add https://github.com/budparr/gohugo-theme-ananke.git themes/ananke git submodule add -b master https://github.com/karohani/karohani.github.com public google에서 사이트가 검색 되도록 하기 Google Search Console에 SiteMap등록 google webmaster 파일을 다운 받은 뒤에 static폴더 안에 넣고 검증 버튼을 누르면 완료된다. OX-hugo를 이용해서 실제 데이터와 바인딩하기 주의점 파일 이름이 한글이면 제대로 출력되지 않는다. TITLE은 한글로 하더라도 파일이름은 한글로 해서는 안된다 ㅠㅠ 젠장

VERITAS

Javascript

Index 자바스크립트 이해하기 자바스크립트의 Closure 성질 이해하기 Closure는 왜 생기는 거지? 자바스크립트 배열 이해하기 index로 값 가져오기 var array = [1, 2, 3, 4]; array[2] // return 3 값 할당하는 방법 front 자바스크립트에서 배열에 값을 추가적으로 할당하거나 변경하라 back var array = [1,2,3,4]; array[2] = "abcd" 길이 array.length를 통해서 배열의 길이를 얻을 수 있다. 끝에 추가하기 array.push(10을 통해서 값을 획득할 수 있다. 반환값은 추가된 마지막 배열의 위치 index이다. var array = [1, 2, 3, 4]; array....

전파고양이