목록Personal DB (108)
Silver Library (Archived)
book.pythontips.com/en/latest/mutation.html 9. Mutation — Python Tips 0.1 documentation 9. Mutation The mutable and immutable datatypes in Python cause a lot of headache for new programmers. In simple words, mutable means ‘able to be changed’ and immutable means ‘constant’. Want your head to spin? Consider this example: foo = ['hi'] p book.pythontips.com wikidocs.net/15 위키독스 온라인 책을 제작 공유하는 플랫폼 서..
Intro. After suffering harsh experience from Django airbnb project, I decided to learn Git immediately. Present. git log, add, commit, push Undergoing. These command now makes sense and I actually found that all commits are saved with no problem. Question is, how I can let my github to appear all the upload I commited? Should I use Github desktop? Or is there some way I can directly push and let..
res and req are objects? next is parameter??? Are they functions? These are middleware function. [res, req] are definitely middleware function. next is function - work somewhat like callback + middleware function. From documentation: You can provide multiple callback functions that behave like middleware to handle a request. The only exception is that these callbacks might invoke next('route') t..
Note. M = Data V = How does the data look like C = function which looks for the data So, why MVC all of sudden? To separate both 'URL' and 'function' for the sake of my mental health. By separating the URL sections to (1) another file with (2) another name of folder, let the folder name 'controller', and let that controller be the place to importing site for 'routers (folder)'. What this mean is..