윗쪽 그림 1과 같이 두 개의 회로가 있다고 해 보자. 그림 1의 왼쪽과 오른쪽의 회로 도선이 매우 가깝게 있을 때, 이 도선들이 축전기 같은 역할 할 수 있게 된다!
그림 1과 같이 둘 사이에 연결된 곳이 없는데도 불구하고 양쪽 회로에서 신호를 읽어냈을 때, 서로의 신호가 서로를 보완하는 것 같은 관계가 보인다면 둘 사이에 crosstalk이 일어나고 있는 것이다. 이 상황을 표현한 것이 그림 2!
윗쪽 그림 1과 같이 두 개의 회로가 있다고 해 보자. 그림 1의 왼쪽과 오른쪽의 회로 도선이 매우 가깝게 있을 때, 이 도선들이 축전기 같은 역할 할 수 있게 된다!
그림 1과 같이 둘 사이에 연결된 곳이 없는데도 불구하고 양쪽 회로에서 신호를 읽어냈을 때, 서로의 신호가 서로를 보완하는 것 같은 관계가 보인다면 둘 사이에 crosstalk이 일어나고 있는 것이다. 이 상황을 표현한 것이 그림 2!
가끔가다 autoconf같은걸 써서 컴파일이 되게 만든 패키지들이 있다. 맥에는 기본으로 안깔려있으니까 당연히 컴파일이 안되겠지? 아래 코드를 쓰면 맥에도 autotools를 설치할 수 있다.
#!/bin/bash BUILD=/tmp/devtools # or wherever you'd like to build TARGET=/Applications/autotools AUTOCONF=2.69 AUTOMAKE=1.14 LIBTOOL=2.4.2 mkdir -p $BUILD mkdir -p $TARGET cd $BUILD curl -OL http://ftpmirror.gnu.org/autoconf/autoconf-$AUTOCONF.tar.gz tar xzf autoconf-$AUTOCONF.tar.gz cd autoconf-$AUTOCONF ./configure --prefix=$TARGET make make install export PATH=$PATH:$TARGET/bin export MANPATH=$MANPATH:$TARGET/share export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:$TARGET/lib cd $BUILD curl -OL http://ftpmirror.gnu.org/automake/automake-$AUTOMAKE.tar.gz tar xzf automake-$AUTOMAKE.tar.gz cd automake-$AUTOMAKE ./configure --prefix=$TARGET make make install cd $BUILD curl -OL http://ftpmirror.gnu.org/libtool/libtool-$LIBTOOL.tar.gz tar xzf libtool-$LIBTOOL.tar.gz cd libtool-$LIBTOOL ./configure --prefix=$TARGET make make install rm -rf $BUILD
export PATH=$PATH:/Applications/autotools/bin export MANPATH=$MANPATH:/Applications/autotools/share export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:/Applications/autotools/lib
To be written
다운 링크: 혼인증명서-양식.pages
마음껏 받아 쓰세요! Pages 5.0으로 작성됐습니다.
다운 링크: 기본증명서-양식.pages
마음껏 받아 쓰세요! Pages 5.0으로 작성됐습니다.
가끔가다가 맥에서 vi로 로그를 써서 Git을 이용해 커밋을 할 때, 아래와 같은 에러를 볼 때가 있다.
error: There was a problem with the editor ‘vi’.
Please supply the message using either -m or -F option.
열심히 써놓은 로그가 다 날라가서 매우 짜증나는데, 구글신님을 통해 해결책 발견!
git config –global core.editor /usr/bin/vim
위 명령어로 에디터를 절대경로로 등록해준다! 끝!