en
Feedback
丁真主频道

丁真主频道

Open in Telegram

📈 Analytical overview of Telegram channel 丁真主频道

Channel 丁真主频道 (@dzyydsa91) in the Chinese language segment is an active participant. Currently, the community unites 17 333 subscribers, ranking 7 341 in the Technologies & Applications category and 12 888 in the China region.

📊 Audience metrics and dynamics

Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 17 333 subscribers.

According to the latest data from 05 September, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by -241 over the last 30 days and by -6 over the last 24 hours, overall reach remains high.

  • Verification status: Not verified
  • Engagement rate (ER): The average audience engagement rate is 9.33%. Within the first 24 hours after publication, content typically collects 3.65% reactions from the total number of subscribers.
  • Post reach: On average, each post receives 1 617 views. Within the first day, a publication typically gains 633 views.
  • Reactions and interaction: The audience actively supports content: the average number of reactions per post is 14.
  • Thematic interests: Content is focused on key topics such as 12点, pubgm, 三角洲, 虚拟机, cool.

📝 Description and content policy

The author describes the resource as a platform for expressing subjective opinions:
😨👋🐔

Thanks to the high frequency of updates (latest data received on 06 September, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Technologies & Applications category.

17 333
Subscribers
-624 hours
-507 days
-24130 days

Data loading in progress...

Attracting Subscribers
September '26
September '260
in 0 channels
August '26
+63
in 6 channels
Get PRO
July '26
+141
in 9 channels
Get PRO
June '26
+358
in 1 channels
Get PRO
May '26
+103
in 14 channels
Get PRO
April '26
+853
in 21 channels
Get PRO
March '26
+246
in 15 channels
Get PRO
February '26
+539
in 18 channels
Get PRO
January '26
+524
in 12 channels
Get PRO
December '25
+113
in 9 channels
Get PRO
November '25
+358
in 15 channels
Get PRO
October '25
+452
in 19 channels
Get PRO
September '25
+603
in 22 channels
Get PRO
August '25
+995
in 25 channels
Get PRO
July '25
+1 208
in 20 channels
Get PRO
June '25
+758
in 16 channels
Get PRO
May '25
+2 631
in 36 channels
Get PRO
April '25
+1 532
in 22 channels
Get PRO
March '25
+955
in 14 channels
Get PRO
February '25
+660
in 5 channels
Get PRO
January '25
+791
in 12 channels
Get PRO
December '24
+85
in 4 channels
Get PRO
November '24
+560
in 7 channels
Get PRO
October '24
+665
in 24 channels
Get PRO
September '24
+626
in 7 channels
Get PRO
August '24
+855
in 20 channels
Get PRO
July '24
+474
in 11 channels
Get PRO
June '24
+170
in 9 channels
Get PRO
May '24
+390
in 4 channels
Get PRO
April '24
+180
in 2 channels
Get PRO
March '24
+624
in 8 channels
Get PRO
February '24
+336
in 8 channels
Get PRO
January '24
+474
in 6 channels
Get PRO
December '23
+285
in 5 channels
Get PRO
November '23
+186
in 3 channels
Get PRO
October '23
+46
in 0 channels
Get PRO
September '23
+757
in 0 channels
Date
Subscriber Growth
Mentions
Channels
06 September0
05 September0
04 September0
03 September0
02 September0
01 September0
Channel Posts
# 放宽后台限制 settings put global app_standby_enabled 0 2>/dev/null settings put global activity_manager_constants "max_phantom_processes=65536" 2>/dev/null device_config put activity_manager max_phantom_processes 65536 2>/dev/null fi # 将终端应用加入后台白名单(根据实际包名修改,这里假设为 com.termux) appops set com.termux RUN_IN_BACKGROUND allow 2>/dev/null appops set com.termux RUN_ANY_IN_BACKGROUND allow 2>/dev/null } # -------------------- 主流程 -------------------- check_log_size log_write "========== 脚本启动 ==========" wait_until_login log_write "屏幕已解锁,等待3秒..." sleep 3 log_write "首次启动 UU远程" start_app || log_write "⚠️ 首次启动失败,监控循环将继续尝试" optimize_system # -------------------- 监控循环 -------------------- log_write "进入监控模式(间隔${CHECK_INTERVAL}s,强制间隔${FORCE_INTERVAL}s)" counter=0 while true; do # 刷新唤醒锁 echo "UUAutoStart_wakelock" > /sys/power/wake_lock 2>/dev/null # 检测进程 if ! pgrep -f "com.netease.uuremote" >/dev/null 2>&1 && ! ps -ef | grep -v grep | grep -q "com.netease.uuremote"; then log_write "⚠️ 应用被杀死,尝试重启..." if start_app; then log_write "✅ 重启成功" # 调整新进程优先级 local new_pid=$(pgrep -f com.netease.uuremote | head -1) [ -n "$new_pid" ] && echo -1000 > /proc/$new_pid/oom_score_adj 2>/dev/null else log_write "❌ 重启失败" fi fi # 每2天强制启动 counter=$((counter + CHECK_INTERVAL)) if [ $counter -ge $FORCE_INTERVAL ]; then log_write "🔄 定期强制启动" start_app counter=0 fi # 日志大小检查 [ $((counter % (CHECK_INTERVAL * 10))) -eq 0 ] && check_log_size sleep $CHECK_INTERVAL done & `

2
`C #!/system/bin/sh # ============================================================ # 脚本:UU远程自启动与保活(针对应用启动失败增强版) # 适用:一加平板 Pro (OxygenOS/ColorOS,Android 16) # 核心:多种启动方式 + 强制解冻 + 详细日志 # ============================================================ # -------------------- 配置 -------------------- LOG_FILE="/storage/emulated/0/UU远程自启动.log" MAX_LOG_SIZE=16384 CHECK_INTERVAL=30 FORCE_INTERVAL=172800 # -------------------- 日志函数 -------------------- log_write() { echo "[$(date '+%Y-%m-%d %H:%M:%S')] $1" >> "$LOG_FILE" log -p i -t UUAutoStart "$1" } check_log_size() { [ -f "$LOG_FILE" ] || return local size=$(du -k "$LOG_FILE" | cut -f1) [ "$size" -gt "$MAX_LOG_SIZE" ] && { mv "$LOG_FILE" "${LOG_FILE}.old" log_write "日志归档" } } # -------------------- 等待解锁 -------------------- wait_until_login() { while [ "$(getprop sys.boot_completed)" != "1" ]; do sleep 1; done local test_file="/data/local/tmp/.PERMISSION_TEST" rm -f "$test_file" 2>/dev/null while true; do touch "$test_file" 2>/dev/null && break sleep 1 done rm -f "$test_file" 2>/dev/null log_write "解锁检测通过" } # ============================================================ # 核心:启动应用(多重保险) # ============================================================ start_app() { local pkg="com.netease.uuremote" local err_file="/tmp/uu_start_error.log" local success=0 # 1. 先强制唤醒屏幕(确保系统活跃) input keyevent KEYCODE_WAKEUP 2>/dev/null sleep 1 # 2. 清除应用可能存在的冻结状态 am force-stop "$pkg" 2>/dev/null pm enable "$pkg" 2>/dev/null sleep 1 # 3. 尝试多种启动方式(按优先级) # 方式 A:标准 am start(带 clear-task 和 new-task 标志) log_write "尝试 am start..." am start -n "$pkg/com.remote.app.ui.activity.ComposeMainActivity" \ -f 0x10000000 --activity-clear-task --activity-new-task \ >/dev/null 2>"$err_file" if [ $? -eq 0 ]; then log_write "✅ am start 成功" return 0 fi # 若 Activity 名称失效,用包名启动 am start -p "$pkg" -f 0x10000000 --activity-clear-task --activity-new-task \ >/dev/null 2>"$err_file" [ $? -eq 0 ] && { log_write "✅ am start (by package) 成功"; return 0; } # 方式 B:monkey 模拟点击 log_write "尝试 monkey..." monkey -p "$pkg" -c android.intent.category.LAUNCHER 1 >/dev/null 2>"$err_file" [ $? -eq 0 ] && { log_write "✅ monkey 成功"; return 0; } # 方式 C:pm launch log_write "尝试 pm launch..." pm launch "$pkg" >/dev/null 2>"$err_file" [ $? -eq 0 ] && { log_write "✅ pm launch 成功"; return 0; } # 方式 D:使用 input 模拟点击桌面图标(需获取坐标,这里给出通用示例) # 需提前用 `dumpsys window windows | grep -i uuremote` 获取坐标,此处不展开 # 若前面均失败,则尝试通过 intent 发送广播启动(某些应用支持) log_write "尝试 broadcast intent..." am broadcast -a android.intent.action.MAIN -c android.intent.category.LAUNCHER \ -n "$pkg/com.remote.app.ui.activity.ComposeMainActivity" \ >/dev/null 2>"$err_file" [ $? -eq 0 ] && { log_write "✅ broadcast 成功"; return 0; } # 所有方式失败,记录详细错误 log_write "❌ 启动失败,最后错误内容:" cat "$err_file" | while read line; do log_write " $line"; done return 1 } # -------------------- 系统优化(通用 + 一加) -------------------- optimize_system() { # 唤醒锁 echo "UUAutoStart_wakelock" > /sys/power/wake_lock 2>/dev/null && log_write "✅ WakeLock" || log_write "⚠️ WakeLock 失败" # OOM 优先级调整 echo -1000 > /proc/$$/oom_score_adj 2>/dev/null && log_write "✅ 自身 OOM" || log_write "⚠️ OOM 失败" local uu_pid=$(pgrep -f com.netease.uuremote | head -1) [ -n "$uu_pid" ] && echo -1000 > /proc/$uu_pid/oom_score_adj 2>/dev/null # 一加专用 if [ "$(getprop ro.product.brand)" = "OnePlus" ] || [ "$(getprop ro.product.brand)" = "OPPO" ]; then log_write "一加设备:尝试禁用 Athena" pm disable com.oplus.athena 2>/dev/null && log_write "✅ Athena 禁用" || log_write "⚠️ Athena 禁用失败"
2
3
deepsek牛逼已经一个星期没杀后台了
deepsek牛逼已经一个星期没杀后台了
644
4
面子如泉水,取之不尽用之不竭
639
5
No text...
743
6
发送用户名
16
7
?这个uu远程开机怎么这么奇葩🤡+1
?这个uu远程开机怎么这么奇葩🤡
1 323
8
原码
550
9
InlineHook.zip
1 624
10
无法评价
无法评价
552
11
🤤🤤🤤
🤤🤤🤤
1 548
12
白色風車.mp3
1 867
13
你们的丁真被我拐跑啦
1 826
14
说我⭕的有福了😂
说我⭕的有福了😂
1 829
15
怎么很久之前加的作弊频道变成了🌿弊频道😅
120
16
No text...
1 778
17
丁真中元节快乐
67
18
case16日记.log
1 968
19
完蛋了这个我真想要🤤
完蛋了这个我真想要🤤
2 171
20
zdzz是手持忘记发了
501