CodeingTestPrac
-
Node.js - study part 2CodeingTestPrac 2022. 5. 13. 17:48
1.비교연산자 특이 한점 a == b. 좌 우 같아? a === b 정확 하게 같나? 2. parameter vs argument Parameter: 매개변수 ex) def fun(p1,p2): return p1 ex) Argument: 전달 인자 fun(a1) c 리눅스 프로그래밍에서 하는 것과 같은 arg 를 이용가능하다. var args = process.argv; console.log(args[2]) node tmp.js egoing >> 출력 egoing , args[0] -> compiler, args[1] -> 실행할 프로그램 , args[2] -> 콘솔 입력 값 3. java script 에서는 없는 값을 호출하면 undifined 을 반환한다. 4. 웹페이지 이동 을 구성하는법 , - 1..
-
Node.js - study part 1CodeingTestPrac 2022. 5. 13. 16:56
>>> 사용자의 반응을 반영하는 웹패이지,,,, html 파일을 직접적으로 건드는것은 위험함, js -> web 을 만든다 node.js -> 컴퓨터를 제어 하여 서버를 만든고 web application 을 만든다. 사용자 입장 -> 웹사이트 CRUD nod.js -> 파일 생성 코드를 생성 [web application] >>>>>>>>>>>>>>>>>>>>. [node.js application] [webbrowser]. ->>>>>>>>>>>>>>>>>>>. [java script] [node.js runtime] node.js org 방문 : 다운 npm -> node js package manage program in mac enter open terminal or iterm program $..
-
Node-js 그게 뭔디?CodeingTestPrac 2022. 5. 6. 22:24
https://hanamon.kr/nodejs-%EA%B0%9C%EB%85%90-%EC%9D%B4%ED%95%B4%ED%95%98%EA%B8%B0/ Node.js 노드 개념 이해하기 자바스크립트 JavaScript 런타임 이벤트 Node.js 노드 개념 이해하기 JavaScript 런타임 - 노드는 다양한 자바스크립트 애플리케이션을 실행할 수 있으며, 서버를 실행하는데 제일 많이 사용된다. 이벤트 기반 이벤트 루프 논블로킹 I/O 싱글 hanamon.kr 위에 나오는 설명에 부가적으로 알아보자 node.js. 이름에서 나온다 , 노드와 js 기존 웹 서버 + 프론트 front =. html ,css, js , server side : others of js after node js -> build app..
-
3월 10일 ,Flutter const vs finalCodeingTestPrac 2022. 3. 10. 18:33
final , const 둘다 상수를 정의 하는데사용이 된다. 즉 한번 정해지면 앱 빌드 이후에 변환이 불가하다. 그럼 차이는 무엇인가. final - 기본 적으로 고정 상수를 뜻 하지만 상황에 따라 다를 수가 있다. app build 시에는 값이 정해지지 않고 app의 실행 과정에서 값이 정해진다 . 현재의 날짜를 받는 DateTime.now() 같은 경우를 받는데 사용이 된다. const - app build 시에 값이 정확하게 정해져야한다. 위에서 예를 든 Date Time.now() 을 받지 못한다 . 색상, 글자크기를 고정으로 정하며, flutter 의 build method 가 rebuild 하 지않아 속도 향상의 도움이 된다 . Stateless widget 의 모든 property는 con..
-
3월 8일 ,flutter async awaitCodeingTestPrac 2022. 3. 8. 11:27
firebase 로그인을 위해 await 를 적어준다 . 왜 ??? sync -동기 async -비동기 await - 내려가는거 기다려! 먼저 하고 가자. 1. await 를 하지 않을시 다음 페이지로 이동 후 구글 로그인 창이 나온다. 2. iscomplieteregis() 를 사용해 firebase 가 아닌 개인 서버에서 유저의 유무를확인하는데 여기도 await 가 없으면 코드가 끝나고 나서 iscomplieteregis() 가 작동한다. 개인 서버의 아이디가 있어도 . await 가 없다, checkvalide = false -> print("no account ") -> iscomplieteregis() ->check valide true , await 가 있다, iscomplieteregis()..
-
Mac에서 CocoaPods설치 에러해결,rbenv updateCodeingTestPrac 2022. 2. 17. 13:45
이글은 2023.03.27일에 수정했으며 1년만에 수정을 했습니다 pod 1.12 을 설치 가능합니다. 각종 스택 오버플로우와 블로그들을 참고하면서 삽질한 이야기이다. 문제 : sudo 를 이용한 설치를 할때 에러가 지속적으로 나온다. $sudo gem install -n /usr/local/bin cocoapods 다음은 에러 메시지이다. Building native extensions. This could take a while... ERROR: Error installing cocoapods: ERROR: Failed to build gem native extension. current directory: /Library/Ruby/Gems/2.6.0/gems/ffi-1.15.5/ext/ffi_c /..
-
2월 9일CodeingTestPrac 2022. 2. 9. 18:38
Deep Learning. 강의 : lec 4 - Transformers https://fullstackdeeplearning.com/spring2021/lecture-4/ Full Stack Deep Learning Hands-on program for software developers familiar with the basics of deep learning seeking to expand their skills. fullstackdeeplearning.com https://hnsuk.tistory.com/31 [CNN] ResNet18 소개 ResNet18은 18개 층으로 이루어진 ResNet을 의미합니다 ResNet은 2015년도 ILSVRC(ImageNet Large Sclae Visual R..
-
2월 1일 -Flutter,Flash app ,Class, navigation button, HeroactionCodeingTestPrac 2022. 2. 1. 18:51
static const String id = "welcome_screen" ; static : dart 의 있는 keywords https://dart.dev/guides/language/language-tourd A tour of the Dart language A tour of all the major Dart language features. dart.dev static 을 붙임으로, 클라스를 호출하지 않고 바로 인스턴스를 확인 할수 있다. void main() { print(Dog().numof); print(Car.numof); } class Dog{ int numof =4 ; } class Car { static int numof =2; } static 을 붙임으로, Class 안의 함수를 바..