V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  mons  ›  全部回复第 4 页 / 共 7 页
回复总数  128
1  2  3  4  5  6  7  
2022-04-27 16:30:31 +08:00
回复了 Damenly1 创建的主题 Apple m1 mac mini 支持 外接两个 4k 144 显示器吗
2022-04-11 22:35:22 +08:00
回复了 lrvinye 创建的主题 问与答 Wireguard 如何获取客户端的真实 IP
wg show

peer 下 endpoint 显示的应当就是 peer 的 external IP
2022-04-06 01:55:30 +08:00
回复了 cwcc 创建的主题 宽带症候群 局域网设备的 DNS 查询应该怎么做?
可以,如果不想每台终端手动配置 DNS 的话至少有两种解决方案:

1. 主路由支持修改 DHCP DNS Server 列表的话,直接把你内网的 DNS Server IP 加进去,这样所有遵循规范的 DHCP Client 都会默认采用这个 list 。譬如我的解决方案是在 RPi 上架了个 AdGuard Home 后加到了 DHCP DNS Server list. 如果开了 DHCPv6 ,则需要同样加到 v6 的 DNS Server list:

https://i.imgur.com/JfVLbXi.png

https://i.imgur.com/yIAxnA3.png

2. 往主路由跑的 dnsmasq 里直接加静态 host-route ,例如:

cat > /run/dnsmasq.conf.d/custom01.conf <<EOF
host-record=ci-debian.mydomain,192.168.10.24
host-record=ci-debian2.mydomain,192.168.10.25
EOF

然后 reload dnsmasq

供参考。
MS Edge 支持硬解 HEVC

about:gpu 中 Video Acceleration Information 有:

Decode hevc main 48x48 to 8192x8192 pixels
Decode hevc main 10 48x48 to 8192x8192 pixels
Decode hevc main still-picture 48x48 to 8192x8192 pixels
2022-04-03 01:17:45 +08:00
回复了 Damenly1 创建的主题 Apple m1 mac mini 支持 外接两个 4k 144 显示器吗
实测 Mac Mini M1 插一台 4K 144 ( DP 到 C 口)没问题,插第二台的时候第二台(依旧是 DP 到 C 口)直接黑屏无显示,所以是只能支持一台 4K 144 输出。用的显示器是 27GP950 + 27GN950
2022-04-01 13:00:26 +08:00
回复了 LeeReamond 创建的主题 问与答 P2P 下载工具是如何解决 NAT 问题的?
UPnP / NAT-PMP 打洞。例

https://github.com/qbittorrent/qBittorrent/wiki/Explanation-of-Options-in-qBittorrent#listening-port
https://docs.netgate.com/pfsense/en/latest/services/upnp.html

现在的路由器一般都支持,但可能出于安全原因而默认禁用。
2022-03-29 17:02:40 +08:00
回复了 MrBrand 创建的主题 macOS 更新完 macOS 12.3,电脑黑屏开不了机了
2022-03-29 11:35:12 +08:00
回复了 lizhiqing 创建的主题 程序员 懂也要问 歪二逼连接速度九万是什么水平
2022-03-27 12:14:23 +08:00
回复了 jsrgqinbin 创建的主题 MacBook Pro 14 的 M1 用 xattr 清不了扩展权限
@dingwen07
@deplivesb

In some permission systems additional symbols in the ls -l display represent additional permission features:

+ (plus) suffix indicates an access control list that can control additional permissions.
. (dot) suffix indicates an SELinux context is present. Details may be listed with the command ls -Z.
@ suffix indicates extended file attributes are present.

https://en.wikipedia.org/wiki/File-system_permissions#Symbolic_notation
2022-03-23 06:50:14 +08:00
回复了 asktao 创建的主题 Safari Safari 打开 Google 会带个 /?client=safari 参数
这应该是 Apple 和 Google 签作为浏览器默认搜索引擎的合同里规定了的,是 Safari 加的。
https://www.macrumors.com/2022/01/05/google-pays-apple-stay-out-of-search/

同理,用 Firefox 默认的 Google 搜索也会加 client=firefox (但可以用自定义搜索引擎的方法去掉
https://superuser.com/a/1439470
2022-03-07 02:03:54 +08:00
回复了 leewi9coder 创建的主题 硬件 显存为什么没有 ECC 的?
https://www.nvidia.com/en-us/design-visualization/rtx-a6000/

GPU Memory 48 GB GDDR6 with error-correcting code (ECC)
2022-03-05 18:51:45 +08:00
回复了 LxnChan 创建的主题 程序员 求推荐 Git 代码托管平台
1. Intel Mac 可以直接用 powermetrics 读 smc 拿 CPU 温度

sudo powermetrics --samplers smc | grep -i "CPU die temperature"

Source: https://apple.stackexchange.com/a/372928

2. M1 Mac 目前好像没法用自带 CLI 读取(没实现),得用 API ,见 https://github.com/yujitach/MenuMeters/commit/5604e769b9bf5cc0a5ee6f0c6f99ecca570f1b37#diff-69ec57a2eaee2a9eae215332a60e6b2ce67e378314670e5112c39029f445ab3aR54-R72

Source: https://stackoverflow.com/a/68864575 )
自建 Gitea 也有 repo mirror 功能。每个 repo 可以单独自定 sync 间隔

https://docs.gitea.io/en-us/repo-mirror/
2022-02-20 11:51:19 +08:00
回复了 Explr 创建的主题 程序员 最近又看 CSAPP,请教无符号数比较问题
> The integer promotions
> Whenever a small integer type is used in an expression, it is implicitly converted to int which is always signed. This is known as the integer promotions or the integer promotion rule.
> Formally, the rule says (C11 6.3.1.1):
>> If an int can represent all values of the original type (as restricted by the width, for a bit-field), the value is converted to an int; otherwise, it is converted to an unsigned int. These are called the integer promotions.
> This means that all small integer types, no matter signedness, get implicitly converted to (signed) int when used in most expressions.

From https://stackoverflow.com/a/46073296
2022-01-29 10:27:08 +08:00
回复了 qq1204076437 创建的主题 Apple App Store 余额可以用于 AC+的按月订阅计划吗
@luojianxhlxt 我在美区看了一下 AC+ 按月只能使用信用卡 /储蓄卡付款。是说国区可以么?
2022-01-28 19:43:24 +08:00
回复了 qq1204076437 创建的主题 Apple App Store 余额可以用于 AC+的按月订阅计划吗
2022-01-24 17:39:31 +08:00
回复了 gaodeng 创建的主题 iCode 春节到了,送一波 Moon FM 兑换码
4LH7RJF4AMW9 已用 感谢
1  2  3  4  5  6  7  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2177 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 40ms · UTC 11:19 · PVG 19:19 · LAX 04:19 · JFK 07:19
Developed with CodeLauncher
♥ Do have faith in what you're doing.