返回顶部
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 29 下一页
摘要: OpenGL 参考资料: https://learnopengl.com/ 原版 https://learnopengl-cn.github.io/ 中文版 https://www.bilibili.com/video/BV11W411N7b9?from=search&seid=8920882218 阅读全文
posted @ 2020-07-01 17:15 Zcb0812 阅读(441) 评论(0) 推荐(0)
摘要: SQL 分类: SQL: structure query language#relation database 关系型数据库#SQL分类:# 四大类: 1,DDL: 操作数据库和表的 data definition lang eg:create alter drop 2,DML: 操作表中的记录(增 阅读全文
posted @ 2020-06-18 21:28 Zcb0812 阅读(138) 评论(0) 推荐(0)
摘要: PyQt 模拟时钟 AnalogClock: from PyQt5 import QtGui, QtCore from PyQt5.QtCore import Qt from PyQt5.QtGui import QIcon from PyQt5.QtWidgets import QApplicat 阅读全文
posted @ 2020-06-13 19:43 Zcb0812 阅读(509) 评论(0) 推荐(0)
摘要: redis: redis 是基于内存的k-v 数据库,类似的有memcached,但是memcached 只支持 string, mongodb 是基于硬盘的文档型数据库 Chapter01: redis 的五种数据类型 以及基本操作: 1,字符串 string 常用操作: get set del 阅读全文
posted @ 2020-06-03 10:53 Zcb0812 阅读(197) 评论(0) 推荐(0)
摘要: go 的分页器: 参考: https://github.com/vcraescu/go-paginator 代码:https://files.cnblogs.com/files/zach0812/go_paginator.zip go 的验证码: 一个简单的Go语言实现的验证码 https://gi 阅读全文
posted @ 2020-05-26 11:31 Zcb0812 阅读(528) 评论(0) 推荐(0)
摘要: beego 和 gin 框架的对比: https://www.jianshu.com/p/bb93fdaf30c7 Beego在业务方面较Gin支持更多 在业务更加复杂的项目,适用beego 在需要快速开发的项目,适用beego 在1.0的项目中,适用beego,因为项目初期对性能没太大要求 Gin 阅读全文
posted @ 2020-05-16 11:59 Zcb0812 阅读(701) 评论(0) 推荐(0)
摘要: Gin 基础 : Gin 的hello world : package main import ( "github.com/gin-gonic/gin" "net/http" ) func main() { engine := gin.Default() engine.GET("/", func(c 阅读全文
posted @ 2020-05-09 12:18 Zcb0812 阅读(2182) 评论(0) 推荐(0)
摘要: 字符串相关: 去掉首尾空格: 方法 strings.TrimSpace(): package main import ( "fmt" "strings" ) func main() { s1 := " hello world 你好 世界 " ret := strings.TrimSpace(s1) 阅读全文
posted @ 2020-04-29 00:08 Zcb0812 阅读(211) 评论(0) 推荐(0)
摘要: 权限控制相关: 多用户,每个用户的url(权限)大都不相同的网站: 阅读全文
posted @ 2020-04-26 23:27 Zcb0812 阅读(194) 评论(0) 推荐(0)
摘要: 反向代理: 反向代理的基本原理 概念定义: 原理图解: 反向代理的优势: 动静分离: 概念定义: web资源分类: web请求: 早期的web请求: 现在的web请求: nginx 处理 web 请求: 静态处理是很快的,这时就有了负载均衡的概念,如下图: nginx 反向代理时与后端交互时 支持的 阅读全文
posted @ 2020-04-22 13:18 Zcb0812 阅读(175) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 29 下一页