2016년 7월 22일 금요일
How to check Developer tool window open
http://stackoverflow.com/questions/7798748/find-out-whether-chrome-console-is-open
In my case,
I use check4.js
check1.js, check2.js code can't check developer tools open event.
check3.js code check using setInterval() function.
check4.js
code use Object definedProperty() function on get() function.
console.log("%c hello", element)
When console.log called, element object call get() function.
And you can check developer tools open
Happy Coding!
2016년 2월 1일 월요일
jsPerf
http://jsperf.com/
This site test javascript performances.
About test example
triple-equals-vs-double-equals
Page like this.
If you click 'Run tests'
processing and return result to you.
like this.
This site test javascript performances.
About test example
triple-equals-vs-double-equals
Page like this.
If you click 'Run tests'
processing and return result to you.
like this.
Test | Ops/sec | |
---|---|---|
=== |
| 126,211,632±1.51%89% slower |
== |
| 10,709,041±5.01%99% slower |
!== |
| 70,270,530±0.00%fastest |
!= |
| 5,273,440±0.00%fastest |
=== on same type only |
| 739,712,962±0.00%fastest |
== on same type only |
| 565,679,421±0.00%fastest |
!== on same type only |
| 706,719,526±0.00%fastest |
!= on same type only |
| 1,133,703,804±0.00%fastest |
피드 구독하기:
글 (Atom)
JIRA Plugin - ScriptRunner 소개 #2
관련 글 소개 #1: https://pineoc.blogspot.com/2019/03/scriptrunner-1.html ScriptRunner 소개 #2 지난 글에서는 Behaviours를 보았고 다음 내용인 콘솔, 리스너 등을 ...
-
에반젤리스트(Evangelist)란 무엇일까요? 단어 그대로 말한다면 '전도사'의 의미를 가지고 있습니다. 그리고 제가 공부하는 IT업계에서도 이 에반젤리스트가 있지요. 이분들이 하는 일은 쉽게 말해서 기술에 대해 전파하고 알리...
-
Nginx 를 이번에 사용하게 되었는데요. Nginx를 이용해서 폴더에 있는 파일을 받을 수 있게 하려합니다. mac OS에서 테스트할때의 nginx 의 nginx.conf 파일은 /usr/local/etc/nginx/nginx.conf 경...