会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
junmm
烂记性更需要烂笔头
博客园
首页
新随笔
联系
订阅
管理
2025年11月
excel 将两个表格内容合并到一个表格
摘要: excel 将两个表格内容合并到一个表格 这里我简单举个例子说明 桌面新建一个文件夹,将2个excel文件放到该目录,分别命名为sales_data_1.xlsx和sales_data_2.xlsx文件,每个文件都有500条数据(不包含表头), sales_data_1.xlsx文件前5行内容如下
阅读全文
posted @ 2025-11-05 10:26 junmm
阅读(14)
评论(0)
推荐(0)
2025年10月
自动执行python脚本
摘要: 自动执行python脚本 可免费在云服务器自动运行python脚本 注册一个账号,完成后如下界面,分别为面板、控制台、文件、Web、任务、数据库 https://www.pythonanywhere.com/ 新建一个控制台,如下所示 上传自己本地python脚本,比如我的wechat_sender
阅读全文
posted @ 2025-10-16 17:49 junmm
阅读(11)
评论(0)
推荐(0)
github actions 学习
摘要: # This is a basic workflow to help you get started with Actions name: CI # Controls when the workflow will run on: # Triggers the workflow on push or
阅读全文
posted @ 2025-10-15 16:35 junmm
阅读(9)
评论(0)
推荐(0)
2024年12月
Win 安装excel word ppt
摘要: 仅纪录 excel word ppt快速方便安装 1 Office Tool Plus,下载地址如下: https://otp.landian.vip/zh-cn/download.html 2 解压安装包,Office Tool目录下执行Office Tool Plus.exe 3 部署 4 添加
阅读全文
posted @ 2024-12-11 14:16 junmm
阅读(51)
评论(0)
推荐(0)
2024年6月
Win 安装WSL+Ubuntu
摘要: 简要:Win安装WSL(Windows Subsystem for Linux)主要是在win系统可以运行linux系统,下面详解介绍如何安装WSL和Ubuntu以及Ubuntu一些简单配置 一 安装WSL 可以参考官网内容->WSL相关介绍 1、使用图像界面 打开控制面板(win+r输入contr
阅读全文
posted @ 2024-06-28 17:25 junmm
阅读(593)
评论(0)
推荐(0)
2023年10月
C语言 内存布局
摘要: GCC编译 预处理->编译->汇编->链接 预处理:头⽂件包含、宏替换、条件编译、删除注释... 编译:主要进⾏词法、语法、语义分析等,检查⽆误后将预处理好的⽂件编译成汇编⽂件... 汇编:将汇编⽂件转换成 ⼆进制⽬标⽂件... 链接:将项⽬中的各个⼆进制⽂件+所需的库+启动代码链接成可执⾏⽂件..
阅读全文
posted @ 2023-10-18 13:43 junmm
阅读(339)
评论(0)
推荐(0)
2023年9月
C语言 静态库和动态库生成
摘要: 文件目录结构 tree . ├── bin ├── include │ └── calc.h ├── lib │ ├── add.c │ ├── div.c │ ├── mul.c │ └── sub.c └── src └── main.c 4 directories, 6 files 静态库生成
阅读全文
posted @ 2023-09-28 15:49 junmm
阅读(238)
评论(0)
推荐(0)
C语言 scanf gets fgets区别
摘要: scanf scanf 是一个格式化输入函数,用于从标准输入(通常是键盘)读取数据。 char s[128]; printf("please input string s:\n"); scanf("%s", s); printf("output:\n"); printf("%s\n", s); 注意
阅读全文
posted @ 2023-09-21 11:36 junmm
阅读(226)
评论(0)
推荐(0)
git ls-files命令
摘要: git ls-files 命令用于列出当前 Git 仓库中跟踪的文件。它的作用是显示 Git 仓库中已跟踪文件的列表,包括已修改、已暂存和已提交的文件。 以下是 git ls-files 命令的一般用法: git ls-files -h 不带选项:默认情况下,git ls-files 列出所有已跟踪
阅读全文
posted @ 2023-09-20 14:15 junmm
阅读(2153)
评论(0)
推荐(0)
C语言 数据类型范围打印
摘要: C语言中的数据类型有不同的范围,这些范围可以通过标准库中的头文件 <limits.h> 或 <float.h> 来查看。 测试代码: void test_limits(void) { /* limits.h */ /* bit */ printf("%s=\t+%d\n", STR(CHAR_BIT
阅读全文
posted @ 2023-09-19 17:37 junmm
阅读(76)
评论(0)
推荐(0)
下一页
公告