본문 바로가기
728x90
반응형

분류 전체보기352

[WebApp] NginX 설정 관련 . nginx.conf 파일을 이용하여 설정한다. 기본 용어 directives란? nginx에서 각 line에서 처음 등장하는 word를 directive라고 부르며, 이들은 각각 nginx가 특정 설정을 담당함. directives는 크게 두 종류로 나뉨. simple directive block directive block directives는 curly bracket으로 둘러싸여진 block을 값으로 가짐. directives 뒤에 공백문자로 이후 놓인 value가 block이 아닌 경우는 simple directie이며, semicolon으로 끝난다. context란? 구조적으로 nginx.conf는 core부분(최상위 level의 내용들)과, events block, http block으로 구성됨.. 2023. 8. 1.
[WebApp] CGI vs. WSGI CGI (Common Gateway Interface) 1993년 정적인 페이지를 처리하던 web server에 사용자와의 interaction을 통한 동적인 페이지 생성 기능이 가능한 외부 프로그램(오늘날 web application으로 불림)을 추가하기 위해 제안됨. 다시 말하면, CGI는 Web server와 Web application (이전엔 CGI program, CGI application이라 불림, 외부 프로그램 또는 web application) 간의 통신 방식이다. Programming language나 platform 등에 independent 이라는 장점을 가지지만 Web server가 application(앞서 말한 외부 프로그램)을 호출할 때마다 새로운 process를 생성하기 .. 2023. 7. 31.
[Python] asterisk * 사용하기 : unpacking, packing C언어에서 pointer 연산자인 * (asterisk)는 Python에서 상당히 낯설게 동작한다. (특히, PEP3132, PEP448 등에서 그 기능이 무지 많아져서... --;;) double asterisk ** 와 함께 packing과 unpacking 기능으로 정말 많이 사용되기 때문에 한번은 정리를 해보는게 도움이 된다. 크게 function과 관련되어서는 두가지 mode로 동작한다. function을 define 할 때 parameter에서 사용되는 경우 (= function header에서 사용되는 경우) : packing function call에서 argument로 사용되는 경우 : unpacking 이와 유사하지만 조금 색다르게 보이는 경우도 다음과 같이 있다. assignment의.. 2023. 7. 30.
[Python] while statement, break and continue Python의 경우, loop structure로 while statement와 for statement를 제공한다. Contol Flow와 Control Structure에 대한 개념은 다음 URL을 참고 : http://ds31x.blogspot.com/2023/07/basic-control-structures-and-control.html 참고로 do-while statement 는 while statement 만으로도 구현가능하기 때문에 Python에선 지원하지 않음. for statement가 iterator object와 함께 사용되는 것과 달리, while statement는 if statement와 매우 유사한 구조로 repetition을 가능하게 함. 일반적인 구조. while condi.. 2023. 7. 28.
[Python] if, elif, else statements if, elif, else statements (조건분기문)프로그램의 flow control를 담당함. (loop문과 함께)Flow control을 위한 Control Structures에 대한 내용은 다음 URL을 참고.http://ds31x.blogspot.com/2023/07/basic-control-structures-and-control.html C언어의 if, else if, else 와 매우 유사함.설명다음은 이들 사용을 위한 간략한 예이다.if condition: # if statement if_block # if statement's code blockelif condition: # elif statement elif_block # elif statement's co.. 2023. 7. 28.
[Python] Boolean Operators, Relational Operators, and Membership Operator Boolean Operators기본 boolean operator는 다음 3가지로 구성됨.and : and 연산자. (binary op.) : C언어 등에선 &&에 해당.or : or 연산자. (binary op.) : || 에 해당.not : not 연산자. (unary operator로 operand가 하나임.) : !에 해당.참고로 boolean operator로 묶여 있는 combining comparisons의 경우, short-circuit evaluation이 수행됨.or의 경우 왼쪽에서 오른쪽으로 evaluation이 이루어지는 도중 하나라도 True가 나오면 뒤에 대해 evaluation을 하지않고 True를 반환.and의 경우는 하나라도 Flase가 나오면 이후 evaluation을 수.. 2023. 7. 28.
728x90
반응형