su - 한후 crtl + d 하면 이전개정으로 돌아간다. whoami
To start from scratch, move on to Set up the project. 1. Create the directory structure In a project directory of your choosing, create the following subdirectory structure; for example, with mkdir -p src/main/java/hello on *nix systems: 1, mkdir -p src/main/java/hello 2, src/main/java/hello/HelloWorld.java vi src/main/java/hello/HelloWorld.java package hello; public class HelloWorld { public st..
#13 - console.time( label ) 활용한 성능 시간 측정 방법 // consol.log 사용 ( https://developer.chrome.com/devtools/docs/console-api#consoletimelabel ) // 참고 ( 자바스크립트 벤치마킹 : https://mathiasbynens.be/notes/javascript-benchmarking ) // 장점 , 스크립트 로직을 따로 구현하지 않고 브라우져에서 쉽고 빠르게 성능시간 측정할 수 있다. // console.time 을 활용하지 않은 일반적인 사용 사례 #1 var start = +new Date(); // 시작시간 var arr = new Array(100), len = arr.length, i; for (..