background picture of the home page

Hi,Friend

We can only see a short distance ahead, but we can see plenty there that needs to be done.

Welcome!

Welcome!!!🎉️ Hello bro 如果你看到了这一篇文章,那么证明你找到了一个互联网大山中的小小砂砾😄 千里之行,始于足下。

thumbnail of the cover of the post

网站分享之icones

网站分享之icones 一个图标网站 点击进入Icônes 有着超多图标 网站首页 例如寻找Google风格的图标

thumbnail of the cover of the post

计算机中数的存储与表示

计算机中数的存储与表示 以C语言、Windows 64位环境为例 考虑这样一个问题:数 3510593 在计算机中是如何存储的?(测试代码放到最后) 整数的存储方式 整数在计算机中采用补码形式存储,存储过程如下: 十进制转二进制:3510593的二进制原始形式为:110101100100010100

thumbnail of the cover of the post

如何查找占用某端口的程序

查找占用某端口的程序 在Windows环境下,某个端口被占用导致无法执行命令或部署 通常命令会提示你[WinError 10048] 其实就是该端口被其他进程占用了 为了知道该端口此时正在运行的进程,使用命令 netstat -ano | findstr [端口号] 如

thumbnail of the cover of the post

一个递归的底层实现

一个递归的底层实现 基于RISCV32I指令集的简单实例 C语言原始代码 int fact(int n){ if(n<1) return 1; else return n*fact(n-1); } riscv汇编实现(ripes模拟器) .data n:.word 10 .text .glob

thumbnail of the cover of the post

如何卸载文件

Windows卸载文件终极方案 准备 有管理员权限(如果是自己的电脑一般都是有的) 下载everything(方便找文件) 结束程序,关闭进程 对于一个正在使用的文件,是无法删除的,需要你在任务管理器中结束相关进程 shift+del 强制卸载 先试试能不能强制卸载 使用管理员权限 右击文件 选择属

thumbnail of the cover of the post

关于jupyter导出的一些报错

关于jupyter导出的一些报错 首先最重要的是检查jupyter notebook的版本 下载6.x版本的jupyter notebook,7.x版本不再支持插件。 pip install notebook==6.4.12

thumbnail of the cover of the post