https://apps.apple.com/us/app/boop/id1518425043?mt=12 Boop Are you a developer? Do you often deal with text? Do you have a fairly good understanding of command line interfaces and yet cannot for the life of you remember how one can possibly perform some of the most seemingly simple tasks such as decoding a url apps.apple.com 설치 후 내용 입력 후 Mac 기준 command + b 누른 후 Sort JSON 선택
출처: https://joshua1988.github.io/ts/etc/convert-js-to-ts.html#%EC%9E%90%EB%B0%94%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8-%EC%BD%94%EB%93%9C%EC%97%90-%ED%83%80%EC%9E%85%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8%EB%A5%BC-%EC%A0%81%EC%9A%A9%ED%95%A0-%EB%95%8C-%EC%A3%BC%EC%9D%98%ED%95%B4%EC%95%BC-%ED%95%A0-%EC%A0%90 JS에 TS 적용하기 | 타입스크립트 핸드북 자바스크립트 코드에 타입스크립트를 적용할 때 주의해야 할 점 기능적인 변경은 절대 하지 않을 것 테스트 커버리지가 낮을 땐 ..
출처: https://datajoy.tistory.com/233?category=876683 https 호출이 있던 도메인은 http호출을 해도 https로 redirect chrome에서 https 호출이 있던 도메인은 http 호출을 해도 https로 redirect합니다. http로 변경하려면 아래 링크에서 http로 변경한 도메인을 삭제해주어야합니다. chrome://net-internals/#hsts datajoy.tistory.com 개발서버 방화벽이 끊겨 재 신청 후 발생 https로 사용했던적은 없었는데.. 위 방법으로 하니 정상 동작 아마 모르는사이 https가 적용된적이 있었던거 같음 chrome://net-internals/#hsts 위 url 입력 후 위 부분에 도메인 주소 입력 후..
참조: https://effortguy.tistory.com/164 [Spring] JMeter 사용법 - JMeter란?, 테스트 방법 웹 어플리케이션 성능 테스트를 툴은 자바 오픈 소스 Apache Bench, Apache JMeter, 네이버에서 Grinder를 이용해서 만든 nGrinder, Gatling 등등이 있습니다. 이번 포스팅에선 웹 어플리케이션 성능 테스트 오 effortguy.tistory.com https://lurutia.tistory.com/859 JMeter 웹서버 부하테스트 JMeter란 부하 테스트, 기능 동작과 성능을 측정하기 위해 제작된 JAVA 어플리케이션 오픈소스 소프트웨어입니다. JMeter는 정적 및 동적 리소스, 웹 동적 애플리케이션에서 성능을 테스트하는 데 사..
출처: http://www.gnujava.com/board/article_view.jsp?board_no=12&article_no=2059 GNUJAVA 리눅스 명령어중 해당 파일의 경로를 알려주는 명령어는 which 입니다. jdk 설치후 java의 경로를 알고 싶을때는 which 명령어를 사용하시면 됩니다. ex) which java 혹시 나오지 않는다면 find를 사용 www.gnujava.com [root@duzon logs]# alternatives --config java There is 1 program that provides 'java'. Selection Command ----------------------------------------------- *+ 1 java-1.8.0-op..
출처: https://hjjungdev.tistory.com/153 Mysql (Maria) Db 테이블락 확인하고 강제중지 방법. 테이블락은 어떻게 걸리는가? 보통 기본설정의 Rdbms는 Select문을 제외하고 Delete/Update/Insert문에 대해서 테이블 락을 걸게됩니다. 가령 A라는 사람이 Delete Table;의 명령문을 실행한 상태에서 커밋을 hjjungdev.tistory.com -- 락테이블 조회 select * from information_schema.innodb_locks; -- 대기중인 락 조회 select * from information_schema.innodb_lock_waits; MariaDB [mysql]> select * from information_schem..
참조: https://solbel.tistory.com/1934 [sql/mysql] mysql nullif example / mysql 공백과 null 체크 방법 [sql/mysql] mysql nullif example / mysql 공백과 null 체크 방법 mysql 에서 컬럼이 빈값인 경우만 조회를 하려면 is null 이라는 것을 사용합니다. 예를들어, member 라는 테이블에서 name 라는 컬럼.. solbel.tistory.com select test1 from test where test1 IS NULL 위 쿼리 실행 시 test1 컬럼이 NULL인 데이터만 조회됨 select test1 from test where NULLIF(test1, '') IS NULL NULLIF 사용 시 ..
(select `order` from test1) UNION ALL (select '11' as order) order by order 위와 같은 쿼리에서 두번째 쿼리에 order 값이 '11' 문자열로 되어 있어 order 순이 1, 10, 100 순으로 정렬이 됨 (select `order` from test1) UNION ALL (select 11 as order) order by order 정상적인 order순이 되려면 숫자로 해야함 (select `order` from test1 order by `order`) UNION ALL (select '11' as order) 위와 같이 order by를 특정 쿼리에만 적용 시 정상적으로 order by 되지않음 통합쿼리에 order by 처리 필요