본문 바로가기

검색용 개발 블로그

(49)
error Unexpected token < in JSON at position 0 while parsing near '<!DOCTYPE html> javascirpt로 따라 치기하는데 왠지 이쁘지 않아서 eslint랑 pretty 깔려고 했는데 npm eslint 부터 막히는거다. 오류명은 error Unexpected token
mysql select 자동순번 set @a := 0; select ( @a := @a+1 ) as '자동순번', bno ,title from tbl_board limit 100;
[javascript] fuction vs class (new 연산자) 아니 sdk를 수정해보려는데 function 을 new로 선언해서 객체처럼 쓰지 뭐야?? function Car(make, model, year) { this.make = make; this.model = model; this.year = year; } const car1 = new Car('Eagle', 'Talon TSi', 1993); console.log(car1.make); 그럼 class 와 차이는 뭐지??? 라는 생각이 문득 들었음 https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Classes 공식문서에는 : 함수 선언과 클래스 선언의 중요한 차이점은 함수 선언의 경우 호이스팅이 일어나지만, 클래스 선언은 그렇지 않다는 것입니다..
[shell scirpt] date echo `date '\%Y-\%m-\%d' -d '3 day ago'` date: the argument ‘\\%Y-\\%m-\\%d’ lacks a leading '+'; when using an option to specify date(s), any non-option argument must be a format string beginning with '+' Try 'date --help' for more information.​ echo `date '+\%Y-\%m-\%d' -d '3 day ago'` \2021-\08-\31 echo "data now : $(date +%Y%m%d) " data now : 20210903 echo "data now : `date +%Y-%m-%d` " data..
개발 이력서 만드는 법(쉬움) 1. github를 통한 마크업으로 작성하기 참고: https://niklasjang.tistory.com/33 2. github에서 개발자 만든 이력서 템플릿을 다운 >수정 > 배포 참고: https://github.com/uyu423/resume-nextjs 3. Notion을 통해 글 작성 참고: https://os94.tistory.com/190
자바스크립트 핵심 컨셉 33개 https://www.youtube.com/playlist?list=PLOdNCETDjj4ZuRtVajPDAIXINc0rLjCiP javascript www.youtube.com 1. Call Stack 자바스크립트를 스택에 쌓는다. 다 실행하면 제거한다. 개발자 모드에 call stack 부분이 있는지 처음 알았음. 콜 스택은 한계가 있다.(스택에도 공간이 정해져 있다.) : Maximum call stack size exceeded 2. Primitive Types : 원시적인 undefinde null NaN 의 차이점 3. Value types and Reference types 값을 저장 하는 것과 값을 참조 하는 것의 차이 구분 [10] === [10] false : 다른 메모리에 위치한 다른..
bit and 연산자 (a&b>0) $scope.bitAnd = function(val1, val2) { return (parseInt(val1 + "") & parseInt(val2 + "")) > 0; } a랑 b를 정수로 먼저 변환하고 그 정수들을 이진수로 해석했을 때 같은 자리에 있는 1이 하나라도 있으면 true를 반환하는거에요 4(10)은 100(2)고 6(10)은 110(2)이니까 4 & 6은 100(2) = 4(10)이 되고요 그래서 4 > 0이 돼서 true가 돼요 무식하게 해석해보면 4 & 6 > 0 이라고 하면 여기서 이진수로 해석하는게 어떻게 가능한건가요?? 4 & 6 > 0 에서 &와 >0 이 있어야 이진수로 해석한다는 의미인건가? 싶어요 &자체가 이진수연산이에요 and는 &&이고요 조건에서의 and는 아닙니다
SQLite (.db3) 이름.db3 로 된 파일을 열어보고 싶다면 https://sqlitebrowser.org/dl/ Downloads - DB Browser for SQLite (Please consider sponsoring us on Patreon 😄) Windows Our latest release (3.12.2) for Windows: Windows PortableApp Note - If for any reason the standard Windows release does not work (e.g. gives an error), try a nightly build (below). Nightly builds ofte sqlitebrowser.org 를 다운 받아서 윈도우 환경에서 데이터를 확인할 수 있다. 그렇다면 ..