相关文章
19 Linux之Python定制篇-apt软件管理和远程登录
19 Linux之Python定制篇-apt软件管理和远程登录 文章目录 19 Linux之Python定制篇-apt软件管理和远程登录19.1 apt软件管理19.1.1 apt介绍19.1.2 更新软件下载地址-阿里源19.1.3 使用apt完成安装和卸载vim 19.2 远程登录Ubuntu 学习视频来自于B站【小白入门 通俗易懂】2021韩顺…
建站知识
2025/1/4 17:32:34
JavaScript 生成 16: 9 宽高比
这篇文章只是对 for 循环一个简单应用,没有什么知识含量。
可以跳过这篇文章。
只是我用来保存一下我的代码,保存在本地我嫌碍眼,总想把他删了。 正文部分
公式:其中 width 表示宽度,height 表示高度 16 9 w i d t…
建站知识
2025/1/4 17:33:16
git submodule 子模块的基本使用
常用命令
命令说明git submodule add <url> <本地路径>添加子模块git submodule update --init --recursive添加子模块后,同步子模块内容git clone <url> --recurse-submodules克隆带有子模块的项目git submodule init初始化子模块git submodule…
建站知识
2025/1/4 17:11:24
linux定时删除服务器日志
不说废话。直接进入操作流程
linux 定时任务是用的crontab
查看 crontab是否启动
service crond statusdead 死的 启动crontab
service crond start 再次查看状态 running 运转的 查看 crontab cat /etc/crontab 查看 crontab任务
crontab -l 编辑 crontab任务
crontab …
建站知识
2025/1/4 17:05:30
Prompt GPT推荐社区
大家好,我是荷逸,这次给大家带来的是我日常学习Prompt社区推荐
Snack Prompt
访问地址:http://snackprompt.com
Snack Prompt是一个采用的Prompts诱导填空式的社区,它提供了一种简单的prompt修改方式,你只需要输入关…
建站知识
2024/12/29 15:07:54
剑指 Offer 10- I. 斐波那契数列
剑指 Offer 10- I. 斐波那契数列
方法一
class Solution {int mod (int) 1e9 7;public int fib(int n) {if(n < 1) return n;int[] dp new int[n 1];dp[1] 1;for(int i 2; i < n; i){dp[i] (dp[i - 1] dp[i - 2]) % mod;}return dp[n];}
}方法二
对方法一进行…
建站知识
2024/12/29 15:22:46