V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  mingl0280  ›  全部回复第 23 页 / 共 80 页
回复总数  1584
1 ... 19  20  21  22  23  24  25  26  27  28 ... 80  
2022-06-22 07:55:52 +08:00
回复了 Chaconne 创建的主题 分享发现 无语得 windows10 自带安全软件把 FRP 当作病毒。。。
@mgrddsj Riskware 就是没毒
2022-06-21 23:54:59 +08:00
回复了 CCCTS 创建的主题 程序员 要求大家脑洞大开,解决一个关于图像的问题
最要命的,我特么给摄像头上面上个窄带滤镜,就抓你显示的那个频段的信号就完了。
2022-06-21 23:54:08 +08:00
回复了 CCCTS 创建的主题 程序员 要求大家脑洞大开,解决一个关于图像的问题
没有办法。别想了。
这个讨论区里面所有的“想法”基本上都属于对摄像头不了解的。
1. 摩尔纹可以通过低通滤镜消除
2. 红外可以通过红外滤镜消除
3. 屏闪同理,降低光圈增加曝光时间就完了。
4. 偏光膜人家说眼镜掉了……
5. 最绝的:我特么在 HDMI 输出上挂一个采集卡……声音视频信号都有了,你上哪去找?设备都不在本机了。
2022-06-21 15:26:02 +08:00
回复了 mingl0280 创建的主题 Cloudflare Cloudflare 刚刚这波挂得挺惨的
@sjklong0318 错误报告还没出来,现在不清楚啥原因,就知道除了部分节点,其它地区的 CF 全挂了
2022-06-21 15:23:31 +08:00
回复了 mingl0280 创建的主题 Cloudflare Cloudflare 刚刚这波挂得挺惨的
@limitrinno 大概 UTC 6:34 的样子,Cloudflare 全世界大部分地区访问任何套了 CF 的网站都显示 500 ,包括 V 站和 Steam 都炸了……
2022-06-19 12:11:40 +08:00
回复了 kgdb00 创建的主题 Linux gcc 为什么连这种代码都能编译通过?
@geelaw 我回去重新想了下这里问题出在哪。我之前那个说法应该是错误的。
现在我还有一个比较坑爹的说法。
argc[argv-1] = *((argc) + *((argv) - (1)))
此处 argv 地址为 0x00000000
那么第一次运算的 ptr 指向 0x0-4 = FFFC ,此时 ptr 能否解引用?应该是可以的吧。
第二次运算的 ptr 为 FFFC + argc ,又回来了。(因为 argc 至少为 1 )
*((argc) + argv) 的地址就不会越过 0 ,这个结果就是合法的。
这是另一个想法。
2022-06-19 05:42:01 +08:00
回复了 kgdb00 创建的主题 Linux gcc 为什么连这种代码都能编译通过?
@xfriday 这其实是标准那边应该是想把 a[N] 同等于 N[a]搞出来的交换律,数学上加法和乘法符合交换律,除法和减法不符合交换律,一样的道理。
2022-06-19 05:32:51 +08:00
回复了 kgdb00 创建的主题 Linux gcc 为什么连这种代码都能编译通过?
@geelaw 我节选的段落里面已经非常清楚地表述了求值顺序:先使用 N+(P)(同样地,N-(P)或(P)-N )求得 i+(n-th)或 i-(n-th)个元素,然后判断操作数和结果指针是否越界,如果其中**一个**没有越界,则结果**不**应该溢出;否则,结果未定义。
根据这个手册的内容,首先,P 是 argv ,N 是-1 ,先求得 argv-1 的指针,该指针没有越过 argv 的最后一个项,因此值合法且指向数组最后一项;然后,argc[...]等价于(...)[argc],该顺序下不存在未定义行为,不存在代码错误。
现在你告诉我,18 楼理解哪里正确了?
你截取的部分只能证明你连这段话都没看懂。
2022-06-18 23:46:31 +08:00
回复了 kgdb00 创建的主题 Linux gcc 为什么连这种代码都能编译通过?
@kgdb00 C 标准就这么规定的,不是什么“不符合 C 语言的语法规范”
2022-06-18 23:45:46 +08:00
回复了 kgdb00 创建的主题 Linux gcc 为什么连这种代码都能编译通过?
因为这就是标准定义:
When an expression that has integer type is added to or subtracted from a pointer, the result has the type of the pointer operand. If the pointer operand points to an element of an array object, and the array is large enough, the result points to an element offset from the original element such that the difference of the subscripts of the resulting and original array elements equals the integer expression. In other words, if the expression P points to the i-th element of an array object, the expressions (P)+N (equivalently, N+(P)) and (P)-N (where N has the value n) point to, respectively, the i+n-th and i−n-th elements of the array object, provided they exist. Moreover, if the expression P points to the last element of an array object, the expression (P)+1 points one past the last element of the array object, and if the expression Q points one past the last element of an array object, the expression (Q)-1 points to the last element of the array object. If both the pointer operand and the result point to elements of the same array object, or one past the last element of the array object, the evaluation shall not produce an overflow; otherwise, the behavior is undefined. If the result points one past the last element of the array object, it shall not be used as the operand of a unary * operator that is evaluated.
注意 18 楼的理解是错误的。
2022-06-18 23:42:08 +08:00
回复了 kgdb00 创建的主题 Linux gcc 为什么连这种代码都能编译通过?
@geelaw 你这个理解是错误的,C99 6.5.6 (8):When an expression that has integer type is added to or subtracted from a pointer, the result has the type of the pointer operand. In other words, if the expression P points to
the i-th element of an array object, the expressions (P)+N (equivalently, N+(P)) and (P)-N (where N has the value n) point to, respectively, the i+n-th and i−n-th elements of the array object, provided they exist.
2022-06-18 01:34:33 +08:00
回复了 serafin 创建的主题 NAS NAS 通常多久更换硬盘
第一次换可以短一点,3-4 年;以后差不多就是 5 年。这样可以错开损坏周期……
2022-06-18 01:22:14 +08:00
回复了 bear2000 创建的主题 职场话题 工作时间?
8:00-17:00 ,中午吃饭多久随你,别太过分就行
人在美国,上次最高领导跑来开会也不是一样的吃饭,这有啥尴尬的……
2022-06-18 01:16:11 +08:00
回复了 hell0123 创建的主题 酷工作 [杭州/上海/北京] 字节-国际化电商-治理平台-社招/实习
今年早些时候,TikTok 中国母公司字节跳动的一位高管 Joshua Ma 来伦敦考察 TikTok Shop 英国站开通的情况。

在一次会议上,他说,作为一名资本家,他不认为企业应该提供产假。这一言论引起了伦敦员工的愤慨。

此事被曝光后,TikTok 表示,其在英国有明确的产假政策,包括 30 周带薪假期。而且,已经对 Joshua Ma 的相关言论展开正式调查。而这只是 TikTok 英国电商部门内部发生的众多冲突中的一个典型事件。

据悉,自从 TikTok Shop 英国站上线以来,伦敦电商团队至少走了 20 人,约占总人数的一半。剩下的一些人也表示准备辞职了。

==============
“自我驱动,踏实靠谱,对技术有追求,始终以最好的结果作为工作的最终目标。”
——让你去火箭燃料箱里呆着你就去吧!
2022-06-18 01:14:26 +08:00
回复了 coderwff 创建的主题 程序员 字节跳动 CDI 团队招人啦!
@Leviathann 应该是指坐在燃料箱里
2022-06-17 23:51:29 +08:00
回复了 caneman 创建的主题 NAS NAS 618 选购,最具性价比的选择是?
你先考虑一下你为什么需要 NAS ,不要为了不必要的需求买 NAS
2022-06-17 23:49:16 +08:00
回复了 coderwff 创建的主题 程序员 字节跳动 CDI 团队招人啦!
今年早些时候,TikTok 中国母公司字节跳动的一位高管 Joshua Ma 来伦敦考察 TikTok Shop 英国站开通的情况。

在一次会议上,他说,作为一名资本家,他不认为企业应该提供产假。这一言论引起了伦敦员工的愤慨。

此事被曝光后,TikTok 表示,其在英国有明确的产假政策,包括 30 周带薪假期。而且,已经对 Joshua Ma 的相关言论展开正式调查。而这只是 TikTok 英国电商部门内部发生的众多冲突中的一个典型事件。

据悉,自从 TikTok Shop 英国站上线以来,伦敦电商团队至少走了 20 人,约占总人数的一半。剩下的一些人也表示准备辞职了。
我买的气象站因为上传外网数据十分钟才更新一次的原因被我用 DNS 劫持加本地随手搭了个 Python 服务器的方式给撸回本地了……
2022-06-15 21:40:37 +08:00
回复了 holydancer 创建的主题 问与答 一幅眼镜的寿命是多久
3-5 年
1 ... 19  20  21  22  23  24  25  26  27  28 ... 80  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   971 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 38ms · UTC 20:21 · PVG 04:21 · LAX 12:21 · JFK 15:21
Developed with CodeLauncher
♥ Do have faith in what you're doing.