Rirmach

Results 12 comments of Rirmach

手动安装,以下 service 脚本仅供参考 ```shell #!/bin/sh /etc/rc.common # /etc/init.d/xray enable START=91 STOP=89 USE_PROCD=1 LimitNOFILE=1048576 LimitNPROC=512 PID_DIR=/var/run NAME=xray PID_FILE=$PID_DIR/$NAME.pid check_running() { if [ -r $PID_FILE ]; then read -r PID /dev/null 2>&1...

I can't agree more. Maybe just an extra "button" to switch to vertical display without auto-rotation on?

Now I have to use this ***ugly*** script as well as crontab to solve. ```shell #!/bin/bash log_file=/var/log/gammu/gammu-smsd-$1.log last_line=$(tail -1 $log_file) sub='DEVICEWRITEERROR' if [[ "$last_line" == *"$sub"* ]]; then systemctl restart...

1. For data using, music streaming takes up most so we could concentrate on optimizing caching mechanism. 2. Maybe we could design the caching mechanism more specifically, e.g., based on...

Maybe "up next" means "insert at top", as well as changing the order of queue? Maybe I have a playlist that has an order according to my preference, up next...

Thanks a lot for your advice! Yes, indexing using alphabet helps. But what I concern are 2 things: * Compatibility of non-English language. I've used Synology DS audio but it...

After re-considering this solution, I think that maybe "sorting" still contains problem. Sorting heavily depends on languages. We can choose alphabet-order for English, Pinyin for Chinese. But what about Japanese...

> 疑问,你是每次 **NAS 的公网 IP 更新后进入 APP** 都会触发这个bug吗? > > 其次,我是动态ipv4公网,也是通过ddns动态更新的,暂时没有遇到这个问题。 > > 另外,**在 NAS 的公网 IP 更新后进入 APP** 这个是公网ip更新后大概多久进的app呢?也许我可以尝试复现一下,但是一般动态公网更新是不是都是在半夜了(仅从我个人收到ip更新的邮件时间来看)? > > 还有,我感觉你的推测不是很靠谱。**若系统设置的 DNS 服务器的缓存并未随之更新,则可能在家宽的公网 IP 更新后返回其缓存中过期的 IP 地址** ,如果系统设置的DNS服务器的缓存没有更新,不太可能就在你重启APP这么短的时间内刚好更新了吧(除非公网ip刚刚更新)?至于推测二,如果这个推测成立,我觉得他不会因为重启APP而修复,而是应该每次打开APP都失败。...

> 运营商给你分配了不止一个IPv6地址吗? /64 段,然后自己写的动态出站程序,实际的出站IP会从里边随机生成一个。 每次重新拨号的时候会有一段不稳定的状态,这个时候默认出站IP由系统分配,等到生成了出站IP并且更新了路由表以后新的出站IP就会生效,这中间存在不稳定状态。