-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeed.rss
2492 lines (1914 loc) · 173 KB
/
feed.rss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
>
<channel>
<title>APP喵</title>
<atom:link href="https://www.appmiu.com/feed" rel="self" type="application/rss+xml" />
<link>https://www.appmiu.com</link>
<description>软件猫,发现互联网有趣好用的软件资源</description>
<lastBuildDate>Wed, 13 Nov 2024 08:28:50 +0000</lastBuildDate>
<language>zh-Hans</language>
<sy:updatePeriod>
hourly </sy:updatePeriod>
<sy:updateFrequency>
1 </sy:updateFrequency>
<generator>https://wordpress.org/?v=6.7</generator>
<image>
<url>https://www.appmiu.com/wp-content/uploads/2023/03/20230318045039758-32x32.png</url>
<title>APP喵</title>
<link>https://www.appmiu.com</link>
<width>32</width>
<height>32</height>
</image>
<item>
<title>破晓电影:完美影视磁力站,提供最新的电影和电视剧资源,网站支持多种类别的影片,结合115或PikPak使用可以极大提升观影体验</title>
<link>https://www.appmiu.com/28077.html</link>
<comments>https://www.appmiu.com/28077.html#respond</comments>
<dc:creator><![CDATA[Root]]></dc:creator>
<pubDate>Wed, 13 Nov 2024 08:28:40 +0000</pubDate>
<category><![CDATA[网站]]></category>
<category><![CDATA[免费]]></category>
<category><![CDATA[在线观影]]></category>
<category><![CDATA[影视]]></category>
<category><![CDATA[电影]]></category>
<category><![CDATA[电视剧]]></category>
<category><![CDATA[磁力下载]]></category>
<guid isPermaLink="false">https://www.appmiu.com/?p=28077</guid>
<description><![CDATA[本文更新于: 2024年11月13日 APP喵前言:大家好,我是阿喵!今天想给大家推荐一个非常不错的影视磁力站——破晓电影。在这里,不仅能找到最新的电影和电视剧,而且结合115或PikPak使用,真的是观影的最佳选择,适合喜欢追剧的小伙伴们哦! 网站简介 破晓电影是一个影视磁力站,提供最新的电影和电视剧资源,用户可以方便地在线观看或下载。网站支持多种类别的影片,结合115或PikPak使用,极大提升了下载和观影体验,适合各类影视爱好者。 截图 特色 网站地址 https://www.poxiao.com 下载权限查<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h2>相关文章:</h2><ol>
<li><a href="https://www.appmiu.com/18769.html" rel="bookmark" title="迅雷电影天堂,电影电视剧下载网站">迅雷电影天堂,电影电视剧下载网站</a></li>
<li><a href="https://www.appmiu.com/26897.html" rel="bookmark" title="爱看影院:影视资源在线观看网站,提供电影、电视剧、综艺、动漫和纪录片等影视作品,紧跟影视市场动态,及时更新最新影视作品">爱看影院:影视资源在线观看网站,提供电影、电视剧、综艺、动漫和纪录片等影视作品,紧跟影视市场动态,及时更新最新影视作品</a></li>
<li><a href="https://www.appmiu.com/26932.html" rel="bookmark" title="缘觉影视:影视网站,支持在线观看和多种下载方式,如网盘、磁力链接等,网站界面干净,允许用户在首页关闭广告">缘觉影视:影视网站,支持在线观看和多种下载方式,如网盘、磁力链接等,网站界面干净,允许用户在首页关闭广告</a></li>
</ol>
</div>
]]></description>
<content:encoded><![CDATA[<p class="post-modified-info">本文更新于: 2024年11月13日 </p>
<p>APP喵前言:大家好,我是阿喵!今天想给大家推荐一个非常不错的<a href="https://www.appmiu.com/tag/%e5%bd%b1%e8%a7%86" title="View all posts in 影视" target="_blank">影视</a>磁力站——破晓<a href="https://www.appmiu.com/tag/%e7%94%b5%e5%bd%b1" title="View all posts in 电影" target="_blank">电影</a>。在这里,不仅能找到最新的<a href="https://www.appmiu.com/tag/%e7%94%b5%e5%bd%b1" title="View all posts in 电影" target="_blank">电影</a>和<a href="https://www.appmiu.com/tag/%e7%94%b5%e8%a7%86%e5%89%a7" title="View all posts in 电视剧" target="_blank">电视剧</a>,而且结合115或PikPak使用,真的是观影的最佳选择,适合喜欢追剧的小伙伴们哦!</p>
<h2 class="wp-block-heading"><a href="https://www.appmiu.com/tag/%e7%bd%91%e7%ab%99" title="View all posts in 网站" target="_blank">网站</a>简介</h2>
<p>破晓电影是一个<a href="https://www.appmiu.com/tag/%e5%bd%b1%e8%a7%86" title="View all posts in 影视" target="_blank">影视</a>磁力站,提供最新的电影和电视剧资源,用户可以方便地在线观看或下载。<a href="https://www.appmiu.com/tag/%e7%bd%91%e7%ab%99" title="View all posts in 网站" target="_blank">网站</a>支持多种类别的影片,结合115或PikPak使用,极大提升了下载和观影体验,适合各类<a href="https://www.appmiu.com/tag/%e5%bd%b1%e8%a7%86" title="View all posts in 影视" target="_blank">影视</a>爱好者。</p>
<h3 class="wp-block-heading">截图</h3>
<figure class="wp-block-image size-full"><img alt="破晓电影:完美影视磁力站,提供最新的电影和电视剧资源,网站支持多种类别的影片,结合115或PikPak使用可以极大提升观影体验-APP喵"title="破晓电影:完美影视磁力站,提供最新的电影和电视剧资源,网站支持多种类别的影片,结合115或PikPak使用可以极大提升观影体验-APP喵" fetchpriority="high" decoding="async" width="1446" height="950" src="https://www.appmiu.com/wp-content/uploads/2024/11/241112_131910.png" alt="" class="wp-image-28078"/></figure>
<h3 class="wp-block-heading">特色</h3>
<ul class="wp-block-list">
<li>海量资源:最新电影和电视剧,分类齐全,方便查找。</li>
<li><a href="https://www.appmiu.com/tag/%e7%a3%81%e5%8a%9b%e4%b8%8b%e8%bd%bd" title="View all posts in 磁力下载" target="_blank">磁力下载</a>:支持通过磁力链接进行下载,方便快捷。</li>
<li>高清视频:提供高清资源,确保观影体验。</li>
<li>用户友好:界面简洁,操作简单,适合各类用户。</li>
<li>定期更新:及时更新最新影视资源,保持内容新鲜。</li>
</ul>
<h2 class="wp-block-heading"><a href="https://www.appmiu.com/tag/%e7%bd%91%e7%ab%99" title="View all posts in 网站" target="_blank">网站</a>地址</h2>
<p><a target="_blank" rel="nofollow noopener noreferrer" href="https://www.appmiu.com/go/t4kj" rel="nofollow">https://www.poxiao.com</a></p>
<div class="download-box mg-b" id="download-box" ref="downloadBox">
<div>
<div class="down-ready">
<div class="download-list gujia" ref="gujia">
<div class="download-item">
<div class="download-thumb" style="'background-image: url();'">
</div>
<div class="download-rights">
<div class="download-rights-title"><span class="gujia-bg"></span></div>
<ul>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
</ul>
</div>
<div class="download-info">
<div class="download-rights-title"><span class="gujia-bg"></span></div>
<ul>
</ul>
<div class="download-current">
<div class=""></div>
</div>
<div class="download-button-box">
<div class=""></div>
<div class=""></div>
<div class=""></div>
</div>
</div>
</div>
</div>
</div>
<div class="download-list" v-cloak>
<div v-for="(item,index) in list" :class="'download-item b2-radius '+(item.current_user.can.allow ? 'allow-down' : 'not-allow-down')" v-show="picked == index" v-cloak>
<div class="download-rights" v-cloak>
<div class="download-rights-title"><i class="b2font b2-download-cloud-line1 "></i>下载权限</div><span class="mobile-show" @click="item.show_role = !item.show_role">查看</span>
<ul v-if="item.show_role">
<li v-for="right in item.rights" :class="right.lv == item.current_user.lv.lv.lv || right.lv == item.current_user.lv.vip.lv ? 'red' : ''">
<div><span v-text="right.lv_name+':'"></span></div>
<div v-if="right.type == 'money'">¥<span v-text="right.value"></span></div>
<div v-if="right.type == 'credit'"><i class="b2font b2-coin-line "></i><span v-text="right.value"></span></div>
<div v-if="right.type == 'free'">免费下载</div>
<div v-if="right.type == 'comment'">评论并刷新后下载</div>
<div v-if="right.type == 'login'">登录后下载</div>
</li>
</ul>
</div>
<div class="download-info">
<div class="download-rights-title"><span v-text="item.name"></span><a :href="item.view" target="_blank" class="download-view button empty text" v-if="item.view">查看演示<i class="b2font b2-arrow-right-s-line "></i></a></div>
<ul v-show="item.attrs.length >0">
<li v-for="attr in item.attrs">
<span class="download-attr-name">{{attr.name}}:</span>
<span v-html="attr.value"></span>
</li>
</ul>
<div class="download-current">
<span>您当前的等级为</span>
<span v-if="item.current_user.lv.lv" v-html="item.current_user.lv.lv.icon"></span>
<span v-if="item.current_user.lv.vip" v-html="item.current_user.lv.vip.icon"></span>
<div class="" v-if="!item.current_user.can.allow">
<span v-if="item.current_user.can.type == 'login'">
登录后免费下载<a href="javascript:void(0)" onclick="login.show = true;login.loginType = 1">登录</a>
</span>
<span v-else-if="item.current_user.lv.lv.lv == 'dark_room'">
小黑屋反思中,不准下载!
</span>
<span v-else-if="item.current_user.can.type == 'comment'">
评论后刷新页面下载<a href="#respond">评论</a>
</span>
<span v-else-if="item.current_user.lv.lv.lv == 'guest' && !item.current_user.guest">
<span v-show="list[index].rights[0].lv == 'all'" v-cloak>支付<b><template v-if="item.current_user.can.type == 'credit'"><i class="b2font b2-coin-line "></i></template><template v-else>¥</template><i v-html="list[index].current_user.can.value"></i></b>以后下载</span>
请先<a href="javascript:void(0)" onclick="login.show = true;login.loginType = 1">登录</a>
</span>
<span v-else-if="item.current_user.can.type == 'full'" class="green">
您今天的下载次数(<b v-text="item.current_user.can.total_count"></b>次)用完了,请明天再来
</span>
<span v-else-if="item.current_user.can.type == 'credit'">
支付积分<b><i class="b2font b2-coin-line "></i><i v-html="list[index].current_user.can.value"></i></b>以后下载<a href="javascript:void(0)" @click="credit(index)">立即支付</a>
</span>
<span v-else-if="item.current_user.can.type == 'money'">
支付<b v-text="'¥'+list[index].current_user.can.value"></b>以后下载<a href="javascript:void(0)" @click="pay(index)">立即支付</a>
</span>
<span v-else>
您当前的用户组不允许下载<a href="https://www.appmiu.com/vips" target="_blank">升级会员</a>
</span>
</div>
<div class="" v-else>
<span v-if="item.current_user.current_guest == 0 || item.current_user.can.free_down" class="green">
您已获得下载权限
</span>
<span class="green" v-else>
您可以每天下载资源<b v-text="item.current_user.can.total_count"></b>次,今日剩余<b v-text="item.current_user.can.count"></b>次
</span>
</div>
</div>
<div class="download-button-box">
<button @click="go(b.link,item.current_user.can.allow,item,index)" class="button" v-text="b.name" v-for="b in item.button"></button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h2>相关文章:</h2><ol>
<li><a href="https://www.appmiu.com/18769.html" rel="bookmark" title="迅雷电影天堂,电影电视剧下载网站">迅雷电影天堂,电影电视剧下载网站</a></li>
<li><a href="https://www.appmiu.com/26897.html" rel="bookmark" title="爱看影院:影视资源在线观看网站,提供电影、电视剧、综艺、动漫和纪录片等影视作品,紧跟影视市场动态,及时更新最新影视作品">爱看影院:影视资源在线观看网站,提供电影、电视剧、综艺、动漫和纪录片等影视作品,紧跟影视市场动态,及时更新最新影视作品</a></li>
<li><a href="https://www.appmiu.com/26932.html" rel="bookmark" title="缘觉影视:影视网站,支持在线观看和多种下载方式,如网盘、磁力链接等,网站界面干净,允许用户在首页关闭广告">缘觉影视:影视网站,支持在线观看和多种下载方式,如网盘、磁力链接等,网站界面干净,允许用户在首页关闭广告</a></li>
</ol>
</div>
]]></content:encoded>
<wfw:commentRss>https://www.appmiu.com/28077.html/feed</wfw:commentRss>
<slash:comments>0</slash:comments>
</item>
<item>
<title>躺平计算器:您的未来财务规划工具,通过输入您的消费水平和财务数据,帮助您了解未来的财务状况,为您提供有价值的参考</title>
<link>https://www.appmiu.com/28088.html</link>
<comments>https://www.appmiu.com/28088.html#respond</comments>
<dc:creator><![CDATA[Root]]></dc:creator>
<pubDate>Wed, 13 Nov 2024 07:54:47 +0000</pubDate>
<category><![CDATA[网站]]></category>
<category><![CDATA[储蓄]]></category>
<category><![CDATA[投资]]></category>
<category><![CDATA[消费水平]]></category>
<category><![CDATA[财务规划]]></category>
<category><![CDATA[退休规划]]></category>
<guid isPermaLink="false">https://www.appmiu.com/?p=28088</guid>
<description><![CDATA[本文更新于: 2024年11月13日 APP喵前言:大家好,我是阿喵!今天要向大家推荐一个非常实用的财务规划工具——躺平计算器。这个工具可以根据您的消费水平和财务数据,帮助您预测未来的财务状况,让您更好地规划人生和财务目标。 网站简介 躺平计算器是一个财务规划工具,通过输入您的消费水平和财务数据,帮助您了解未来的财务状况。无论是储蓄、投资还是退休规划,这个工具都能为您提供有价值的参考。 截图 特色 个性化规划:根据您的具体消费水平和财务状况,提供定制化的未来财务预测。 易于使用:界面友好,操作简单,适合各类用户。<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h2>相关文章:</h2><ol>
<li><a href="https://www.appmiu.com/22002.html" rel="bookmark" title="AI Anime Filter:AI 动漫滤镜,将照片转换成动漫风格">AI Anime Filter:AI 动漫滤镜,将照片转换成动漫风格</a></li>
<li><a href="https://www.appmiu.com/22036.html" rel="bookmark" title="图片翻译:Chrome 浏览器扩展">图片翻译:Chrome 浏览器扩展</a></li>
<li><a href="https://www.appmiu.com/22163.html" rel="bookmark" title="httpsok:自动续签 HTTPS 证书的工具,站长SSL神器">httpsok:自动续签 HTTPS 证书的工具,站长SSL神器</a></li>
</ol>
</div>
]]></description>
<content:encoded><![CDATA[<p class="post-modified-info">本文更新于: 2024年11月13日 </p>
<p>APP喵前言:大家好,我是阿喵!今天要向大家推荐一个非常实用的<a href="https://www.appmiu.com/tag/%e8%b4%a2%e5%8a%a1%e8%a7%84%e5%88%92" title="View all posts in 财务规划" target="_blank">财务规划</a>工具——躺平计算器。这个工具可以根据您的<a href="https://www.appmiu.com/tag/%e6%b6%88%e8%b4%b9%e6%b0%b4%e5%b9%b3" title="View all posts in 消费水平" target="_blank">消费水平</a>和财务数据,帮助您预测未来的财务状况,让您更好地规划人生和财务目标。</p>
<h2 class="wp-block-heading">网站简介</h2>
<p>躺平计算器是一个<a href="https://www.appmiu.com/tag/%e8%b4%a2%e5%8a%a1%e8%a7%84%e5%88%92" title="View all posts in 财务规划" target="_blank">财务规划</a>工具,通过输入您的<a href="https://www.appmiu.com/tag/%e6%b6%88%e8%b4%b9%e6%b0%b4%e5%b9%b3" title="View all posts in 消费水平" target="_blank">消费水平</a>和财务数据,帮助您了解未来的财务状况。无论是<a href="https://www.appmiu.com/tag/%e5%82%a8%e8%93%84" title="View all posts in 储蓄" target="_blank">储蓄</a>、<a href="https://www.appmiu.com/tag/%e6%8a%95%e8%b5%84" title="View all posts in 投资" target="_blank">投资</a>还是<a href="https://www.appmiu.com/tag/%e9%80%80%e4%bc%91%e8%a7%84%e5%88%92" title="View all posts in 退休规划" target="_blank">退休规划</a>,这个工具都能为您提供有价值的参考。</p>
<h3 class="wp-block-heading">截图</h3>
<figure class="wp-block-image size-full"><img alt="躺平计算器:您的未来财务规划工具,通过输入您的消费水平和财务数据,帮助您了解未来的财务状况,为您提供有价值的参考-APP喵"title="躺平计算器:您的未来财务规划工具,通过输入您的消费水平和财务数据,帮助您了解未来的财务状况,为您提供有价值的参考-APP喵" decoding="async" width="1443" height="984" src="https://www.appmiu.com/wp-content/uploads/2024/11/241112_133554.png" alt="" class="wp-image-28089"/></figure>
<h3 class="wp-block-heading">特色</h3>
<p><strong>个性化规划</strong>:根据您的具体消费水平和财务状况,提供定制化的未来财务预测。 <strong>易于使用</strong>:界面友好,操作简单,适合各类用户。 <strong>深度分析</strong>:帮助用户分析<a href="https://www.appmiu.com/tag/%e5%82%a8%e8%93%84" title="View all posts in 储蓄" target="_blank">储蓄</a>和投资策略,优化财务管理。 <strong>未来展望</strong>:清晰展示未来财务状况,帮助用户制定长期计划。</p>
<h2 class="wp-block-heading">网站地址</h2>
<p><a target="_blank" rel="nofollow noopener noreferrer" href="https://www.appmiu.com/go/6fzp" rel="nofollow">https://retire.money</a></p>
<div class="download-box mg-b" id="download-box" ref="downloadBox">
<div>
<div class="down-ready">
<div class="download-list gujia" ref="gujia">
<div class="download-item">
<div class="download-thumb" style="'background-image: url();'">
</div>
<div class="download-rights">
<div class="download-rights-title"><span class="gujia-bg"></span></div>
<ul>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
</ul>
</div>
<div class="download-info">
<div class="download-rights-title"><span class="gujia-bg"></span></div>
<ul>
</ul>
<div class="download-current">
<div class=""></div>
</div>
<div class="download-button-box">
<div class=""></div>
<div class=""></div>
<div class=""></div>
</div>
</div>
</div>
</div>
</div>
<div class="download-list" v-cloak>
<div v-for="(item,index) in list" :class="'download-item b2-radius '+(item.current_user.can.allow ? 'allow-down' : 'not-allow-down')" v-show="picked == index" v-cloak>
<div class="download-rights" v-cloak>
<div class="download-rights-title"><i class="b2font b2-download-cloud-line1 "></i>下载权限</div><span class="mobile-show" @click="item.show_role = !item.show_role">查看</span>
<ul v-if="item.show_role">
<li v-for="right in item.rights" :class="right.lv == item.current_user.lv.lv.lv || right.lv == item.current_user.lv.vip.lv ? 'red' : ''">
<div><span v-text="right.lv_name+':'"></span></div>
<div v-if="right.type == 'money'">¥<span v-text="right.value"></span></div>
<div v-if="right.type == 'credit'"><i class="b2font b2-coin-line "></i><span v-text="right.value"></span></div>
<div v-if="right.type == 'free'">免费下载</div>
<div v-if="right.type == 'comment'">评论并刷新后下载</div>
<div v-if="right.type == 'login'">登录后下载</div>
</li>
</ul>
</div>
<div class="download-info">
<div class="download-rights-title"><span v-text="item.name"></span><a :href="item.view" target="_blank" class="download-view button empty text" v-if="item.view">查看演示<i class="b2font b2-arrow-right-s-line "></i></a></div>
<ul v-show="item.attrs.length >0">
<li v-for="attr in item.attrs">
<span class="download-attr-name">{{attr.name}}:</span>
<span v-html="attr.value"></span>
</li>
</ul>
<div class="download-current">
<span>您当前的等级为</span>
<span v-if="item.current_user.lv.lv" v-html="item.current_user.lv.lv.icon"></span>
<span v-if="item.current_user.lv.vip" v-html="item.current_user.lv.vip.icon"></span>
<div class="" v-if="!item.current_user.can.allow">
<span v-if="item.current_user.can.type == 'login'">
登录后免费下载<a href="javascript:void(0)" onclick="login.show = true;login.loginType = 1">登录</a>
</span>
<span v-else-if="item.current_user.lv.lv.lv == 'dark_room'">
小黑屋反思中,不准下载!
</span>
<span v-else-if="item.current_user.can.type == 'comment'">
评论后刷新页面下载<a href="#respond">评论</a>
</span>
<span v-else-if="item.current_user.lv.lv.lv == 'guest' && !item.current_user.guest">
<span v-show="list[index].rights[0].lv == 'all'" v-cloak>支付<b><template v-if="item.current_user.can.type == 'credit'"><i class="b2font b2-coin-line "></i></template><template v-else>¥</template><i v-html="list[index].current_user.can.value"></i></b>以后下载</span>
请先<a href="javascript:void(0)" onclick="login.show = true;login.loginType = 1">登录</a>
</span>
<span v-else-if="item.current_user.can.type == 'full'" class="green">
您今天的下载次数(<b v-text="item.current_user.can.total_count"></b>次)用完了,请明天再来
</span>
<span v-else-if="item.current_user.can.type == 'credit'">
支付积分<b><i class="b2font b2-coin-line "></i><i v-html="list[index].current_user.can.value"></i></b>以后下载<a href="javascript:void(0)" @click="credit(index)">立即支付</a>
</span>
<span v-else-if="item.current_user.can.type == 'money'">
支付<b v-text="'¥'+list[index].current_user.can.value"></b>以后下载<a href="javascript:void(0)" @click="pay(index)">立即支付</a>
</span>
<span v-else>
您当前的用户组不允许下载<a href="https://www.appmiu.com/vips" target="_blank">升级会员</a>
</span>
</div>
<div class="" v-else>
<span v-if="item.current_user.current_guest == 0 || item.current_user.can.free_down" class="green">
您已获得下载权限
</span>
<span class="green" v-else>
您可以每天下载资源<b v-text="item.current_user.can.total_count"></b>次,今日剩余<b v-text="item.current_user.can.count"></b>次
</span>
</div>
</div>
<div class="download-button-box">
<button @click="go(b.link,item.current_user.can.allow,item,index)" class="button" v-text="b.name" v-for="b in item.button"></button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h2>相关文章:</h2><ol>
<li><a href="https://www.appmiu.com/22002.html" rel="bookmark" title="AI Anime Filter:AI 动漫滤镜,将照片转换成动漫风格">AI Anime Filter:AI 动漫滤镜,将照片转换成动漫风格</a></li>
<li><a href="https://www.appmiu.com/22036.html" rel="bookmark" title="图片翻译:Chrome 浏览器扩展">图片翻译:Chrome 浏览器扩展</a></li>
<li><a href="https://www.appmiu.com/22163.html" rel="bookmark" title="httpsok:自动续签 HTTPS 证书的工具,站长SSL神器">httpsok:自动续签 HTTPS 证书的工具,站长SSL神器</a></li>
</ol>
</div>
]]></content:encoded>
<wfw:commentRss>https://www.appmiu.com/28088.html/feed</wfw:commentRss>
<slash:comments>0</slash:comments>
</item>
<item>
<title>Grafana面板:美观实用的监控解决方案,支持中文显示,结合Prometheus与Docker,轻松监控小鸡和NAS设备</title>
<link>https://www.appmiu.com/28107.html</link>
<comments>https://www.appmiu.com/28107.html#respond</comments>
<dc:creator><![CDATA[Root]]></dc:creator>
<pubDate>Wed, 13 Nov 2024 07:53:39 +0000</pubDate>
<category><![CDATA[站长源码]]></category>
<category><![CDATA[资源]]></category>
<category><![CDATA[docker]]></category>
<category><![CDATA[Grafana]]></category>
<category><![CDATA[Nezha]]></category>
<category><![CDATA[Prometheus]]></category>
<category><![CDATA[工具]]></category>
<category><![CDATA[监控]]></category>
<category><![CDATA[网站]]></category>
<guid isPermaLink="false">https://www.appmiu.com/?p=28107</guid>
<description><![CDATA[本文更新于: 2024年11月13日 APP喵前言:大家好,我是阿喵!今天想和大家聊聊一款特别好用的Grafana面板。这款面板不仅外观漂亮,而且支持中文显示,非常适合想要监控设备的朋友们。周末的时候,跟着视频教程搭建一个Prometheus,监控小鸡和NAS,真的是轻松又愉快。通过Nezha监控三网、Beszel监控Docker,再加上Prometheus的全面监控,真是一个完美的组合! 项目简介 这款Grafana面板不仅美观,且支持中文显示,非常适合用于监控小鸡和NAS等设备。用户可以通过一键脚本快速搭建Pr<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h2>相关文章:</h2><ol>
<li><a href="https://www.appmiu.com/22099.html" rel="bookmark" title="Website Counter Free:网页访问计数器">Website Counter Free:网页访问计数器</a></li>
<li><a href="https://www.appmiu.com/22499.html" rel="bookmark" title="Yet Another Pastebin:开源的文本分享服务,阅后即焚">Yet Another Pastebin:开源的文本分享服务,阅后即焚</a></li>
<li><a href="https://www.appmiu.com/23082.html" rel="bookmark" title="91化简:一款开源免费简历制作神器">91化简:一款开源免费简历制作神器</a></li>
</ol>
</div>
]]></description>
<content:encoded><![CDATA[<p class="post-modified-info">本文更新于: 2024年11月13日 </p>
<p>APP喵前言:大家好,我是阿喵!今天想和大家聊聊一款特别好用的<a href="https://www.appmiu.com/tag/grafana" title="View all posts in Grafana" target="_blank">Grafana</a>面板。这款面板不仅外观漂亮,而且支持中文显示,非常适合想要<a href="https://www.appmiu.com/tag/%e7%9b%91%e6%8e%a7" title="View all posts in 监控" target="_blank">监控</a>设备的朋友们。周末的时候,跟着视频教程搭建一个<a href="https://www.appmiu.com/tag/prometheus" title="View all posts in Prometheus" target="_blank">Prometheus</a>,监控小鸡和NAS,真的是轻松又愉快。通过<a href="https://www.appmiu.com/tag/nezha" title="View all posts in Nezha" target="_blank">Nezha</a>监控三网、Beszel监控Docker,再加上Prometheus的全面监控,真是一个完美的组合!</p>
<h2 class="wp-block-heading">项目简介</h2>
<p>这款<a href="https://www.appmiu.com/tag/grafana" title="View all posts in Grafana" target="_blank">Grafana</a>面板不仅美观,且支持中文显示,非常适合用于监控小鸡和NAS等设备。用户可以通过一键脚本快速搭建Prometheus,搭配<a href="https://www.appmiu.com/tag/nezha" title="View all posts in Nezha" target="_blank">Nezha</a>和Beszel等<a href="https://www.appmiu.com/tag/%e5%b7%a5%e5%85%b7" title="View all posts in 工具" target="_blank">工具</a>,实现全面的监控解决方案,从而更好地管理和优化资源。</p>
<h3 class="wp-block-heading">截图</h3>
<figure class="wp-block-image size-full"><img alt="Grafana面板:美观实用的监控解决方案,支持中文显示,结合Prometheus与Docker,轻松监控小鸡和NAS设备-APP喵"title="Grafana面板:美观实用的监控解决方案,支持中文显示,结合Prometheus与Docker,轻松监控小鸡和NAS设备-APP喵" decoding="async" width="2458" height="1287" src="https://www.appmiu.com/wp-content/uploads/2024/11/image.jpg" alt="" class="wp-image-28108"/></figure>
<h3 class="wp-block-heading">特色</h3>
<ul class="wp-block-list">
<li>美观设计:界面友好,视觉效果佳,支持中文显示。</li>
<li>快速搭建:提供一键脚本,用户可以轻松完成Prometheus的搭建。</li>
<li>多工具兼容:与Nezha、Beszel等监控工具无缝集成,支持多种监控需求。</li>
<li>全面监控:能够监控小鸡、NAS和Docker等多种设备,提供全面的资源管理。</li>
<li>用户友好:适合各类用户,尤其是希望快速上手的初学者。</li>
</ul>
<h2 class="wp-block-heading">项目地址</h2>
<p><a target="_blank" rel="nofollow noopener noreferrer" href="https://www.appmiu.com/go/1agq" rel="nofollow">https://grafana.com/grafana/dashboards/16098-node-exporter-dashboard-20240520-job</a></p>
<div class="download-box mg-b" id="download-box" ref="downloadBox">
<div>
<div class="down-ready">
<div class="download-list gujia" ref="gujia">
<div class="download-item">
<div class="download-thumb" style="'background-image: url();'">
</div>
<div class="download-rights">
<div class="download-rights-title"><span class="gujia-bg"></span></div>
<ul>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
</ul>
</div>
<div class="download-info">
<div class="download-rights-title"><span class="gujia-bg"></span></div>
<ul>
</ul>
<div class="download-current">
<div class=""></div>
</div>
<div class="download-button-box">
<div class=""></div>
<div class=""></div>
<div class=""></div>
</div>
</div>
</div>
</div>
</div>
<div class="download-list" v-cloak>
<div v-for="(item,index) in list" :class="'download-item b2-radius '+(item.current_user.can.allow ? 'allow-down' : 'not-allow-down')" v-show="picked == index" v-cloak>
<div class="download-rights" v-cloak>
<div class="download-rights-title"><i class="b2font b2-download-cloud-line1 "></i>下载权限</div><span class="mobile-show" @click="item.show_role = !item.show_role">查看</span>
<ul v-if="item.show_role">
<li v-for="right in item.rights" :class="right.lv == item.current_user.lv.lv.lv || right.lv == item.current_user.lv.vip.lv ? 'red' : ''">
<div><span v-text="right.lv_name+':'"></span></div>
<div v-if="right.type == 'money'">¥<span v-text="right.value"></span></div>
<div v-if="right.type == 'credit'"><i class="b2font b2-coin-line "></i><span v-text="right.value"></span></div>
<div v-if="right.type == 'free'">免费下载</div>
<div v-if="right.type == 'comment'">评论并刷新后下载</div>
<div v-if="right.type == 'login'">登录后下载</div>
</li>
</ul>
</div>
<div class="download-info">
<div class="download-rights-title"><span v-text="item.name"></span><a :href="item.view" target="_blank" class="download-view button empty text" v-if="item.view">查看演示<i class="b2font b2-arrow-right-s-line "></i></a></div>
<ul v-show="item.attrs.length >0">
<li v-for="attr in item.attrs">
<span class="download-attr-name">{{attr.name}}:</span>
<span v-html="attr.value"></span>
</li>
</ul>
<div class="download-current">
<span>您当前的等级为</span>
<span v-if="item.current_user.lv.lv" v-html="item.current_user.lv.lv.icon"></span>
<span v-if="item.current_user.lv.vip" v-html="item.current_user.lv.vip.icon"></span>
<div class="" v-if="!item.current_user.can.allow">
<span v-if="item.current_user.can.type == 'login'">
登录后免费下载<a href="javascript:void(0)" onclick="login.show = true;login.loginType = 1">登录</a>
</span>
<span v-else-if="item.current_user.lv.lv.lv == 'dark_room'">
小黑屋反思中,不准下载!
</span>
<span v-else-if="item.current_user.can.type == 'comment'">
评论后刷新页面下载<a href="#respond">评论</a>
</span>
<span v-else-if="item.current_user.lv.lv.lv == 'guest' && !item.current_user.guest">
<span v-show="list[index].rights[0].lv == 'all'" v-cloak>支付<b><template v-if="item.current_user.can.type == 'credit'"><i class="b2font b2-coin-line "></i></template><template v-else>¥</template><i v-html="list[index].current_user.can.value"></i></b>以后下载</span>
请先<a href="javascript:void(0)" onclick="login.show = true;login.loginType = 1">登录</a>
</span>
<span v-else-if="item.current_user.can.type == 'full'" class="green">
您今天的下载次数(<b v-text="item.current_user.can.total_count"></b>次)用完了,请明天再来
</span>
<span v-else-if="item.current_user.can.type == 'credit'">
支付积分<b><i class="b2font b2-coin-line "></i><i v-html="list[index].current_user.can.value"></i></b>以后下载<a href="javascript:void(0)" @click="credit(index)">立即支付</a>
</span>
<span v-else-if="item.current_user.can.type == 'money'">
支付<b v-text="'¥'+list[index].current_user.can.value"></b>以后下载<a href="javascript:void(0)" @click="pay(index)">立即支付</a>
</span>
<span v-else>
您当前的用户组不允许下载<a href="https://www.appmiu.com/vips" target="_blank">升级会员</a>
</span>
</div>
<div class="" v-else>
<span v-if="item.current_user.current_guest == 0 || item.current_user.can.free_down" class="green">
您已获得下载权限
</span>
<span class="green" v-else>
您可以每天下载资源<b v-text="item.current_user.can.total_count"></b>次,今日剩余<b v-text="item.current_user.can.count"></b>次
</span>
</div>
</div>
<div class="download-button-box">
<button @click="go(b.link,item.current_user.can.allow,item,index)" class="button" v-text="b.name" v-for="b in item.button"></button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h2>相关文章:</h2><ol>
<li><a href="https://www.appmiu.com/22099.html" rel="bookmark" title="Website Counter Free:网页访问计数器">Website Counter Free:网页访问计数器</a></li>
<li><a href="https://www.appmiu.com/22499.html" rel="bookmark" title="Yet Another Pastebin:开源的文本分享服务,阅后即焚">Yet Another Pastebin:开源的文本分享服务,阅后即焚</a></li>
<li><a href="https://www.appmiu.com/23082.html" rel="bookmark" title="91化简:一款开源免费简历制作神器">91化简:一款开源免费简历制作神器</a></li>
</ol>
</div>
]]></content:encoded>
<wfw:commentRss>https://www.appmiu.com/28107.html/feed</wfw:commentRss>
<slash:comments>0</slash:comments>
</item>
<item>
<title>书法临帖练字 v1.0:提升书写水平的必备应用,提供丰富的字体练习,可以根据自己的需求进行选择,轻松提升书写水平,适合不同人群使用</title>
<link>https://www.appmiu.com/28092.html</link>
<comments>https://www.appmiu.com/28092.html#respond</comments>
<dc:creator><![CDATA[阿喵]]></dc:creator>
<pubDate>Wed, 13 Nov 2024 05:30:14 +0000</pubDate>
<category><![CDATA[安卓]]></category>
<category><![CDATA[书法]]></category>
<category><![CDATA[字体练习]]></category>
<category><![CDATA[手机应用]]></category>
<category><![CDATA[提升书写]]></category>
<category><![CDATA[练字]]></category>
<guid isPermaLink="false">https://www.appmiu.com/?p=28092</guid>
<description><![CDATA[本文更新于: 2024年11月13日 APP喵前言:大家好!今天给大家推荐一款非常实用的练字软件——书法临帖练字。这款应用适合所有想要提高书写水平的朋友,提供多种字体选择,包括楷书、隶书和行书等,帮助用户从基础开始练习,快速掌握书法技巧。 软件简介 书法临帖练字是一款手机应用,专为书法爱好者设计。它提供丰富的字体练习,用户可以根据自己的需求进行选择,轻松提升书写水平,适合不同人群使用。 截图 特色 多种字体选择:支持楷书、隶书、行书等多种书法字体。 基础练习:从基础开始,帮助用户逐步提高书写技巧。 适用广泛:适合学<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h2>相关文章:</h2><ol>
<li><a href="https://www.appmiu.com/13505.html" rel="bookmark" title="Android:嘤嘤动漫">Android:嘤嘤动漫</a></li>
<li><a href="https://www.appmiu.com/21131.html" rel="bookmark" title="HDO BOX,复刻奈飞:国外的电影APP">HDO BOX,复刻奈飞:国外的电影APP</a></li>
<li><a href="https://www.appmiu.com/21531.html" rel="bookmark" title="Olauncher:简单轻量级的开源安卓桌面启动器">Olauncher:简单轻量级的开源安卓桌面启动器</a></li>
</ol>
</div>
]]></description>
<content:encoded><![CDATA[<p class="post-modified-info">本文更新于: 2024年11月13日 </p>
<p>APP喵前言:大家好!今天给大家推荐一款非常实用的<a href="https://www.appmiu.com/tag/%e7%bb%83%e5%ad%97" title="View all posts in 练字" target="_blank">练字</a>软件——<a href="https://www.appmiu.com/tag/%e4%b9%a6%e6%b3%95" title="View all posts in 书法" target="_blank">书法</a>临帖练字。这款应用适合所有想要提高书写水平的朋友,提供多种字体选择,包括楷书、隶书和行书等,帮助用户从基础开始练习,快速掌握<a href="https://www.appmiu.com/tag/%e4%b9%a6%e6%b3%95" title="View all posts in 书法" target="_blank">书法</a>技巧。</p>
<h2 class="wp-block-heading">软件简介</h2>
<p>书法临帖练字是一款<a href="https://www.appmiu.com/tag/%e6%89%8b%e6%9c%ba%e5%ba%94%e7%94%a8" title="View all posts in 手机应用" target="_blank">手机应用</a>,专为书法爱好者设计。它提供丰富的<a href="https://www.appmiu.com/tag/%e5%ad%97%e4%bd%93%e7%bb%83%e4%b9%a0" title="View all posts in 字体练习" target="_blank">字体练习</a>,用户可以根据自己的需求进行选择,轻松<a href="https://www.appmiu.com/tag/%e6%8f%90%e5%8d%87%e4%b9%a6%e5%86%99" title="View all posts in 提升书写" target="_blank">提升书写</a>水平,适合不同人群使用。</p>
<h3 class="wp-block-heading">截图</h3>
<figure class="wp-block-image size-full"><img alt="书法临帖练字 v1.0:提升书写水平的必备应用,提供丰富的字体练习,可以根据自己的需求进行选择,轻松提升书写水平,适合不同人群使用-APP喵"title="书法临帖练字 v1.0:提升书写水平的必备应用,提供丰富的字体练习,可以根据自己的需求进行选择,轻松提升书写水平,适合不同人群使用-APP喵" loading="lazy" decoding="async" width="2765" height="1632" src="https://www.appmiu.com/wp-content/uploads/2024/11/1731391281023.webp" alt="" class="wp-image-28094"/></figure>
<h3 class="wp-block-heading">特色</h3>
<p><strong>多种字体选择</strong>:支持楷书、隶书、行书等多种书法字体。 <strong>基础练习</strong>:从基础开始,帮助用户逐步提高书写技巧。 <strong>适用广泛</strong>:适合学生、书法爱好者及任何想提升书写能力的人。 <strong>便捷使用</strong>:在手机上即可练习,随时随地提升书法水平。</p>
<h2 class="wp-block-heading">软件下载</h2>
<p>123云盘:<a target="_blank" rel="nofollow noopener noreferrer" href="https://www.appmiu.com/go/f0dj" rel="nofollow">https://www.123684.com/s/przqjv-2VeHd</a></p>
<div class="download-box mg-b" id="download-box" ref="downloadBox">
<div>
<div class="down-ready">
<div class="download-list gujia" ref="gujia">
<div class="download-item">
<div class="download-thumb" style="'background-image: url();'">
</div>
<div class="download-rights">
<div class="download-rights-title"><span class="gujia-bg"></span></div>
<ul>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
</ul>
</div>
<div class="download-info">
<div class="download-rights-title"><span class="gujia-bg"></span></div>
<ul>
</ul>
<div class="download-current">
<div class=""></div>
</div>
<div class="download-button-box">
<div class=""></div>
<div class=""></div>
<div class=""></div>
</div>
</div>
</div>
</div>
</div>
<div class="download-list" v-cloak>
<div v-for="(item,index) in list" :class="'download-item b2-radius '+(item.current_user.can.allow ? 'allow-down' : 'not-allow-down')" v-show="picked == index" v-cloak>
<div class="download-rights" v-cloak>
<div class="download-rights-title"><i class="b2font b2-download-cloud-line1 "></i>下载权限</div><span class="mobile-show" @click="item.show_role = !item.show_role">查看</span>
<ul v-if="item.show_role">
<li v-for="right in item.rights" :class="right.lv == item.current_user.lv.lv.lv || right.lv == item.current_user.lv.vip.lv ? 'red' : ''">
<div><span v-text="right.lv_name+':'"></span></div>
<div v-if="right.type == 'money'">¥<span v-text="right.value"></span></div>
<div v-if="right.type == 'credit'"><i class="b2font b2-coin-line "></i><span v-text="right.value"></span></div>
<div v-if="right.type == 'free'">免费下载</div>
<div v-if="right.type == 'comment'">评论并刷新后下载</div>
<div v-if="right.type == 'login'">登录后下载</div>
</li>
</ul>
</div>
<div class="download-info">
<div class="download-rights-title"><span v-text="item.name"></span><a :href="item.view" target="_blank" class="download-view button empty text" v-if="item.view">查看演示<i class="b2font b2-arrow-right-s-line "></i></a></div>
<ul v-show="item.attrs.length >0">
<li v-for="attr in item.attrs">
<span class="download-attr-name">{{attr.name}}:</span>
<span v-html="attr.value"></span>
</li>
</ul>
<div class="download-current">
<span>您当前的等级为</span>
<span v-if="item.current_user.lv.lv" v-html="item.current_user.lv.lv.icon"></span>
<span v-if="item.current_user.lv.vip" v-html="item.current_user.lv.vip.icon"></span>
<div class="" v-if="!item.current_user.can.allow">
<span v-if="item.current_user.can.type == 'login'">
登录后免费下载<a href="javascript:void(0)" onclick="login.show = true;login.loginType = 1">登录</a>
</span>
<span v-else-if="item.current_user.lv.lv.lv == 'dark_room'">
小黑屋反思中,不准下载!
</span>
<span v-else-if="item.current_user.can.type == 'comment'">
评论后刷新页面下载<a href="#respond">评论</a>
</span>
<span v-else-if="item.current_user.lv.lv.lv == 'guest' && !item.current_user.guest">
<span v-show="list[index].rights[0].lv == 'all'" v-cloak>支付<b><template v-if="item.current_user.can.type == 'credit'"><i class="b2font b2-coin-line "></i></template><template v-else>¥</template><i v-html="list[index].current_user.can.value"></i></b>以后下载</span>
请先<a href="javascript:void(0)" onclick="login.show = true;login.loginType = 1">登录</a>
</span>
<span v-else-if="item.current_user.can.type == 'full'" class="green">
您今天的下载次数(<b v-text="item.current_user.can.total_count"></b>次)用完了,请明天再来
</span>
<span v-else-if="item.current_user.can.type == 'credit'">
支付积分<b><i class="b2font b2-coin-line "></i><i v-html="list[index].current_user.can.value"></i></b>以后下载<a href="javascript:void(0)" @click="credit(index)">立即支付</a>
</span>
<span v-else-if="item.current_user.can.type == 'money'">
支付<b v-text="'¥'+list[index].current_user.can.value"></b>以后下载<a href="javascript:void(0)" @click="pay(index)">立即支付</a>
</span>
<span v-else>
您当前的用户组不允许下载<a href="https://www.appmiu.com/vips" target="_blank">升级会员</a>
</span>
</div>
<div class="" v-else>
<span v-if="item.current_user.current_guest == 0 || item.current_user.can.free_down" class="green">
您已获得下载权限
</span>
<span class="green" v-else>
您可以每天下载资源<b v-text="item.current_user.can.total_count"></b>次,今日剩余<b v-text="item.current_user.can.count"></b>次
</span>
</div>
</div>
<div class="download-button-box">
<button @click="go(b.link,item.current_user.can.allow,item,index)" class="button" v-text="b.name" v-for="b in item.button"></button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h2>相关文章:</h2><ol>
<li><a href="https://www.appmiu.com/13505.html" rel="bookmark" title="Android:嘤嘤动漫">Android:嘤嘤动漫</a></li>
<li><a href="https://www.appmiu.com/21131.html" rel="bookmark" title="HDO BOX,复刻奈飞:国外的电影APP">HDO BOX,复刻奈飞:国外的电影APP</a></li>
<li><a href="https://www.appmiu.com/21531.html" rel="bookmark" title="Olauncher:简单轻量级的开源安卓桌面启动器">Olauncher:简单轻量级的开源安卓桌面启动器</a></li>
</ol>
</div>
]]></content:encoded>
<wfw:commentRss>https://www.appmiu.com/28092.html/feed</wfw:commentRss>
<slash:comments>0</slash:comments>
</item>
<item>
<title>DeepFace:轻量级人脸识别框架,支持年龄、性别、情绪和种族分析,集成多种前沿模型,准确度超越人类,便捷易用的开发工具</title>
<link>https://www.appmiu.com/28103.html</link>
<comments>https://www.appmiu.com/28103.html#respond</comments>
<dc:creator><![CDATA[Root]]></dc:creator>
<pubDate>Wed, 13 Nov 2024 02:13:01 +0000</pubDate>
<category><![CDATA[智能AI]]></category>
<category><![CDATA[站长源码]]></category>
<category><![CDATA[资源]]></category>
<category><![CDATA[AI]]></category>
<category><![CDATA[PYTHON]]></category>
<category><![CDATA[VGG-Face]]></category>
<category><![CDATA[人脸识别]]></category>
<category><![CDATA[属性分析]]></category>
<category><![CDATA[深度学习]]></category>
<guid isPermaLink="false">https://www.appmiu.com/?p=28103</guid>
<description><![CDATA[本文更新于: 2024年11月13日 APP喵前言:大家好,我是阿喵!今天想和大家分享一个非常实用的工具——DeepFace。这是一个轻量级的人脸识别框架,特别适合开发者和研究者使用。无论是在社交媒体、安防监控还是用户体验优化中,DeepFace都能帮助快速识别面部特征,分析年龄、性别、情绪和种族,为各种项目增添智能化的元素。 网站简介 DeepFace是一个基于Python的轻量级人脸识别与面部属性分析框架,能够分析年龄、性别、情绪和种族等多种面部属性。该框架整合了多个前沿深度学习模型,如VGG-Face、Fac<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h2>相关文章:</h2><ol>
<li><a href="https://www.appmiu.com/20532.html" rel="bookmark" title="text2video:AI一键文本转视频,免费开源">text2video:AI一键文本转视频,免费开源</a></li>
<li><a href="https://www.appmiu.com/22109.html" rel="bookmark" title="MusicGen Web:开源AI音乐生成工具">MusicGen Web:开源AI音乐生成工具</a></li>
<li><a href="https://www.appmiu.com/22154.html" rel="bookmark" title="Lobe Chat:现代化的开源 ChatGPT/LLMs 聊天应用框架">Lobe Chat:现代化的开源 ChatGPT/LLMs 聊天应用框架</a></li>
</ol>
</div>
]]></description>
<content:encoded><![CDATA[<p class="post-modified-info">本文更新于: 2024年11月13日 </p>
<p>APP喵前言:大家好,我是阿喵!今天想和大家分享一个非常实用的工具——DeepFace。这是一个轻量级的<a href="https://www.appmiu.com/tag/%e4%ba%ba%e8%84%b8%e8%af%86%e5%88%ab" title="View all posts in 人脸识别" target="_blank">人脸识别</a>框架,特别适合开发者和研究者使用。无论是在社交媒体、安防监控还是用户体验优化中,DeepFace都能帮助快速识别面部特征,分析年龄、性别、情绪和种族,为各种项目增添智能化的元素。</p>
<h2 class="wp-block-heading">网站简介</h2>
<p>DeepFace是一个基于Python的轻量级<a href="https://www.appmiu.com/tag/%e4%ba%ba%e8%84%b8%e8%af%86%e5%88%ab" title="View all posts in 人脸识别" target="_blank">人脸识别</a>与面部<a href="https://www.appmiu.com/tag/%e5%b1%9e%e6%80%a7%e5%88%86%e6%9e%90" title="View all posts in 属性分析" target="_blank">属性分析</a>框架,能够分析年龄、性别、情绪和种族等多种面部属性。该框架整合了多个前沿<a href="https://www.appmiu.com/tag/%e6%b7%b1%e5%ba%a6%e5%ad%a6%e4%b9%a0" title="View all posts in 深度学习" target="_blank">深度学习</a>模型,如<a href="https://www.appmiu.com/tag/vgg-face" title="View all posts in VGG-Face" target="_blank">VGG-Face</a>、FaceNet等,准确度甚至超过人类的识别能力。使用DeepFace,开发者可以通过简单的函数调用实现复杂的面部识别和<a href="https://www.appmiu.com/tag/%e5%b1%9e%e6%80%a7%e5%88%86%e6%9e%90" title="View all posts in 属性分析" target="_blank">属性分析</a>,适用于多种应用场景。</p>
<h3 class="wp-block-heading">截图</h3>
<figure class="wp-block-image size-full"><img alt="DeepFace:轻量级人脸识别框架,支持年龄、性别、情绪和种族分析,集成多种前沿模型,准确度超越人类,便捷易用的开发工具-APP喵"title="DeepFace:轻量级人脸识别框架,支持年龄、性别、情绪和种族分析,集成多种前沿模型,准确度超越人类,便捷易用的开发工具-APP喵" loading="lazy" decoding="async" width="1920" height="1080" src="https://www.appmiu.com/wp-content/uploads/2024/11/stock-2.jpg" alt="" class="wp-image-28104"/></figure>
<h3 class="wp-block-heading">特色</h3>
<ul class="wp-block-list">
<li>多模型支持:集成<a href="https://www.appmiu.com/tag/vgg-face" title="View all posts in VGG-Face" target="_blank">VGG-Face</a>、FaceNet、OpenFace、DeepID、ArcFace等多种前沿人脸识别模型。</li>
<li>高准确度:在面部识别任务中准确度超越97.53%,超过人类识别水平。</li>
<li>多种分析功能:支持年龄、性别、情绪和种族等面部属性的分析。</li>
<li>简便易用:用户只需简单的函数调用即可实现复杂的功能,降低了技术门槛。</li>
<li>实时分析:可以在实时视频流中进行人脸识别与<a href="https://www.appmiu.com/tag/%e5%b1%9e%e6%80%a7%e5%88%86%e6%9e%90" title="View all posts in 属性分析" target="_blank">属性分析</a>,适应多种应用场景。</li>
</ul>
<h2 class="wp-block-heading">网站地址</h2>
<p>github:<a target="_blank" rel="nofollow noopener noreferrer" href="https://www.appmiu.com/go/d5vo" rel="nofollow">https://github.com/serengil/deepface</a></p>
<div class="download-box mg-b" id="download-box" ref="downloadBox">
<div>
<div class="down-ready">
<div class="download-list gujia" ref="gujia">
<div class="download-item">
<div class="download-thumb" style="'background-image: url();'">
</div>
<div class="download-rights">
<div class="download-rights-title"><span class="gujia-bg"></span></div>
<ul>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
<li><span class="gujia-bg"></span></li>
</ul>
</div>
<div class="download-info">
<div class="download-rights-title"><span class="gujia-bg"></span></div>
<ul>
</ul>
<div class="download-current">
<div class=""></div>
</div>
<div class="download-button-box">
<div class=""></div>
<div class=""></div>
<div class=""></div>
</div>
</div>
</div>
</div>
</div>
<div class="download-list" v-cloak>
<div v-for="(item,index) in list" :class="'download-item b2-radius '+(item.current_user.can.allow ? 'allow-down' : 'not-allow-down')" v-show="picked == index" v-cloak>
<div class="download-rights" v-cloak>
<div class="download-rights-title"><i class="b2font b2-download-cloud-line1 "></i>下载权限</div><span class="mobile-show" @click="item.show_role = !item.show_role">查看</span>
<ul v-if="item.show_role">
<li v-for="right in item.rights" :class="right.lv == item.current_user.lv.lv.lv || right.lv == item.current_user.lv.vip.lv ? 'red' : ''">
<div><span v-text="right.lv_name+':'"></span></div>
<div v-if="right.type == 'money'">¥<span v-text="right.value"></span></div>
<div v-if="right.type == 'credit'"><i class="b2font b2-coin-line "></i><span v-text="right.value"></span></div>
<div v-if="right.type == 'free'">免费下载</div>
<div v-if="right.type == 'comment'">评论并刷新后下载</div>
<div v-if="right.type == 'login'">登录后下载</div>
</li>
</ul>
</div>
<div class="download-info">
<div class="download-rights-title"><span v-text="item.name"></span><a :href="item.view" target="_blank" class="download-view button empty text" v-if="item.view">查看演示<i class="b2font b2-arrow-right-s-line "></i></a></div>
<ul v-show="item.attrs.length >0">
<li v-for="attr in item.attrs">
<span class="download-attr-name">{{attr.name}}:</span>
<span v-html="attr.value"></span>
</li>
</ul>
<div class="download-current">
<span>您当前的等级为</span>
<span v-if="item.current_user.lv.lv" v-html="item.current_user.lv.lv.icon"></span>
<span v-if="item.current_user.lv.vip" v-html="item.current_user.lv.vip.icon"></span>
<div class="" v-if="!item.current_user.can.allow">
<span v-if="item.current_user.can.type == 'login'">
登录后免费下载<a href="javascript:void(0)" onclick="login.show = true;login.loginType = 1">登录</a>
</span>
<span v-else-if="item.current_user.lv.lv.lv == 'dark_room'">
小黑屋反思中,不准下载!
</span>
<span v-else-if="item.current_user.can.type == 'comment'">
评论后刷新页面下载<a href="#respond">评论</a>
</span>
<span v-else-if="item.current_user.lv.lv.lv == 'guest' && !item.current_user.guest">
<span v-show="list[index].rights[0].lv == 'all'" v-cloak>支付<b><template v-if="item.current_user.can.type == 'credit'"><i class="b2font b2-coin-line "></i></template><template v-else>¥</template><i v-html="list[index].current_user.can.value"></i></b>以后下载</span>
请先<a href="javascript:void(0)" onclick="login.show = true;login.loginType = 1">登录</a>
</span>
<span v-else-if="item.current_user.can.type == 'full'" class="green">
您今天的下载次数(<b v-text="item.current_user.can.total_count"></b>次)用完了,请明天再来
</span>
<span v-else-if="item.current_user.can.type == 'credit'">
支付积分<b><i class="b2font b2-coin-line "></i><i v-html="list[index].current_user.can.value"></i></b>以后下载<a href="javascript:void(0)" @click="credit(index)">立即支付</a>
</span>
<span v-else-if="item.current_user.can.type == 'money'">
支付<b v-text="'¥'+list[index].current_user.can.value"></b>以后下载<a href="javascript:void(0)" @click="pay(index)">立即支付</a>
</span>
<span v-else>
您当前的用户组不允许下载<a href="https://www.appmiu.com/vips" target="_blank">升级会员</a>
</span>
</div>
<div class="" v-else>
<span v-if="item.current_user.current_guest == 0 || item.current_user.can.free_down" class="green">
您已获得下载权限
</span>
<span class="green" v-else>
您可以每天下载资源<b v-text="item.current_user.can.total_count"></b>次,今日剩余<b v-text="item.current_user.can.count"></b>次
</span>
</div>
</div>
<div class="download-button-box">
<button @click="go(b.link,item.current_user.can.allow,item,index)" class="button" v-text="b.name" v-for="b in item.button"></button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class='yarpp yarpp-related yarpp-related-rss yarpp-template-list'>
<!-- YARPP List -->
<h2>相关文章:</h2><ol>
<li><a href="https://www.appmiu.com/20532.html" rel="bookmark" title="text2video:AI一键文本转视频,免费开源">text2video:AI一键文本转视频,免费开源</a></li>
<li><a href="https://www.appmiu.com/22109.html" rel="bookmark" title="MusicGen Web:开源AI音乐生成工具">MusicGen Web:开源AI音乐生成工具</a></li>
<li><a href="https://www.appmiu.com/22154.html" rel="bookmark" title="Lobe Chat:现代化的开源 ChatGPT/LLMs 聊天应用框架">Lobe Chat:现代化的开源 ChatGPT/LLMs 聊天应用框架</a></li>
</ol>
</div>
]]></content:encoded>