zhang2587341450

zhang2587341450

V2EX 第 307059 号会员,加入于 2018-04-09 11:44:26 +08:00
根据 zhang2587341450 的设置,主题列表被隐藏
二手交易 相关的信息,包括已关闭的交易,不会被隐藏
zhang2587341450 最近回复了
@ob616 中文区感觉 edu 比入正 pro 的人要多,对于 edu 来说,无限请求比 500 次好,即使降智
https://linux.do/t/topic/728603/
确实改了方案。隔壁论坛有人在说
https://www.cursor.com/en/pricing
https://www.cursor.com/cn/pricing

官网 price 页面确实改了。中文/英文都改了。
怀疑是不是 cursor 受 claude code 和 argument code 影响比较大,要打价格战了。
<img src="https://img.picui.cn/free/2025/06/17/6851227728f2c.png" alt="1750147704863.png" title="1750147704863.png" />
后台还是显示有请求次数限制。
[img]https://img.picui.cn/free/2025/06/17/6851227728f2c.png[/img]

另外官方文档中依然显示有请求次数限制。
https://docs.cursor.com/account/plans-and-usage
196 天前
回复了 zhang2587341450 创建的主题 NAS 要不要从 FnOS 回到群晖?
@Geon97 黑群比较时间更久点,也许再过一两年,飞牛的生态会更好点
196 天前
回复了 zhang2587341450 创建的主题 NAS 要不要从 FnOS 回到群晖?
@justsomac 确实飞牛的优点(App/远程访问/外链分享)还是很好用的,群晖能解决的就是备份和文件夹/用户管理了
196 天前
回复了 zhang2587341450 创建的主题 NAS 要不要从 FnOS 回到群晖?
@lanisle 是的,还是选择留在飞牛吧, 群晖手机 App 相差太远了,出差并不方便
288 天前
回复了 zljklang 创建的主题 宽带症候群 爱快软路由 root 版本
iKuai 的新版 docker 做了限制
- 对新建的容器执行挂载路径检查,只允许在/etc/disk_user 目录下,也就是 web 上面的目录,发现跨目录,直接 false 掉,无法新建

__check_srcpath()
{
local ROOT_PATH="/etc/disk_user"
local srcpaths="$1"
for path_dir in ${srcpaths//,/ }; do
local path_dir=${path_dir//:*/}

if [ "$path_dir" = "/" ]; then
echo "$path_dir not found"
return 1
fi

local tmp_dir=${path_dir//\.\./}
if [ "$tmp_dir" != "$path_dir" ]; then
echo "$path_dir not found"
return 1
fi

local abs_path="${ROOT_PATH}${path_dir}"

if [ ! -e "$abs_path" ]; then
echo "$path_dir not found"
return 1
fi
local dir_arry=(${path_dir//\// })
local hardlink=$(readlink ${ROOT_PATH}/${dir_arry[0]})

if [ ! -d "$hardlink" ]; then
echo "$path_dir not found"
return 1
fi
local i=0
for dir_one in ${dir_arry[*]}; do
i=$((i+1))
[ "$i" = "1" ] && continue
hardlink+="/$dir_one"
done
if [ ! -e "$hardlink" ]; then
echo "$path_dir not found"
return 1
fi
done
}

- 对原有 Docker 容器的配置文件进行挂载路径检查,发现源路径异常后修改配置文件,取消所有挂载点

__check_config_json()
{
local config_path="$work_path/lib/containers"
for config_one in $(ls $config_path); do
local config_path_one="$config_path/$config_one/config.v2.json"
for mount_one in $(cat $config_path_one |jq .MountPoints|grep "\"Source\"": | awk '{print $2}');
do
[ "$mount_one" ] || continue
local invalid=0
if [ "${mount_one:1:15}" != "/etc/disk_user/" ]; then
invalid=1
fi
if [ "${mount_one//\.\./}" != "$mount_one" ]; then
invalid=1
fi
if [ "$invalid" = "1" ]; then
chattr -i $config_path_one
chattr -a $config_path_one
cat $config_path_one | jq '.MountPoints = {}' > /tmp/config.$$
mv /tmp/config.$$ $config_path_one
fi
done
done
}
关于   ·   帮助文档   ·   自助推广系统   ·   博客   ·   API   ·   FAQ   ·   Solana   ·   815 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 13ms · UTC 18:30 · PVG 02:30 · LAX 11:30 · JFK 14:30
♥ Do have faith in what you're doing.