BandwagonHOST|搬瓦工|洛杉矶DC1|CN2+CMIN2|1TB@2.5Gbps|年付$36|AMD EPYC-Genoa
https://vpsxb.net/7229/
iOS 18.4 beta2 支付宝碰一碰无法使用
leiakun:
支付宝的碰一碰支付确实方便,不用再打开二维码或者打开扫一扫了,但是升级到 iOS18.4 beta2 后碰一碰无法使用(那种既可以碰一碰也可以扫二维码的专用设备,NFC 贴纸的碰一碰却能使用),NFC 触发不了支付宝的轻 App ( app clips )页面。这么好用的碰一碰因为升级就无法使用了,虽然是测试版系统,NFC 碰一碰太脆弱了,太容易被限制到了,扫码除非相机坏了不然不可能用不了。希望之后的 iOS 正式版能修复这个问题。
Forza Horizon 5 will require a Microsoft account on PS5
The PS5 version of Forza Horizon 5 will require you to link a Microsoft account to your PlayStation Network account in order to play the game, according to a FAQ on the game’s official website. The FAQ says that players will be prompted to link the two the first time they load the game. And […]
请教一下大佬们, 黑苹果(Hackintosh)用什么显卡最合适?
Int100:
请教一下大佬们, 黑苹果( Hackintosh )用什么显卡最合适? 感谢🙏
[吐槽]赢一把加23%进度,输一把减21%进度,赢一把输一把赢一把输一把赢一把输一把
那么求从钻3升到大师,需要打多少把呢
记录并分享一下 macOS 优化提速脚本
1014982466: 注意:含有降低 macOS 安全性的行为,请自行评估你的场景是否适用。
随手记录,仅供参考。我个人优先追求性能。如果觉得用不到的右上角关闭即可。
# 禁用系统完整性保护(SIP)和认证根卷 - 允许系统级修改,但降低安全性
csrutil disable
csrutil authenticated-root disable
# 降低系统安全限制 - 允许未签名应用和禁用代码验证
sudo nvram boot-args="amfi_allow_any_signature=1 cs_enforcement_disable=1 ipc_control_port_options=0"
sudo defaults write /Library/Preferences/com.apple.security GKAutoRearm -bool NO
sudo defaults write /Library/Preferences/com.apple.security.coderequirements Entitlements -string always
sudo defaults write /Library/Preferences/com.apple.security.coderequirements AllowUnsafeDynamicLinking -bool YES
sudo defaults write /Library/Preferences/com.apple.security.libraryvalidation.plist DisableLibraryValidation -bool YES
# 禁用立即锁屏功能
defaults write com.apple.loginwindow DisableScreenLockImmediate -bool yes
# 禁用应用程序签名验证 - 允许所有来源的应用
sudo spctl --global-disable
# SMB 网络共享优化 - 关闭签名要求,启用多通道功能提高传输速度
sudo bash -c 'echo "[default]" >> /etc/nsmb.conf'
sudo bash -c 'echo "signing_required=no" >> /etc/nsmb.conf'
sudo bash -c 'echo "validate_neg_off=yes" >> /etc/nsmb.conf'
sudo bash -c 'echo "mc_on=yes" >> /etc/nsmb.conf'
sudo bash -c 'echo "mc_prefer_wired=yes" >> /etc/nsmb.conf'
sudo bash -c 'echo "dir_cache_off=yes" >> /etc/nsmb.conf'
sudo bash -c 'echo "protocol_vers_map=4" >> /etc/nsmb.conf'
sudo bash -c 'echo "port445=no_netbios" >> /etc/nsmb.conf'
# 查看是否添加成功
cat /etc/nsmb.conf
# 关闭所有内置磁盘的 Spotlight 索引
sudo mdutil -a -i off
# 关闭外部硬盘的 Spotlight 索引
sudo defaults write /Library/Preferences/com.apple.SpotlightServer.plist ExternalVolumesIgnore -bool True
# 防止在网络驱动器上创建.DS_Store 文件
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool TRUE
# 查看开机自启动项目录
open /Library/LaunchDaemons /Library/LaunchAgents ~/Library/LaunchAgents
# 设置主机名和计算机名
sudo scutil --set HostName MBP
sudo scutil --set ComputerName MBP
# 安装 Xcode 命令行工具
xcode-select --install
# 加快 Dock 隐藏/显示的动画速度
defaults write com.apple.dock autohide-time-modifier -float 0.5 && killall Dock
# 升级 Python 的 pip 包管理器
/Library/Developer/CommandLineTools/usr/bin/python3 -m pip install --upgrade pip
# 关闭 CursorUIViewService 防止导致卡顿,并重启
sudo mkdir -p /Library/Preferences/FeatureFlags/Domain && sudo /usr/libexec/PlistBuddy -c "Add 'redesigned_text_cursor:Enabled' bool false" /Library/Preferences/FeatureFlags/Domain/UIKit.plist && sudo shutdown -r now
随手记录,仅供参考。我个人优先追求性能。如果觉得用不到的右上角关闭即可。
# 禁用系统完整性保护(SIP)和认证根卷 - 允许系统级修改,但降低安全性
csrutil disable
csrutil authenticated-root disable
# 降低系统安全限制 - 允许未签名应用和禁用代码验证
sudo nvram boot-args="amfi_allow_any_signature=1 cs_enforcement_disable=1 ipc_control_port_options=0"
sudo defaults write /Library/Preferences/com.apple.security GKAutoRearm -bool NO
sudo defaults write /Library/Preferences/com.apple.security.coderequirements Entitlements -string always
sudo defaults write /Library/Preferences/com.apple.security.coderequirements AllowUnsafeDynamicLinking -bool YES
sudo defaults write /Library/Preferences/com.apple.security.libraryvalidation.plist DisableLibraryValidation -bool YES
# 禁用立即锁屏功能
defaults write com.apple.loginwindow DisableScreenLockImmediate -bool yes
# 禁用应用程序签名验证 - 允许所有来源的应用
sudo spctl --global-disable
# SMB 网络共享优化 - 关闭签名要求,启用多通道功能提高传输速度
sudo bash -c 'echo "[default]" >> /etc/nsmb.conf'
sudo bash -c 'echo "signing_required=no" >> /etc/nsmb.conf'
sudo bash -c 'echo "validate_neg_off=yes" >> /etc/nsmb.conf'
sudo bash -c 'echo "mc_on=yes" >> /etc/nsmb.conf'
sudo bash -c 'echo "mc_prefer_wired=yes" >> /etc/nsmb.conf'
sudo bash -c 'echo "dir_cache_off=yes" >> /etc/nsmb.conf'
sudo bash -c 'echo "protocol_vers_map=4" >> /etc/nsmb.conf'
sudo bash -c 'echo "port445=no_netbios" >> /etc/nsmb.conf'
# 查看是否添加成功
cat /etc/nsmb.conf
# 关闭所有内置磁盘的 Spotlight 索引
sudo mdutil -a -i off
# 关闭外部硬盘的 Spotlight 索引
sudo defaults write /Library/Preferences/com.apple.SpotlightServer.plist ExternalVolumesIgnore -bool True
# 防止在网络驱动器上创建.DS_Store 文件
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool TRUE
# 查看开机自启动项目录
open /Library/LaunchDaemons /Library/LaunchAgents ~/Library/LaunchAgents
# 设置主机名和计算机名
sudo scutil --set HostName MBP
sudo scutil --set ComputerName MBP
# 安装 Xcode 命令行工具
xcode-select --install
# 加快 Dock 隐藏/显示的动画速度
defaults write com.apple.dock autohide-time-modifier -float 0.5 && killall Dock
# 升级 Python 的 pip 包管理器
/Library/Developer/CommandLineTools/usr/bin/python3 -m pip install --upgrade pip
# 关闭 CursorUIViewService 防止导致卡顿,并重启
sudo mkdir -p /Library/Preferences/FeatureFlags/Domain && sudo /usr/libexec/PlistBuddy -c "Add 'redesigned_text_cursor:Enabled' bool false" /Library/Preferences/FeatureFlags/Domain/UIKit.plist && sudo shutdown -r now
新入职的一个公司需要自己带笔记本电脑,求二手办公本推荐
metmit:
1 、现有:
手里有一个无头的 mbp ,只能在家外接显示器用,平时刷题刷视频看慕课写文档绰绰有余,但没拿它看过项目; 有一个拯救者笔记本,配置比较高带公司去太浪费,而且晚上 or 周末想用这台电脑开个虚拟机,编编程序,带来带去也不方便;
2 、需求:
目前工作用 cpp ,想学学 ai ,可能是底层存储 or 部署应用?不知道这对我硬件有什么新的要求,还没了解。 要是现有的拯救者+租用服务器能满足,那就是缺一个单纯带到公司办公的轻薄本; 要是 mbp ( intel CPU )+租用服务器也能满足,那把拯救者长期放公司也行,大概率不能吧?
3 、办公本求推荐:
最好 15/16 寸的屏幕,低压 u 即可,插电用也不挑续航,不知道二手一千多块钱的水平能满足我带到公司流畅看网页、写文档的要求不; 目前看中了联想小新,小新 15-2020/2021 款,r7-5700u 16G 完全够用吧?
睡了,早起去打工 @@