코딩Coding/코딩기초상식_필수지식
-
10 Design Patterns Explained in 10 Minutes - Fireship코딩Coding/코딩기초상식_필수지식 2022. 3. 17. 17:22
https://youtu.be/tv-_1er1mWI 동영상 오리지날 원서책 전설의 디자인 패턴 디자인 패턴: 재사용이 가능한 객체지향 소프트웨어의 원리 (Design Patterns: Elements of Reusable Object-Oriented Software) eBook영어원서)Design Patterns: Elements of Reusable Object-Oriented Software - https://economiceco.tistory.com/m/12627 eBook영어원서)Design Patterns: Elements of Reusable Object-Oriented Software 디자인 패턴: 재사용이 가능한 객체지향 소프트웨어의 원리 객체지향 디자인 패턴을 모아놓은 책 영어원서 eBo..
-
Bash Shell)_ 브라이언 폭스(Brian Fox)가 작성한 유닉스 셸(Bash, Bourne-again shell, 본 어게인 셸)코딩Coding/코딩기초상식_필수지식 2022. 3. 14. 17:32
https://ko.m.wikipedia.org/wiki/%EB%B0%B0%EC%8B%9C_(%EC%9C%A0%EB%8B%89%EC%8A%A4_%EC%85%B8) 배시 (유닉스 셸) - 위키백과, 우리 모두의 백과사전 배시 (유닉스 셸) 본 셸을 대체하는 자유 소프트웨어 ko.m.wikipedia.org 브라이언 폭스(Brian Fox)가 작성한 유닉스 셸이다.[4][5] 1989년 발표되어 GNU 운영 체제와 리눅스, 맥 OS X 그리고 다윈 등 운영 체제의 기본 셸로 탑재되어 광범위하게 배포되었다
-
Zsh was originally written by Paul Falstad(폴 팔스타드zsh 개발자z셸_개발자)코딩Coding/코딩기초상식_필수지식 2022. 3. 14. 17:05
Zsh was originally written by Paul Falstad https://zsh.sourceforge.io/Doc/Release/Introduction.html#Author zsh: 2 Introduction 2 Introduction Zsh is a UNIX command interpreter (shell) usable as an interactive login shell and as a shell script command processor. Of the standard shells, zsh most closely resembles ksh but includes many enhancements. It does not provide compatibility zsh.sourceforge..
-
Why IPV4 address is 32 bit & IPV6 is 128 bit?코딩Coding/코딩기초상식_필수지식 2022. 2. 28. 13:13
https://www.quora.com/Why-IPV4-address-is-32-bit-IPV6-is-128-bit Why IPV4 address is 32 bit & IPV6 is 128 bit? Answer (1 of 6): IPv4 chose 32 bit because it was the biggest register found in any common processors at the time. It was an arbitrary choice that seemed good enough at the time. When IPv4 was originally devised we all believed it was sufficiently large en www.quora.com
-
-
매개변수(Parameter)코딩Coding/코딩기초상식_필수지식 2022. 2. 23. 17:53
https://webit22.tistory.com/37 매개변수 (Parameter) 매개변수 (parameter) : 메서드 괄호 안에 정의되고, 프로시저에 data를 넘겨 코드를 호출하는 역할. class MyClass { //클래스 생성 ... string strPara = ""; getSQL(strPara); // strPara = "인자"라 부름 } pu.. webit22.tistory.com 다른 글 보기 Parameter 와 Argument 차이 argument와 parameter 차이점 - https://economiceco.tistory.com/m/4386 argument와 parameter 차이점 argument와 parameter 차이점 taewan.kim/tip/argument_pa..