会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
myrj
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
49
50
51
52
53
54
55
56
57
···
189
下一页
2023年3月22日
C语言:理论知识点
摘要: 1. && 左边表达式为0,则最后结果为0,右边的表达式不用计算 2. | 左边表达式为1,则最后结果为1,右边的表达式不用计算 3. unsigned 无符号整型 4. int a=4; //二进制: 原码 反码 补码:00000000 00000000 0000000000000100 int
阅读全文
posted @ 2023-03-22 06:46 myrj
阅读(106)
评论(0)
推荐(0)
2023年3月21日
Codon是一个高性能的Python编译器
摘要: Codon是一个高性能的Python编译器,可以将Python代码编译成本地机器代码,没有任何运行时开销。与Python相比,单线程的典型加速比在10-100倍以上。Codon的性能通常与C / C ++相当(有时甚至更好)。与Python不同,Codon支持本地多线程,这可能导致速度提高多倍。Co
阅读全文
posted @ 2023-03-21 22:04 myrj
阅读(633)
评论(0)
推荐(0)
C语言:指针易错
摘要: #include <stdio.h> main() { char a[]="hellofg",*p=a; printf("%c\n",*p+5) ;//*p得到指针指的字符,+5是字符ASCII码加5 ,结果为m printf("%c\n",*(p+5)) ;//h:p+0 e:p+1....f:p
阅读全文
posted @ 2023-03-21 09:33 myrj
阅读(90)
评论(0)
推荐(0)
python 图片去背景
摘要: from rembg import remove from PIL import Image input_path="tuurenwu.png" out="mca.png" input=Image.open(input_path) outa=remove(input) outa.save(out)
阅读全文
posted @ 2023-03-21 07:15 myrj
阅读(129)
评论(0)
推荐(0)
2023年3月20日
word英文改大小写
摘要: 选择英文,按shift+F3
阅读全文
posted @ 2023-03-20 21:03 myrj
阅读(168)
评论(0)
推荐(0)
WORD的拼音指南 不连网 汉字标拼音
摘要: 电脑没联网,有不认识的字:利用WORD的拼音指南
阅读全文
posted @ 2023-03-20 21:00 myrj
阅读(95)
评论(0)
推荐(0)
Microsoft Visual C++ Redistributable下载地址
摘要: Microsoft Visual C++ Redistributable
阅读全文
posted @ 2023-03-20 20:50 myrj
阅读(141)
评论(0)
推荐(0)
把毛病吃回去:陈李济舒筋健腰丸
摘要:
阅读全文
posted @ 2023-03-20 20:44 myrj
阅读(18)
评论(0)
推荐(0)
Python 数据库:非关系型数据库
摘要: Python 数据库名为 dataset,将关系型数据库包装为 NoSQL 使用方式,非常方便快捷。底层基于 SQLAlchemy,因此支持多种数据库 SQLite、PostgreSQL、MySQL。dataset.readthedocs.io/en/latest/
阅读全文
posted @ 2023-03-20 20:37 myrj
阅读(50)
评论(0)
推荐(0)
python 文本形成视频
摘要: https://modelscope.cn/models/damo/text-to-video-synthesis/summary?continueFlag=316e474d46439886c7d26c850c8c9d37 from modelscope.pipelines import pipel
阅读全文
posted @ 2023-03-20 13:35 myrj
阅读(230)
评论(0)
推荐(0)
上一页
1
···
49
50
51
52
53
54
55
56
57
···
189
下一页
公告