《Django 5 By Example》学习第7天,p211-p236总结,总计26页。一、技术总结1.messages(消息推送)django.contrib.messages。2.OAuth 2Django里使用的是social-app-django这个package进行认证操作。3.开发环境使用HTTPS使用django-extensions,werkzeug,pyOpenSSL实现。4.第三方帐号登录书里以使用goole帐号进行登录进行...
《Django 5 By Example》学习第6天,p165-p210总结,总计46页。一、技术总结1.bookmarks项目(1)登录认证作者这里使用的是Django自带的auth。(2)上传头像图片处理,使用Pillow。(3)扩展user扩展user模型与自带的user使用外键进行关联,命名为profile。二、英语总结(生词:4)1.de facto(1)de factoadv. existing in fact, ...
《Django 5 By Example》学习第3天,p54-p75总结,总计22页。一、技术总结1.分页(1)分页:Paginator(2)页数不存在处理: EmptyPage, PageNotAnInteger2.class-based views(类视图)(1)为什么使用类视图?1)Organize code related to HTTP methods, such as GET, POST, or PUT, in separate methods, instead of using con...
p348,Luckily, many deployment steps can be automated, saving development time, reducing human errors, and shortening release cycles; this section will show how to embrace continuous integration (CI), continuous deployment (CD), and continuous delivery to accelerate time to market (TTM) and ensur...
2024年10月编程人总共更新了21篇文章:1.2024年9月文章一览2.《Programming from the Ground Up》阅读笔记:p147-p1803.《Programming from the Ground Up》阅读笔记:p181-p2164.《Programming from the Ground Up》阅读笔记:p217-p2385.《Programming from the Ground Up》读后感6.《使用Gin框架构建分布式应用》阅读...
《用Gin框架构建分布式应用》学习第12天,p212-p233总结,总22页。一、技术总结1.JavaScript知识点(1)class、method(2)function, arrow function, (3)fetch()(4)Promise, then()2.bootstrap第5章主要涉及前端技术的运用,作为后端开发者,大致了解其用法即可。二、英语总结1.alleviatep225, This chapter will cover how...
前端永远离不开HTML,CSS,JavaScript这三个概念。但是书中作者基本没有进行介绍。此时要求我们自己具备一定的前端基础。关于Javascript的tutorial, 个人觉得React文档中提到的《The Modern JavaScript Tutorial》([链接])还不错。如果你在阅读本书的时候对JavaScript不熟悉,不妨看一下。
p80, A container is like a separate OS, but not virtualized; it only contains the dependencies needed for that one application, which makes the container portable and deployable on-premises or on the cloud。
《用Gin框架构建分布式应用》学习第2天,p20-p31总结,总计12页。一、技术总结1.第一个gin程序 {代码...} go module {代码...} go run {代码...} 二、英语总结无。三、其它使用WSL时需要注意:1.环境变量(用户变量+系统变量)会影响到WSL系统的环境变量(env)。2.WSL + VSCode搭建Go开发环境:可以读取到windows系统上的项...
之所以看这本书,是想了解一些跟汇编相关的知识,打开这本书后就被作者的观点——“If you don't understand something the first time, reread it. If you still don't understand it, it is sometimes best to take it by faith and come back to it later(第一遍看不懂,那就看第二遍;还是看不懂,记住它,回头再看)”吸...