大约有 46,000 项符合查询结果(耗时:0.0202秒) [XML]

https://www.fun123.cn/reference/extensions 

App Inventor 2 拓展参考文档 · App Inventor 2 中文网

...渐变、边距、圆角、透明) 【UI】ColorUtilities 拓展:16进制颜色转换为AppInventor标准颜色 【UI】ColorSeekbar 扩展:水平颜色选择条 【UI】NumberPicker 扩展:通过滑动或点击选择数字或文本,并支持颜色、字号、分隔线等自定义 ...
https://www.fun123.cn/reference/extensions/ 

App Inventor 2 拓展参考文档 · App Inventor 2 中文网

...渐变、边距、圆角、透明) 【UI】ColorUtilities 拓展:16进制颜色转换为AppInventor标准颜色 【UI】ColorSeekbar 扩展:水平颜色选择条 【UI】NumberPicker 扩展:通过滑动或点击选择数字或文本,并支持颜色、字号、分隔线等自定义 ...
https://www.tsingfun.com/it/cpp/763.html 

自动生成Linux下Makefile全攻略(automake原理) - C/C++ - 清泛网 - 专注C/C++及内核技术

...果如下: 1、./configure 输出Makefile文件 2、make 输出二进制 3、make install 安装二进制到指定目录 make及make install的规则都需要参照Makefile文件,而Makefile是自动生成的,大家有兴趣可以查看下Makefile,代码很长很复杂。当然我...
https://bbs.tsingfun.com/thread-1224-1-1.html 

App Inventor 2 上传文件到服务器的方案全总结 - App Inventor 2 中文网 - ...

...bsp;   def put(self):         #接收二进制流保存为图片         img = request.get_data()         with open("test.png", "wb") as f:           ...
https://www.fun123.cn/referenc... 

App Inventor 2 实现上传文件到服务器全方案总结 · App Inventor 2 中文网

...义的 class receive_pic(Resource): def put(self): #接收二进制流保存为图片 img = request.get_data() with open("test.png", "wb") as f: f.write(img) return 0 # 后面的路径可以自己定义 api.add_resource(receive_pic,'/test') i...
https://www.tsingfun.com/it/cpp/1966.html 

[源码实例] c/c++获取网卡mac地址 - C/C++ - 清泛网 - 专注C/C++及内核技术

... ( uRetCode == 0 ) { // 把网卡MAC地址格式化成常用的16进制形式,如0010-A4E4-5802 sprintf(pMicID,"%02x-%02x-%02x-%02x-%02x-%02x", Adapter.adapt.adapter_address[0], Adapter.adapt.adapter_address[1], Adapter.adapt.adapter_address[2], Adapter.adapt.adapte...
https://www.tsingfun.com/it/tech/1429.html 

正则表达式 30 分钟入门教程 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...最后是Lucy这个单词。 换行符就是'\n',ASCII编码为10(十六进制0x0A)的字符。 如果同时使用其它元字符,我们就能构造出功能更强大的正则表达式。比如下面这个例子: 0\d\d-\d\d\d\d\d\d\d\d匹配这样的字符串:以0开头,然后是两个数...
https://www.tsingfun.com/it/os_kernel/511.html 

Linux反编译全攻略 - 操作系统(内核) - 清泛网 - 专注C/C++及内核技术

...、lida( http://lida.sourceforge.net/ ) 调试器 -- gdb 十六进制编辑器 -- hexedit 文本编辑器 -- vim 压缩工具 -- upx (http://upx.sourceforge.net) 计算器 -- gcalctool(gnome计算器) 开始逆向之旅 首先我们看看程序基本信息: ...
https://www.fun123.cn/referenc... 

App Inventor 2 中文网原创内容 · App Inventor 2 中文网

...文件上传】App Inventor 2 上传文件和图片到服务器教程 【进制转换】App Inventor 2 十六进制/二进制/补码运算教程 【云数据库】App Inventor 2 云数据库配置教程(Firebase + TinyWebDB) 【SQLite】App Inventor 2 SQLite本地数据库教程 【TinyW...
https://bbs.tsingfun.com/thread-2366-1-1.html 

低功耗蓝牙接收串口16数据 - App Inventor 2 中文网 - 清泛IT社区,为创新赋能!

低功耗蓝牙模块用串口助手发送16进制数据,手机接收数据一直在跳变(没电脑没发数据也在跳变)。接收到的是10进制的数据通过调用AsciiConversion1模块转化和提取转化都不行。波特率设置为9600,这个很重要!! 经过测试,...