github actions

yeshan3336 个月前
docker·devops·github actions
单例模式如何保证实例的唯一性那么,如何保证实例的唯一性?对于 Java 来说,要确保类的构造方法是私有的,使用 static final 的私有成员变量存放这个唯一实例。我们还要提供一个获取实例的接口(由于我们要通过类名获取实例,所以接口方法是 static 的)。实现如下:
yeshan3336 个月前
docker·devops·github actions
使用 chezmoi & vscode, 管理你的 dotfilesIn Unix-like operating systems, any file or folder that starts with a dot character (for example, /home/user/.config), commonly called a dot file or dotfile. 任何以 . 开头去命名的文件或者目录都可以称为 dotfile, 在 Unix-like 系统一般用的比较多, 但现在 dotfile 一般用于管理应用/软件的配置, 所以 Windows 平台
yeshan3336 个月前
docker·devops·github actions
几个不错的 Jupyter Notebook 云端展示平台URL:https://nbviewer.jupyter.org/结合Github的示例用法:https://nbviewer.jupyter.org/github/ + <用户名或者用户名/存放ipynb文件的仓库或者Gist ID>
yeshan3337 个月前
docker·devops·github actions
matlab 基操~1. 对象定义 使用sym定义单个对象、使用syms定义多个对象2. 使用limit求极限$$ \lim_{v \rightarrow a} f(x) $$
yeshan3337 个月前
docker·devops·github actions
React Hooks 那些事儿翻了波之前写的文章还有笔记,发现关于前端的文章并不多(好歹也划水做过点前端开发)。巧了,最近没什么好话题可写,做下 React Hooks 学习笔记吧。