首页
Home
文稿
Essay
友邻
Friend
兴趣
Interest
关于本站
このサイトについて
经过多方面的尝试,把hexo、vuepress、hugo、docusaurus等静态博客都搭了一遍,hugo是用go模板语法来写的,但是有点问题就是有些主题的依赖下载有问题,能用的主题又感觉不好看,docusaurus除了默认主题外唯一找到个不错的主题但似乎又因为npm依赖问题而放弃……最终方案是hexo-butterfly
nuxt-tailwindcss 踩坑指南
avoid the pitfalls of nuxt-tailwindcss
Nuxt 是基于 Vue.js 全栈 Web 框架;Tailwind CSS 是原子化 CSS 样式库
nginx部署
Nginx deployment
nginx ("engine x") is an HTTP web server, reverse proxy, content cache, load balancer, TCP/UDP proxy server, and mail proxy server. Originally written by Igor Sysoev and distributed under the 2-clause BSD License.
docker部署
Docker deployment
go 项目框架及规范
goプロジェクトの枠組みと規範
个人觉得比较不错的规范,四处偷师得来的
常用工具
一般的な工具
各种各样的东西
vue-router
electron-vite
这应该是目前最简单的创建方法 https://github.com/electron-vite/electron-vite-vue
pyside6使用qt designer生成的文件
pyside6 and qt designer
在文件所在目录执行
pyside6环境搭建及快速入门
pyside6 quick guide
在此之前,你应该保证已经安装好python了
(翻译)半小时学习rust
A half-hour to learn Rust
https://fasterthanli.me/articles/a-half-hour-to-learn-rust 本文为粗略的翻译 为了提高编程语言的熟练度,就必须要大量阅读有关资料。但是,如果你不知道它的意思,你怎么能大量阅读呢?
rust模块系统
Clear explanation of Rust’s module system
参考文章: https://www.sheshbabu.com/posts/rust-module-system/
rust基本语法
The basic grammar of Rust
不可变变量:在变量赋值或对象创建结束之后就不能再改变它的值或状态的变量 可变变量:同理,在变量赋值或对象创建结束之后就可以再改变它的值或状态的变量
rust所有权和引用
ownership and reference of Rust
全局对象:事先分配的内存空间段,程序启动时分配,结束时回收。 局部对象:分配在栈上,进入函数时分配,退出函数时回收。 动态对象:分配在堆上,需要时分配,不需要时回收。
rust安装配置
Installation and configuration of Rust
官网安装:https://www.rust-lang.org/zh-CN/
pytorch神经网络训练
pytorch neural network training
学自李宏毅老师
pytorch-transformer
pytorch transformer
https://zhuanlan.zhihu.com/p/338817680https://blog.csdn.net/qq_38890412/article/details/120601834
pytorch-神经网络基础
pytorch neural network
碎碎念:知识还没有完全还给老师 😄
pytorch环境
pytorch environment
深度学习,从pytorch开始 pytorch中文手册 https://github.com/zergtant/pytorch-handbook
gorm 数据库操作
Gorm database operations
git大全
String、rune and byte
拉取 git clone 、git pull提交 git push删除 git rm暂存 git add覆盖 git push -f合并 git merge
关于 string、rune 与 byte
"":双引号,包裹的类型是string'':单引号,包裹的类型是rune,rune是int32的别名,只能是单个字符``:反引号,包裹的类型是string
字符串处理
String handling
https://www.cnblogs.com/xdyixia/p/11896134.html
Go与json
Go and json
JSON 是存储和交换文本信息的语法,类似 XML。 JSON 比 XML 更小、更快,更易解析。 JSON 易于人阅读和编写。 C、Python、C++、Java、PHP、Go 等编程语言都支持 JSON。
slice与map操作
Slice and Map Operations
https://github.com/unknwon/the-way-to-go_ZH_CN/blob/master/eBook/07.6.md
web框架-前缀路由树
Real-time data acquisition
极客兔兔的web框架,该框架是参考gin的造轮子项目。前缀路由树这篇注释太少,不易于理解,个人写了写自己的理解。
go的多线程-实时采集机器数据
1.与目标设备进行tcp连接,接受目标设备发送的数据并存储。 2.能随意建立复数连接并分别存储对应接收的数据数据。 3.发送命令可以取消指定的连接。
go的数据类型深入解析
Edit or delete users
int bool float string array slice map chan 主要是 map 和 chan
6.gin-gorm编辑、删除用户
通过gin-gorm之项目学习部分的学习,可以对项目的架构有深入的了解 🤟 {% post_link "gin-gorm1项目准备初始化" %} {% post_link "gin-gorm2数据库" %} {% post_link "gin-gorm3错误处理与路由接口" %} {% post_link "gin-gorm4用户模块接口编写" %} {% post_link "gin-gorm5密码加密" %} {% post_link "gin-gorm6编辑、删除用户" %}
5.gin-gorm密码加密
password encryption
4.gin-gorm用户模块接口
Interface of user module
3.gin-gorm错误处理与路由接口
Error handling and routing interface
2.gin-gorm数据库准备
Database preparation
1.gin-gorm项目初始化
Project initialization
樱花特效 sakura.js
桜が散る
为博客添加樱花飘落的效果 来源自其他博客
ArchLinux重开备忘录
ArchLinuxを再開する
时常记得:sudo pacman -Syu 万一哪天挂了或用新电脑时,方便自己快速重开。 第二次安装成功,nice. 原来16G太小了,重新分配40G再装了一遍,第三次安装成功。
Gin框架
Gin の使い方
Gin是一个使用Go语言开发的Web框架。 它提供类似Martini的API,但性能更佳,速度提升高达40倍。 如果你是性能和高效的追求者, 你会爱上 Gin。
go与前端的json数据交互笔记
Json data interaction between Go and Frontend
vue3 速成指南
Vue3 quick guide
Vue 是一款用于构建用户界面的 JavaScript 框架。它基于标准 HTML、CSS 和 JavaScript 构建,并提供了一套声明式的、组件化的编程模型,帮助你高效地开发用户界面。
前后端交互
Communication between Frontend and Backend
一、后端写好需要调用的函数 二、前端使用axios进行调用 三、跨域问题与同源策略
vue初学笔记-单文件组件
Vue3 初心者のノート
一个 Vue 单文件组件 (SFC),通常使用 *.vue 作为文件扩展名,它是一种使用了类似 HTML 语法的自定义文件格式,用于定义 Vue 组件。一个 Vue 单文件组件在语法上是兼容 HTML 的。
spring boot-mybatis开发速成指南
Spring quick guide
Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you can "just run". We take an opinionated view of the Spring platform and third-party libraries so you can get started with minimum fuss. Most Spring Boot applications need minimal Spring configuration.