V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  qwq11  ›  全部回复第 12 页 / 共 12 页
回复总数  228
1 ... 3  4  5  6  7  8  9  10  11  12  
2022-02-11 17:44:10 +08:00
回复了 ALLROBOT 创建的主题 Python CNN 入门, pycharm 报错:数组是 0 维的,但是有 1 个被索引了
0 维:
arr
1 维:
arr[i]
二维:
arr[i, j]
三维:
arr[i, j, k]
不知道 0 维怎么表示,总之就是 n 维数组你需要 n 个 index 去索引,但是对于 0 维数组你使用了 1 个 index 去索引
2022-02-07 17:45:50 +08:00
回复了 sadfQED2 创建的主题 Android 目前 android11 如何给应用保活呢?
@ysc3839 小米穿戴划掉了就挂了手表收不到任何消息通知。我的方法是锁上,然后在 thanox 里设置打开“在最近任务里强制隐藏”
2022-02-06 12:14:27 +08:00
回复了 qwq11 创建的主题 Apple Xcode 解压出来比 GTA5 大
@agagega 早上起来看了一下确实是 SDK 太大了

106G .
48G ./iPhoneOS.platform
29G ./WatchOS.platform
20G ./AppleTVOS.platform
5.6G ./MacOSX.platform
961M ./iPhoneSimulator.platform
764M ./AppleTVSimulator.platform
711M ./WatchSimulator.platform
84M ./DriverKit.platform

昨天晚上 ^C 给停掉了,重新解压再来一次吧,我真是贱啊
2021-09-02 15:32:51 +08:00
回复了 chevalier 创建的主题 程序员 你们如何记录知识网络?
@xwayway 国外有 Notion,国内有 Wolai
2021-08-19 15:00:58 +08:00
回复了 ztoben 创建的主题 Python 日志树的生成
```javascript
function getDescString(o, indent) {
switch (typeof (o)) {
case 'object':
let arr = []
if (Array.isArray(o)) {
for (let i = 0; i < o.length; i++) {
arr.push(`${indent}- ${i}: ${getDescString(o[i], indent + ' ')}`)
}
} else {
for (var item in o) {
arr.push(`${indent}${item}: ${getDescString(o[item], indent + ' ')}`)
}
}
return '\n' + arr.join('\n')
default:
return o
}
}

let obj = { "msg": "就这样", "tips": [{ "id": 1, "content": "代码挺乱嘻嘻" }, { "id": 2, "content": "再来一个提示" }] }
console.log(getDescString(obj, ''))
```
发现稍微改下就可以生成 yaml (
2021-08-19 14:34:21 +08:00
回复了 ztoben 创建的主题 Python 日志树的生成
这个不就是序列化一下吗,定义一个 interface{ GetStructuralInfomation() } 返回一个节点的这样的树,递归调用就行了,还可以给每个字段加个 annotation 自动识别名字和格式,就更简单了
2020-07-23 00:54:06 +08:00
回复了 crazytree 创建的主题 奇思妙想 谁来解决一下这个痛点!
Affinity Photo
2020-07-23 00:47:13 +08:00
回复了 Myprincess 创建的主题 程序员 求付费录屏软件推荐
OBS
N 卡自带
Xbox 录屏
1 ... 3  4  5  6  7  8  9  10  11  12  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2696 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 23ms · UTC 09:55 · PVG 17:55 · LAX 01:55 · JFK 04:55
Developed with CodeLauncher
♥ Do have faith in what you're doing.