听说万宝乐儿童推车图解比较火,不知道是不是真的?

&p&开头给自己打个&b&小广告&/b&:有偿实现爬虫、数据分析、机器学习&b&等&/b&各类代码 有需求请私信&/p&&p&-------------------------------------------正文-------------------------------------------&/p&&p&&b&日更新:本文包含两个独立的代码,分别是基于python爬虫下载P***hub上的视频(需FQ)和某国内网站的视频(无需FQ)。&/b&&/p&&p&不多说了,代码在此,&b&网址补全就能跑&/b&。&/p&&p&&b&各位知友注意身体。&/b&&/p&&p&&b&在女朋友的督促下我写完了全部代码。&/b&&/p&&p&&b&如果点赞&收藏,本答案将不再更新;否则保持更新。&/b&&/p&&figure&&img src=&https://pic4.zhimg.com/50/v2-38e2a1668ce7efb841f5ccdc07c6eff8_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&143& data-rawheight=&52& class=&content_image& width=&143&&&/figure&&figure&&img src=&https://pic3.zhimg.com/50/v2-fa630acc4ade61dd43452f_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&192& data-rawheight=&32& class=&content_image& width=&192&&&/figure&&div class=&highlight&&&pre&&code class=&language-text&&import urllib2
import urllib
import datetime
import os.path
to_find_string=&https://bd.phncdn.com/videos/&
big_path=&&
def save_file(this_download_url,path):
print&- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - &
time1=datetime.datetime.now()
print str(time1)[:-7],
if (os.path.isfile(path)):
file_size=os.path.getsize(path)/
print &File &+path+& (&+ str(file_size)+&Mb) already exists.&
print &Downloading &+path+&...&
f = urllib2.urlopen(this_download_url)
data = f.read()
with open(path, &wb&) as code:
code.write(data)
time2=datetime.datetime.now()
print str(time2)[:-7],
print path+& Done.&
use_time=time2-time1
print &Time used: &+str(use_time)[:-7]+&, &,
file_size=os.path.getsize(path)/
print &File size: &+str(file_size)+& MB, Speed: &+str(file_size/(use_time.total_seconds()))[:4]+&MB/s&
def download_the_av(url):
req = urllib2.Request(url)
content = urllib2.urlopen(req).read()
while len(content)&100:
print&try again...&
content = urllib2.urlopen(req).read()
print &All length:& +str(len(content))
title_begin=content.find(&&title&&)
title_end=content.find(&&/title&&)
title=content[title_begin+7:title_end-14]
title=title.replace('/','_')
title=filter(lambda x:x in &abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ _-&,title)
quality=['720','480','240']
for i in quality:
find_position=content.find(&\&quality\&:\&&+i+&\&&)
if find_position&0:
print &Quality: &+i+&P&
to_find=content[find_position:find_position+4000]
pattern=re.compile(r&\&videoUrl\&:\&[^\&]*\&&)
match = pattern.search(to_find)
the_url=match.group()
the_url=the_url[12:-1]#the real url
the_url=the_url.replace(&\\/&,&/&)
save_file(the_url,big_path+title+&.mp4&)
urls=[&https://www.p***hub.com/view_video.php?viewkey=ph592ef8731630a&,]
print len(urls),
print & videos to download...&
for url in urls:
print count
download_the_av(url)
print &All done&
&/code&&/pre&&/div&&p&&b&以下是国内版本,请对网址稍作修改谢谢:&/b&&/p&&div class=&highlight&&&pre&&code class=&language-text&&import urllib2
import urllib
import datetime
import os.path
import requests
def save_file(this_download_url,path):
print&- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - &
time1=datetime.datetime.now()
print str(time1)[:-7],
if (os.path.isfile(path)):
file_size=os.path.getsize(path)/
print &File &+path+& (&+ str(file_size)+&Mb) already exists.&
print &Downloading &+path+&...&
r = requests.get(this_download_url,stream=True)
with open(path.encode('utf-8'), &wb&) as code:
code.write(r.content)
time2=datetime.datetime.now()
print str(time2)[:-7],
print path+& Done.&
use_time=time2-time1
print &Time used: &+str(use_time)[:-7]+&, &,
file_size=os.path.getsize(path)/
print &File size: &+str(file_size)+& MB, Speed: &+str(file_size/(use_time.total_seconds()))[:4]+&MB/s&
def download_url(website_url):
fuckyou_header= {'User-Agent':'Mozilla/5.0 (W U; Windows NT 6.1; en-US; rv:1.9.1.6) Gecko/ Firefox/3.5.6'}
req = urllib2.Request(website_url,headers=fuckyou_header)
content = urllib2.urlopen(req).read()
while len(content)&100:
print&try again...&
content = urllib2.urlopen(req).read()
print &Web page all length:& +str(len(content))
pattern=re.compile(r&http://m4.26ts.com/[.0-9-a-zA-Z]*.mp4&)
match = pattern.search(content)
the_url=match.group()
save_file(the_url,the_url[19:])
print &No video found.&
urls=[&http://www.46ek.c*m/view/22133.html&,]
print len(urls),
print & videos to download...&
for i in urls:
print count
download_url(i)
print &All done&
&/code&&/pre&&/div&
开头给自己打个小广告:有偿实现爬虫、数据分析、机器学习等各类代码 有需求请私信-------------------------------------------正文-------------------------------------------日更新:本文包含两个独立的代码,分别是基于python爬虫下载P***h…
&p&零基础学编程,用python入门是个不错的选择,虽然国内基本上还是以c语言作为入门开发语言,但在国外,已经有比较多的学校使用python作为入门编程语言。&br&&/p&&p&&b&具体怎么选择你的第一门编程语言可以看下图:&/b&&/p&&figure&&img src=&https://pic4.zhimg.com/50/b3ac1ae6cd7a_b.jpg& data-rawwidth=&2000& data-rawheight=&2210& class=&origin_image zh-lightbox-thumb& width=&2000& data-original=&https://pic4.zhimg.com/50/b3ac1ae6cd7a_r.jpg&&&/figure&&br&&p&好吧,废话说完了,下面是正文,零基础怎么学习python。&/p&&p&========================正文分割线==========================&/p&&p&&b&下面的内容是由浅入深,建议按照先后顺序阅读学习。&/b&&/p&&p&&b&0.Python简明教程&/b&&/p&&p&下载地址:&a href=&//link.zhihu.com/?target=http%3A//vdisk.weibo.com/s/BE2Z8B94-5w97& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&python简明教程中文.pdf&/a&&/p&&p&很简洁的一本教材,就算没有基础,你也可以像读小说一样,花半天时间就可以读完。&/p&&p&然后,下面这篇文章可以起到一个快速复习的作用:&/p&&p&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/1049.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&分分钟学会一门语言之Python篇&/a&&/p&&br&&p&&b&1.Python 开发教程&/b&&/p&&p&廖学峰大大的Python教程,我见过的写得最好的Python开发教程之一,包括Python2.7和Python3两个大版本的教程。&/p&&p&地址:&a href=&//link.zhihu.com/?target=http%3A//www.liaoxuefeng.com/wiki/958fa6d3a2e542c000& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Python教程 - 廖雪峰的官方网站&/a&&/p&&br&&p&&b&2.学完基础知识,接下来就是掌握一个实用的开发框架进行实战了。&/b&&/p&&p&Python有很多Web开发框架,大而全的开发框架非Django莫属,用得也最广泛.有很多公司有使用Django框架,如搜狐,腾讯等。以简洁著称的web.py,flask都非常易于上手,以异步高性能著称的tornado,源代码写得美如画,知乎,Quora都在用。以下是Django框架很不错的学习资料。&/p&&p&2-1)Django基础教程&/p&&ul&&li&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/575.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&被解放的姜戈01 初试天涯&/a&&/li&&li&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/578.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&被解放的姜戈02 庄园疑云&/a&&/li&&li&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/584.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&被解放的姜戈03 所谓伊人&/a&&/li&&li&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/587.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&被解放的姜戈04 各取所需&/a&&/li&&li&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/590.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&被解放的姜戈05 黑面管家&/a&&/li&&li&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/592.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&被解放的姜戈06 假作真时&/a&&/li&&li&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/594.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&被解放的姜戈07 马不停蹄&/a&&/li&&/ul&&p&2-2)Django练手项目(&b&使用Django开发博客&/b&):&/p&&ul&&li&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/1392.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&django常用命令&/a&&/li&&li&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/1393.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&django开发博客(1) 入门&/a&&/li&&li&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/1397.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&django开发博客(2) 模板和数据查询&/a&&/li&&li&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/1401.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&django开发博客(3) 静态文件、from应用与自定义&/a&&/li&&li&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/1405.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&django开发博客(4) comments库使用及ajax支持&/a&&/li&&li&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/1407.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&django开发博客(5) markdown支持、代码高亮、gravatar头像服务&/a&&/li&&li&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/1410.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Django最佳实践(中文版)&/a&&/li&&/ul&&b&3. Python实践项目&/b&&br&&ul&&li&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/1317.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&python项目实践一:即时标记&/a&&/li&&li&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/1320.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&python项目实践二:画幅好画&/a&&/li&&li&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/1325.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&python项目实践三:万能的XML&/a&&/li&&li&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/1327.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&python项目实践四:新闻聚合&/a&&/li&&li&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/1329.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&python项目实践五:虚拟茶话会&/a&&/li&&li&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/1331.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&python项目实践六:使用CGI进行远程编辑&/a&&/li&&li&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/1333.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&python项目实践七:自定义公告板&/a&&/li&&li&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/1335.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&python项目实践八:使用XML-RPC进行远程文件共享&/a&&/li&&li&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/1337.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&python项目实践十:DIY街机游戏&/a&&/li&&li&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/1339.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&python项目实践九:文件共享2-GUI&/a&&/li&&/ul&&b&4. 其他一些比较有用的资源&/b&&br&&a href=&http://www.zhihu.com/question//answer/& class=&internal&&如何入门 Python 爬虫? - 谢科的回答&/a&&br&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/255.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Python正则表达式指南&/a&&br&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/135.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&【干货】Python爬虫/文本处理/科学计算/机器学习/数据挖掘兵器谱&/a&&br&&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/1757.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Python WSGI详解&/a&&br&&br&最后,&a href=&//link.zhihu.com/?target=http%3A//www.code123.cc/255.html& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&http://www.the5fire.com/&/a&上也有很多好的学习资源.
零基础学编程,用python入门是个不错的选择,虽然国内基本上还是以c语言作为入门开发语言,但在国外,已经有比较多的学校使用python作为入门编程语言。 具体怎么选择你的第一门编程语言可以看下图: 好吧,废话说完了,下面是正文,零基础怎么学习python。=…
&p&首先声明一点,以下我所推荐的穿越小说都是自己已经看过的并且觉得值得大家看得小说。这些小说里面有大量的史实,能够让我们了解当时的历史,虽然主角部分是虚构的,但是发生在配角身上的故事一般都是有迹可循的,或者历史上确有其名的!让我们按时间顺序开始。&/p&&p&战国&/p&&p&&b&《寻秦记》&/b&这本上是最早的穿越小说了,里面的开金手指、当种马、开脑洞等穿越小说具有的特点应该为后面的小说铺开了道路,从此穿越小说一般都具有这种特点。不过我刚开始看的时候是拿它当小黄书看的,想看剧情的话还不如去看电视剧。&/p&&p&三国时期&/p&&p&这个时期我看过的有&b&《三国之最风流》、《汉魏文魁》、《三国之席卷天下》、《农夫三国》&/b&&/p&&p&现在我来介绍这些小说并写一下别人推荐的小说。&/p&&p&&b&《三国之最风流》&/b&赵子曰两部作品之一,话说老赵的小说考据之详实,情节之细腻,脑洞开的不大等特点,但是他的两部小说都太监了,真是让人遗憾啊。虽然太监了,但并不影响我推荐《三国之最风流》,里面主要讲的是荀贞主角从亭长做起,一步一个脚印的发展的故事,现在讲到了与曹操争斗了。非常值得一看&/p&&p&&b&《汉魏文魁》&/b&早期三国穿越小说经典,主要讲主角是勋从一个野人冒牌世家子第然后辅佐曹操经历的一系列故事,并且合理的演绎了主角改变历史后历史中的真实人物的命运,如司马懿、诸葛亮、曹昂、曹冲等,值得一看。&/p&&p&&b&《三国志席卷天下》&/b&主要讲主角从乞丐到皇帝到打遍全球的故事,脑洞开的得太大,我并不喜欢,当时是在别人的推荐下看的。&/p&&p&&b&《农夫三国》&/b&主要讲主角邓季邓疙瘩从一个黄巾余孽慢慢发展然后占地一方的故事,应该说是太监了,但并不妨碍主角统一天下,可以看一下。&/p&&p&然后我没看的但是别人推荐的三国类穿越小说有:&/p&&p&&b&《大汉帝国风云录》、《三国之召唤猛将》、《兵临天下》、《凤穿残汉》、《恶汉》、《悍妻》、《曹贼》、《贼三国》&/b&等推荐频率较高的作品,虽然没看过,但是很多人都推荐了,应该值得看一下。&/p&&p&魏晋南北朝时期&/p&&p&&b&《上品寒士》&/b&贼道三痴的作品,文笔优雅,考据详实、富有古风气息,主要讲主角陈操之穿越的到没落士族的偏支子弟上,为了重归士族而通过自己的努力并最终取得当时两大名门士族的子女陆家和谢家的成功的故事,主角努力的途径没有离开大环境而大开金手指,是我比较喜欢的一类,非常值得一看!&/p&&p&隋唐五代十国时期&/p&&p&&b&《隋乱》&/b&酒徒的隋唐三部曲之一,主要讲主角李旭从一个平民士子为躲避征兵逃到草原发生故事之后又只身回到隋朝经历平辽东隋末之乱最后没当成皇帝的故事,严格来说这并不是一部穿越小说,属于架空小说类,故事情节非常吸引人,值得一看,另外酒徒的隋唐三部曲只看这一部,感兴趣的可以全部都看完。&/p&&p&&b&《北唐》&/b&写穿越到五代十国的小说很少有人推荐,不知道是不是五代十国历史太复杂了,这部《北唐》写得非常好,主要讲主角李文革从一介饿殍到创立八路军藩镇到打下一片地盘之后就太监的故事,哎,网文界真是好文多太监,差文如神仙啊!&/p&&p&下面是一些我没看过但是很多人推荐的作品:&/p&&p&&b&《唐砖》、《晚唐》、《开国功贼》、《盛唐烟云》&/b&等推荐频率很高,书荒的时候可以看看&/p&&p&宋朝时期&/p&&p&&b&《新宋》&/b&新宋的地位我就不用说了,基本就是开宋穿小说之先河,主要将主角石越利用千年的知识积累,欲对北宋王朝的各个方面进行改革的故事,宋穿的话一般就是在王安石变法、宋末靖康之耻等可以做文章。&/p&&p&&b&《宰执天下》&/b&基本上就是《新宋》的对标作品,传说是作者不服《新宋》里面的一些情节在网络上争论,最后愤而写下《执宰天下》这部牛作,大牛之间的争论让我们这些吃瓜群众大饱眼福啊,一言不合就写书啊,什么时候我也有这种才气就好了。主要讲述主角韩冈从一落魄书生到宰相继承王安石改革成功的故事,里面主角经历的很多事件在当时是真实发生过的,也详细介绍了宋朝官职等大背景,考据还是比较详实的,非常值得一看!&/p&&p&&b&《宋时归》&/b&从不狗血奥斯卡作品,一贯的奥公公热血风格,主要讲主角萧言穿越到宋朝遇到岳飞韩世忠,带领他们收复燕云十六州然后被迫造反抵御金人,让靖康之耻不再发生的热血故事,可惜太监了,但并不妨碍他的热血。&/p&&p&&b&《赘婿》&/b&香蕉架空类作品,是我本人强烈推荐的小说,我觉得《赘婿》不仅仅是一部架空小说那么简单,香蕉的目的应该是想写成一本名著,里面的故事细腻,情节合理,胸怀广阔,真的是一部不可多得的小说,我已经三刷了,越看越回味,里面情节的起承转合都非常到位,属于精品中的精品。故事开头情节推进较慢,但是越到后面越激动人心,对儒家的思考非常深刻,强烈推荐!&/p&&p&以下虽然我没看过但打算去看的作品:&/p&&p&&b&《大宋的智慧》、《一品江山》&/b&等,这些作品推荐的频率是比较高的,值得一看&/p&&p&明朝时期&/p&&p&&b&《蚁贼》&/b&赵子曰另一部作品,赵公公的每一作品出来那是真的值得一看啊,主要讲主角邓舍从一名马匪到元末义军要割据辽东到征服朝鲜到占领山东最后准备一统天下而太监的故事,情节之合理,背景之真实,考据之详实非常考验作者的历史功底和文学素养,真真是好看至极啊!强烈推荐!&/p&&p&&b&《官居一品》&/b&三戒大师得意之作,主要讲述主角经历的从嘉靖时期到万历时期的一系列历史上真实发生过的大事件,最后主角所维护的制度很有特色,既不照抄资本主义,也没有社会主义,完全是作者根据当时的发展环境而演绎的制度,很多人说官居一品抄了明朝那些事儿和大明王朝1566,其实不管抄没抄,只要在作品中出现合理,有代入感的话那就是借鉴了。&/p&&p&&b&《雅骚》&/b&贼道三痴的文笔总是那么清秀隽永,让人仿佛置身于古代风流之中,心之所向。主角没有开金手指,只是按着当时的社会背景考科举,从一小士子最后过关闯将到状元,并竭力改变萨尔浒之战的故事!&/p&&p&&b&《窃明》、《虎狼》、《伐清》&/b&灰熊猫的明朝三部曲,内容是极好的,强烈推荐大家都去看看。这里主要讲灰熊猫写这三部曲的目的,第一步就是指控袁崇焕了,《窃明》一出来袁崇焕的搜索记录就嗷嗷的往上冲,各路大神发表各种观点,真的是一部现象级作品啊,还有里面的内容被网友们讨论的也不少,不管对错,我只能说这部作品是非常成功了的。&/p&&p&&b&《晚明》&/b&柯山梦所做,该小说讲述了一个脸皮极厚的办公室主任陈新和一个只会写程序的宅男技术员刘民有,两人穿越到末路的大明的故事!注意里面的叙述采用了敌我双方普通士兵的画面,给人一种真实感。&/p&&p&&b&《明末边军一小兵》&/b&纯粹的军事历史架空小说了,写得还是非常有激情的,但是看多了就有点审美疲劳了。&/p&&p&&b&《奋斗在新明朝》&/b&官场文类的神级佳作,语言诙谐风趣,对明朝官制考据详实,里面的主角也没开金手指,就是抄了一些诗词,而且在矛盾冲突中之前没人注意到的小细节会成为扭转事件的关键,读着读着就让人想着当官不易,特别是高官,各个都是人精,智商不够最好别参和!&/p&&p&&b&《临高启明》&/b&这部作品还有什么好说的呢,估计大多数人看过!基本就是建设工业社会的指导手册了,里面并没有一飞冲天,而是靠着发展工业扎扎实实打地盘,对明代社会风貌,思想动态、人物背景有着详细的介绍,只能说没看的人赶紧去看看吧,不要被人嘲讽。&/p&&p&&b&《回到明朝当王爷》&/b&种田文没什么好说的,月关的作品大都是这个风格,看了两篇基本就可以仿写。&/p&&p&&b&《大明武夫》&/b&特别白作品,可能是我当时心境和时间不太好,看的时候没什么感觉,但是这部仍有人大力推荐,还有其他的小说称为明朝三部曲,我看了这不就不想看下一步了,等以后书荒了就去看看吧!&/p&&p&&b&《枭臣》&/b&我是听说柳传志推荐的,我当时就去看了,结果很好,属于架空历史类的,里面主角的征战,组建军队,谋略等基本没有现代风格,属于情节推动,没有开金手指,情节紧凑,让人看了就放不下来!&/p&&p&别人大力推荐的作品:&/p&&p&&b&《顺明》、《锦衣夜行》、《庆余年》、《大明官》、《葬明》、《指南录》&/b&等架空穿越小说,推荐频率还是蛮高的!&/p&&p&清朝民国时期&/p&&p&&b&《篡清》、《1911新中华》&/b&奥斯卡公公作品,算是完结作品了吧,真心不容易啊,当然里面的内容还是一如既往的热血,貌似这就是奥公公作品的风格了。&/p&&p&&b&《民国投机者》&/b&考据详实,对中共早期黄埔军校的一些精英人物的特点介绍非常真实,让我知道了中共早期的杰出人物不仅仅是毛主席和周总理,如果一些杰出人物当时没有牺牲的话十大元帅应该由他们的位置。还有蒋介石的黄埔系精英介绍的也非常详实,因为主角就是蒋介石的黄埔精英。&/p&&p&&b&《赤色黎明》&/b&看着小说就相当于中共创立共和国提前到辛亥革命时期一样,各种革命时期著名文章段落引用非常熟练,可以看成是革命指导手册了!&/p&&p&&b&《国士无双》&/b&主要讲主角从一土匪经历民国所有重大事件,最后讲到文革时期逃到香港的故事,看完之后你会对民国整个历史都会有一个大体概念,结局也很合理,基本没有改变历史进程。&/p&&p&&b&最后&/b&,如果你已经看到这里来了,就动动你们的小指头点个赞吧,写这篇文章不容易(花了四个小时),我看完的小说然后再推荐出来更不容易,几乎是我看小说生涯的精品推荐了!&/p&
首先声明一点,以下我所推荐的穿越小说都是自己已经看过的并且觉得值得大家看得小说。这些小说里面有大量的史实,能够让我们了解当时的历史,虽然主角部分是虚构的,但是发生在配角身上的故事一般都是有迹可循的,或者历史上确有其名的!让我们按时间顺序开…
&p&5月13日更新:&/p&&ol&&li&新增 &b&RE文件管理器、全面屏手势、Syslock、Sky Mi、FastMiui、八戒助手&唐僧藏经&/b&&/li&&li&如何强制开启小米手机的全面屏手势(对于非全面屏手机)?推荐 &a href=&https://www.zhihu.com/question//answer/& class=&internal&&&span class=&invisible&&https://www.&/span&&span class=&visible&&zhihu.com/question/2751&/span&&span class=&invisible&&44118/answer/&/span&&span class=&ellipsis&&&/span&&/a& 的回答&/li&&/ol&&hr&&p&4月1日更新:&/p&&ol&&li&所有的 app 均可在 &a href=&//link.zhihu.com/?target=https%3A//resources.radiastu.com//awsome-android-apps/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&资源站&/a& 点击 app 名称&b&直接下载&/b&,不用再被百度网盘坑了 :)&/li&&li&新增12个 app,更新于:&/li&&/ol&&a href=&//link.zhihu.com/?target=https%3A//resources.radiastu.com//awsome-android-apps/& data-draft-node=&block& data-draft-type=&link-card& data-image=&https://pic4.zhimg.com/v2-0dd700c7000f4cda231dcffe34c37d4f_180x120.jpg& data-image-width=&351& data-image-height=&278& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&逆天的安卓app分享 · 资源站&/a&&ol&&li&推一下 &a class=&member_mention& href=&//www.zhihu.com/people/608b197ef9a0efecbaf6b1af17247d66& data-hash=&608b197ef9a0efecbaf6b1af17247d66& data-hovercard=&p$b$608b197ef9a0efecbaf6b1af17247d66&&@酷安网&/a&的回答:&/li&&/ol&&p&&a href=&https://www.zhihu.com/question//answer/?utm_source=wechat_session&utm_medium=social& class=&internal&&Android 是否有一些冷门但却逆天的 APP 呢?&/a&&/p&&p&提到了一种虚拟 Xposed,可以无需 root ,不用刷入 xp 而使用 Xposed 模块。&/p&&p&对于无法刷 xp 的设备简直就是福音。&/p&&p&(注:今天的更新与愚人节无关)&/p&&hr&&p&2月24日更新:&/p&&p&更新下载链接:
&a href=&//link.zhihu.com/?target=https%3A//pan.baidu.com/s/1nwFKpT3& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&https://&/span&&span class=&visible&&pan.baidu.com/s/1nwFKpT&/span&&span class=&invisible&&3&/span&&span class=&ellipsis&&&/span&&/a&&/p&&p&解压密码: &b&app&/b&&/p&&p&所有 App 介绍请见:&/p&&p&&a href=&//link.zhihu.com/?target=https%3A//resources.radiastu.com//awsome-android-apps/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&逆天的安卓app分享 · 资源站&/a&&/p&&p&可能包含某些敏感词,试了几个网盘,一旦分享,瞬间失效。&/p&&p&不得已,只能整个文件夹压缩并设置了密码。&/p&&p&&b&整理的过程挺辛苦的,如果我的回答对你有帮助,不妨留一个赞?&/b&&/p&&hr&&p&&br&&/p&&p&2月9日更新:&/p&&p&精简了文章,放置于我的资源站&/p&&p&&a href=&//link.zhihu.com/?target=https%3A//resources.radiastu.com//awsome-android-apps/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&逆天的安卓app分享 · 资源站&/a&&/p&&p&少了很多不必要的文字,更精准的分类,极简的版面。&/p&&p&以后就直接更新在那儿了&/p&&hr&&p&&br&&/p&&p&1月25日更新:&/p&&p&百度网盘和谐太快,无奈先用 GitHub 应急一下~&/p&&p&App 下载地址:&a href=&//link.zhihu.com/?target=https%3A//github.com/linyuxuanlin/Awsome-Android-apps& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&Awsome-Android-apps&/a&&/p&&p&手机打开网页,点击 view code 就可以查看了。&/p&&p&-----&/p&&p&1月23日更新:&br&&/p&&p&好多小伙伴说分享链接失效了,毕竟有些app并不是太和谐。。。周末重新更新一下吧。&/p&&p&另:大家有比较稳定的分享工具/平台推荐一下吗?&/p&&p&-----&/p&&p&日更新:&br&&/p&&h2&1.白描&/h2&&p&作为一款 OCR 文字识别应用,当你想获取照片中的文字,而又不想手动打字的时候,这个 app 绝对是你的必需。&/p&&figure&&img src=&https://pic4.zhimg.com/50/v2-6bdb3bafceca65a2c72f1d7_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1626& data-rawheight=&2664& class=&origin_image zh-lightbox-thumb& width=&1626& data-original=&https://pic4.zhimg.com/50/v2-6bdb3bafceca65a2c72f1d7_r.jpg&&&/figure&&figure&&img src=&https://pic1.zhimg.com/50/v2-efe60d32d1cae764de81b6_b.jpg& data-size=&normal& data-rawwidth=&1626& data-rawheight=&2890& class=&origin_image zh-lightbox-thumb& width=&1626& data-original=&https://pic1.zhimg.com/50/v2-efe60d32d1cae764de81b6_r.jpg&&&figcaption&识别后可以直接翻译&/figcaption&&/figure&&p&&br&&/p&&p&&b&下载地址&/b&:链接:&a href=&//link.zhihu.com/?target=http%3A//pan.baidu.com/s/1gfzjHtD& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&百度网盘&/a&
密码:4uvk&/p&&p&ps:为了大家能下载到最新的 app,以后就直接放酷安的下载地址得了:)&/p&&p&------&/p&&p&&br&&/p&&p&11月17日更新:&br&&/p&&p&关于下面的微X模块,安装后在桌面是看不到图标的,需要在xposed安装器或微信内才能看到。&/p&&p&关于xposed,推荐本问题下的两个很详细的回答: &/p&&p&&a href=&https://www.zhihu.com/question//answer/& class=&internal&&&span class=&invisible&&https://www.&/span&&span class=&visible&&zhihu.com/question/5570&/span&&span class=&invisible&&1954/answer/&/span&&span class=&ellipsis&&&/span&&/a&&br&&/p&&p&&a href=&https://www.zhihu.com/question//answer/& class=&internal&&&span class=&invisible&&https://www.&/span&&span class=&visible&&zhihu.com/question/5570&/span&&span class=&invisible&&1954/answer/&/span&&span class=&ellipsis&&&/span&&/a&&/p&&p&------&br&&/p&&p&10月28日更新:&/p&&h2&1.(xposed)微X模块&/h2&&p&这是一个超级强大的app。有了它,你的微信基本上无敌了。&/p&&p&功能非常多,自己在用的主要有这几个:&/p&&ul&&li&一键转发各种内容到朋友圈&/li&&li&群聊管理&/li&&li&自动回复&/li&&li&删僵尸粉&/li&&li&朋友圈伪集赞(千万不要点“全选好友”,会卡机的)&/li&&li&自动抢红包&/li&&li&&b&朋友圈防撤回&/b&,&b&评论防删除&/b&&/li&&li&消息防撤回&/li&&li&快速切换账号&/li&&/ul&&p&&i&截图为部分功能界面:&/i&&/p&&figure&&img src=&https://pic1.zhimg.com/50/v2-b35ffdc7da2c31c4c8a11e_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&720& data-rawheight=&1280& class=&origin_image zh-lightbox-thumb& width=&720& data-original=&https://pic1.zhimg.com/50/v2-b35ffdc7da2c31c4c8a11e_r.jpg&&&/figure&&p&感谢&a class=&member_mention& href=&//www.zhihu.com/people/ee6ad5edd7& data-hash=&ee6ad5edd7& data-hovercard=&p$b$ee6ad5edd7&&@Kryo&/a& 提供的&b&防撤回&/b&截图:&/p&&figure&&img src=&https://pic1.zhimg.com/50/v2-dffcdc16f4bebaf6437fbb_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&600& data-rawheight=&349& class=&origin_image zh-lightbox-thumb& width=&600& data-original=&https://pic1.zhimg.com/50/v2-dffcdc16f4bebaf6437fbb_r.jpg&&&/figure&&figure&&img src=&https://pic2.zhimg.com/50/v2-5f49aacab953ddc339a36_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&576& data-rawheight=&509& class=&origin_image zh-lightbox-thumb& width=&576& data-original=&https://pic2.zhimg.com/50/v2-5f49aacab953ddc339a36_r.jpg&&&/figure&&p&&br&&/p&&p&------&/p&&p&10月14日更新:&br&&/p&&p&部分知友反映某些App被杀毒软件检测到有病毒。我觉得,毕竟我分享的App有一些是用于破解的,所以。。。挺正常的。亲测没有问题,只不过自己也留个心眼,如果不希望有太大风险的话还是去正规的应用商店下载吧。。。&/p&&p&------&br&&/p&&p&&i&9月24日更新:&/i&&/p&&h2&1.图片信息&/h2&&p&这个app能把一张原始的图片分解出很多信息,如图:&/p&&figure&&img src=&https://pic4.zhimg.com/50/v2-247f7ceb47d_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&720& data-rawheight=&1280& class=&origin_image zh-lightbox-thumb& width=&720& data-original=&https://pic4.zhimg.com/50/v2-247f7ceb47d_r.jpg&&&/figure&&p&最重要的是地理位置信息,可以用来定位某个人 : )&/p&&p&&br&&/p&&p&所以,照片千万不要发原图,会暴露很多个人信息的。&/p&&blockquote&可以,这很社工。&/blockquote&&p&&br&&/p&&hr&&p&&br&&/p&&p&&i&9月3日更新:&/i&&/p&&h2&1.(xposed)微精灵&/h2&&figure&&img src=&https://pic3.zhimg.com/50/v2-e79b913c468f611dc636ebc_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic3.zhimg.com/50/v2-e79b913c468f611dc636ebc_r.jpg&&&/figure&&p&给微信上各种辅助功能,不过需要xposed&/p&&p&&br&&/p&&p&&br&&/p&&h2&2.阿里通电话&/h2&&figure&&img src=&https://pic2.zhimg.com/50/v2-0b0d354e01cd7c97f6101_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic2.zhimg.com/50/v2-0b0d354e01cd7c97f6101_r.jpg&&&/figure&&p&一个网络电话,可以变声。初始有10块钱话费。&/p&&p&如果自己写个脚本,还能造出一个轰炸机(嘿嘿嘿)&/p&&p&&br&&/p&&p&&br&&/p&&h2&3.TouchRetouch&/h2&&figure&&img src=&https://pic3.zhimg.com/50/v2-73ccbeae5bcedb0b460f2e4_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&506& data-rawheight=&900& class=&origin_image zh-lightbox-thumb& width=&506& data-original=&https://pic3.zhimg.com/50/v2-73ccbeae5bcedb0b460f2e4_r.jpg&&&/figure&&p&能去除你不想出现在照片中的杂物,比snapspeed的&b&修复&/b&功能似乎强了一点。&/p&&p&另:期望MIUI9也能集成这样的功能 :)&/p&&p&&br&&/p&&h2&4.掌上看家&/h2&&p&图我就不放了,免费版的广告挺多。。。&/p&&p&总之就是能让你的闲置手机成为一个网络摄像头,放在家里监控&/p&&p&&br&&/p&&p&&br&&/p&&p&------&/p&&p&&i&8月29日更新:&/i&&/p&&h2&1.&b&&u&&a href=&//link.zhihu.com/?target=https%3A//github.com/iweizime/WechatStepChanger& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&WechatStepChanger&/a&&/u&&/b&&/h2&&p&感谢评论区 &a class=&member_mention& href=&//www.zhihu.com/people/02b0f9d7d36a84c2d960b& data-hash=&02b0f9d7d36a84c2d960b& data-hovercard=&p$b$02b0f9d7d36a84c2d960b&&@苇子&/a& 的作品!抱歉忘了添加进回答~&/p&&p&超好用的一个微信步数修改的app,不需要xposed,只需要root权限,通过修改微信的文件直接修改步数,比我之前推荐的那个好用得太多了。&/p&&figure&&img src=&https://pic3.zhimg.com/50/v2-52498cfae860abf29465ae_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic3.zhimg.com/50/v2-52498cfae860abf29465ae_r.jpg&&&/figure&&figure&&img src=&https://pic4.zhimg.com/50/v2-effb6e113ef_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&1133& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic4.zhimg.com/50/v2-effb6e113ef_r.jpg&&&/figure&&p&不过,不要一次刷太多步数,也千万不要捐步,会被封号的~&/p&&p&感谢此app作者的推荐!如果你有好用的app,可以在评论区留言,我会整理后分享给大家。&/p&&p&&br&&/p&&p&&i&------&/i&&/p&&p&&i&8月28日更新:&/i&&/p&&h2&1.小圆角&/h2&&p&又一个来自酷安的app。&/p&&figure&&img src=&https://pic3.zhimg.com/50/v2-ac6fe8b9dfb6d9fb1ded_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic3.zhimg.com/50/v2-ac6fe8b9dfb6d9fb1ded_r.jpg&&&/figure&&p&如图,虽然现在看图片边角是黑色的,但是放到手机上,就和边框融合到一起了~&/p&&p&(有白色正面屏幕的手机是硬伤。。。)&/p&&p&很微小的细节,让屏幕像薄卡片一样,很material design化,个人超喜欢。&/p&&p&&i&------&/i&&/p&&p&&i&8月19日更新:&/i&&/p&&h2&1.一个木函&/h2&&figure&&img src=&https://pic4.zhimg.com/50/v2-bdd0882fdee1d1b0a4ffff04fe8d04ce_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&3288& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic4.zhimg.com/50/v2-bdd0882fdee1d1b0a4ffff04fe8d04ce_r.jpg&&&/figure&&p&↑如图↑ 各种想不到的功能。好多人向我要下载地址,不过,随着时间的推移,app可能会更新。如果想下载最新版本的,请到&b&酷安&/b&下载。懒?我的百度云分享里也能找到,应用内更新也是可以的。&/p&&p&&br&&/p&&p&&br&&/p&&h2&2.网盘搜索神器&/h2&&figure&&img src=&https://pic2.zhimg.com/50/v2-ada3908448a_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&1570& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic2.zhimg.com/50/v2-ada3908448a_r.jpg&&&/figure&&p&总之,能搜索到各种&b&意想不到&/b&的~&/p&&p&&br&&/p&&p&&br&&/p&&h2&3.微信自动回复&/h2&&figure&&img src=&https://pic2.zhimg.com/50/v2-27f23bc4b6852fbf0dd4a8d352b366a0_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic2.zhimg.com/50/v2-27f23bc4b6852fbf0dd4a8d352b366a0_r.jpg&&&/figure&&p&自动回复,不需要root权限。不过,过一段时间需要重新扫二维码。&/p&&p&能root和xposed的童鞋还是去找更高级的吧&/p&&p&&br&&/p&&p&&br&&/p&&h2&4.米隐&/h2&&figure&&img src=&https://pic1.zhimg.com/50/v2-65ad3f6cb09af_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic1.zhimg.com/50/v2-65ad3f6cb09af_r.jpg&&&/figure&&p&对于MIUI系统,这个app简直是太有用了!&/p&&p&平常在设置里都找不到的功能,在这个app里能直接调出。&/p&&p&&br&&/p&&p&&br&&/p&&p&5.谷歌插件&/p&&figure&&img src=&https://pic1.zhimg.com/50/v2-8d5c473f18_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&1339& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic1.zhimg.com/50/v2-8d5c473f18_r.jpg&&&/figure&&p&直接调出google的设置,和上面那个app差不多~&/p&&p&&br&&/p&&p&其他更新,见下文&b&xposed&/b&分组&/p&&ul&&li&xposed安装器(重要!玩xposed必需!)&/li&&li&机器人9号&/li&&/ul&&p&&i&------&/i&&/p&&p&&i&8月12日更新:&/i&&/p&&p&预更新:&/p&&ul&&li&tasker&/li&&/ul&&p&&i&注:本回答的大多数app来自酷安、Google Play、万宝乐和一些app分享群,我只是推荐一些自己觉得逆天的app,然后介绍一下而已。。。酷安大佬们请轻点喷。。。&/i&&/p&&p&&i&关于&b&妮媌&/b&这个app在文末有更新&/i&&/p&&p&&i&------&/i&&/p&&p&&i&8月12日更新:&/i&&/p&&h2&1.Auto.js&/h2&&figure&&img src=&https://pic1.zhimg.com/50/v2-b0e0a41c46c16c018e4ea04_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic1.zhimg.com/50/v2-b0e0a41c46c16c018e4ea04_r.jpg&&&/figure&&p&有点像&i&按键精灵,&/i&能代替手指执行一些重复而无聊的操作。&/p&&p&可以用app提供的操作模块,也可以自己写一段脚本。&/p&&p&&br&&/p&&p&&br&&/p&&h2&&b&2.万宝乐&/b&&/h2&&p&可以发现很多 &i&不可描述 &/i&的app&/p&&p&不放图,自己去体验一下吧~&/p&&p&&br&&/p&&p&&br&&/p&&blockquote&关于『(参考)&b&下载地址&/b&』:&br&因为我分享的app总是会更新的,我提供的只是文章截稿时最新的版本。&/blockquote&&p&8k赞的时候,奉上更多逆天的app~&/p&&p&&i&------&/i&&/p&&p&&i&更新于8月2日:&/i&&/p&&p&作为一个拥有300+个app的重度患者,我分享几个逆天的app:&/p&&p&&br&&/p&&h2&1.防蹭网大师&/h2&&p&&br&&/p&&figure&&img src=&https://pic1.zhimg.com/50/v2-c12c6d1785ccfaf6d0f27a1f5f7c6868_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&1237& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic1.zhimg.com/50/v2-c12c6d1785ccfaf6d0f27a1f5f7c6868_r.jpg&&&/figure&&p&&b&逆天的功能:&/b&&/p&&p&&b&不用管理员密码,阻止其他设备上网&/b&(需要root权限)&/p&&p&阻止之后,其他设备表面上依然能连网,不过是&b&没有流量传输的。&/b&&/p&&blockquote&&b&“让你抢我网速?不存在的!”&/b&&/blockquote&&p&&br&&/p&&h2&2.UZER&/h2&&figure&&img src=&https://pic3.zhimg.com/50/v2-244ea1f2d06eed66b3578_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1920& data-rawheight=&1080& class=&origin_image zh-lightbox-thumb& width=&1920& data-original=&https://pic3.zhimg.com/50/v2-244ea1f2d06eed66b3578_r.jpg&&&/figure&&p&&b&逆天的功能:&/b&&/p&&p&&b&用手机直接操作Word、PS、AI、PPT之类的大型电脑工具&/b&&/p&&p&(前提是手机能上网)&/p&&p&原理:直接操作网页端编辑,但效果非常棒!手机可以通过OTG/蓝牙连接鼠标键盘&/p&&p&我把这个app放在手机里,以备不时之需&/p&&blockquote&“哇你的手机能用Adobe AI ?”&/blockquote&&p&&br&&/p&&h2&3.Easy File Converter&/h2&&figure&&img src=&https://pic3.zhimg.com/50/v2-5f0c31de5e7d8e420b78_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&3360& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic3.zhimg.com/50/v2-5f0c31de5e7d8e420b78_r.jpg&&&/figure&&p&手机里的文件转换器&/p&&p&&b&逆天的功能:&/b&&/p&&p&&b&支持多种格式转换。&/b&&/p&&p&有时候,我们在手机里想转换一个文件的格式,总是得先传到电脑进行转换。用这个app直接解决了问题,省去了麻烦。&/p&&blockquote&“文件打不开?我用这个app转一下格式”&/blockquote&&p&&br&&/p&&p&&br&&/p&&h2&4.Village (原山寨云)&/h2&&p&度盘下载限速?试试这个app&/p&&p&&br&&/p&&figure&&img src=&https://pic4.zhimg.com/50/v2-fa37b5d2ff5ab472fadbeafe_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic4.zhimg.com/50/v2-fa37b5d2ff5ab472fadbeafe_r.jpg&&&/figure&&p&&b&逆天的功能:&/b&&/p&&p&&b&直接生成直链,导出下载(迅雷或其他下载器)&/b&&/p&&blockquote&“管它的限速呢”&/blockquote&&p&&br&&/p&&h2&6.超级视频&/h2&&p&&b&逆天的功能:&/b&&/p&&p&&b&能找到很多最新的电影&/b&&/p&&blockquote&“同学你的电影在哪找的?优酷怎么找不到?”&/blockquote&&p&&br&&/p&&h2&7.GGuardian&/h2&&p&一个游戏修改器,我试过八门神器、烧饼修改器、葫芦侠等等,只有这个在我手机上能用(我是小米6,不知道其他如何)&/p&&p&&br&&/p&&figure&&img src=&https://pic1.zhimg.com/50/v2-ace541d26e6394ccb5eec4c1af620808_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic1.zhimg.com/50/v2-ace541d26e6394ccb5eec4c1af620808_r.jpg&&&/figure&&blockquote&“你的9999999金币哪来的?”&/blockquote&&p&&br&&/p&&p&&br&&/p&&h2&8.多核观测器&/h2&&figure&&img src=&https://pic4.zhimg.com/50/v2-45ab2bb307e864dcb458edc6b74c0770_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic4.zhimg.com/50/v2-45ab2bb307e864dcb458edc6b74c0770_r.jpg&&&/figure&&p&嗯。。。一个可以看到内核运行情况的app&/p&&p&&b&逆天的功能:&/b&&/p&&p&&b&悬浮窗,实时监测,可以拿来装逼&/b&&/p&&blockquote&“手机还可以这样玩?”&/blockquote&&p&&br&&/p&&p&&br&&/p&&h2&9.共享单车优惠码&/h2&&figure&&img src=&https://pic1.zhimg.com/50/v2-ae2ace2cc8b6c164dbd5c_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic1.zhimg.com/50/v2-ae2ace2cc8b6c164dbd5c_r.jpg&&&/figure&&p&&b&逆天的功能:&/b&&/p&&p&&b&直接获取小黄车、摩拜的优惠码&/b&&/p&&blockquote&“你怎么骑共享总是免费的呢?”&/blockquote&&p&&br&&/p&&h2&10.远离手机&/h2&&figure&&img src=&https://pic1.zhimg.com/50/v2-ce1da7c1c269f75d15c8fbc_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic1.zhimg.com/50/v2-ce1da7c1c269f75d15c8fbc_r.jpg&&&/figure&&p&&b&逆天的功能:&/b&&/p&&p&&b&一旦按下按钮,除了关机以外,你真的没法解锁手机。好好读一本书吧。&/b&&/p&&p&&br&&/p&&p&&br&&/p&&h2&11.微号自动加群友&/h2&&figure&&img src=&https://pic4.zhimg.com/50/v2-767c5d526f54d193f09a4_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic4.zhimg.com/50/v2-767c5d526f54d193f09a4_r.jpg&&&/figure&&p&&b&逆天的功能:&/b&&/p&&p&&b&打开微信群,自动加群里的好友&/b&&/p&&blockquote&“微信好友就快满5000了。。。”&/blockquote&&p&&br&&/p&&p&&br&&/p&&p&&br&&/p&&p&———分割线———&/p&&p&xposed专用(手机root后安装&b&xposed安装器&/b&,在&b&xposed安装器&/b&中勾选某个&b&想要启用的app&/b&,然后重启手机,就能用了)&/p&&p&&b&注意:没有经验不要乱玩xposed,容易变砖&/b&&/p&&p&&br&&/p&&h2&&b&0.xposed安装器&/b&&/h2&&figure&&img src=&https://pic4.zhimg.com/50/v2-da64ffb5aae4_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic4.zhimg.com/50/v2-da64ffb5aae4_r.jpg&&&/figure&&p&如下图所示,勾选要启用的模块(原谅我MI6玩不起xposed,不能演示。。。)&/p&&figure&&img src=&https://pic4.zhimg.com/50/v2-6e22f3b9c_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic4.zhimg.com/50/v2-6e22f3b9c_r.jpg&&&/figure&&p&&br&&/p&&h2&1.QQ机器人&/h2&&p&emmm.....大家都知道,最近小冰和babyQ因为某些言论被拉去调教了。&/p&&p&图灵机器人暂时还没翻车。&/p&&p&可以用这个app接上&b&图灵机器人&/b&,拉进群里↓&/p&&figure&&img src=&https://pic3.zhimg.com/50/v2-dbb8ce7895_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic3.zhimg.com/50/v2-dbb8ce7895_r.jpg&&&/figure&&p&机器人开着的时候,我们在后台也能回复消息,假装某条消息是机器人发的~&/p&&p&总之~玩法很多,不过要记得用QQ小号开机器人(别问我怎么知道的)&/p&&blockquote&“你真的是机器人?”&/blockquote&&p&&br&&/p&&h2&2.运动修改器&/h2&&p&能修改QQ、微信运动的步数&/p&&figure&&img src=&https://pic4.zhimg.com/50/v2-6fd317df5cdbc0a4814d_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&610& data-rawheight=&202& class=&origin_image zh-lightbox-thumb& width=&610& data-original=&https://pic4.zhimg.com/50/v2-6fd317df5cdbc0a4814d_r.jpg&&&/figure&&p&虽然说不太好。。。&/p&&blockquote&“你把手机绑在狗身上了吧?”&/blockquote&&p&&br&&/p&&h2&3.微信防撤回&/h2&&p&抱歉没图。。。&/p&&p&可以看到别人撤回的信息&/p&&blockquote&“我都撤回了你怎么看到的?”&/blockquote&&p&&br&&/p&&p&&br&&/p&&h2&4.QQHook&/h2&&figure&&img src=&https://pic3.zhimg.com/50/v2-1bf24bce342_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&720& data-rawheight=&1280& class=&origin_image zh-lightbox-thumb& width=&720& data-original=&https://pic3.zhimg.com/50/v2-1bf24bce342_r.jpg&&&/figure&&p&QQ的一些高级操作,包括防撤回&/p&&blockquote&“还有这种操作?”&/blockquote&&p&&b&下载地址&/b&:&/p&&p&链接:&a href=&//link.zhihu.com/?target=http%3A//pan.baidu.com/s/1gfzjHtD& class=& external& target=&_blank& rel=&nofollow noreferrer&&&span class=&invisible&&http://&/span&&span class=&visible&&pan.baidu.com/s/1gfzjHt&/span&&span class=&invisible&&D&/span&&span class=&ellipsis&&&/span&&/a&
密码:4uvk&/p&&p&里面的&b&xposed专用&/b&文件夹&/p&&p&&br&&/p&&h2&5.QQSendPoke&/h2&&p&解除QQ戳一戳次数的限制&/p&&blockquote&“我流量都被你耗光了呐!”&/blockquote&&p&&br&&/p&&p&&br&&/p&&p&6.xMIUI&/p&&figure&&img src=&https://pic3.zhimg.com/50/v2-eb41b1dc6ffe51e1acd8b_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&720& data-rawheight=&1280& class=&origin_image zh-lightbox-thumb& width=&720& data-original=&https://pic3.zhimg.com/50/v2-eb41b1dc6ffe51e1acd8b_r.jpg&&&/figure&&p&&br&&/p&&p&MIUI的小伙伴可以试试,很多系统的个性化定制&/p&&p&&br&&/p&&p&&br&&/p&&p&———分割线———&/p&&p&&br&&/p&&p&今天的早些时候,这篇文章曾经被知乎封过,Mark一下&/p&&p&&感谢评论区大家的关心&/p&&figure&&img src=&https://pic4.zhimg.com/50/v2-ec20ebf95a4_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic4.zhimg.com/50/v2-ec20ebf95a4_r.jpg&&&/figure&&p&&br&&/p&&p&&br&&/p&&p&———又一条分割线———&/p&&p&关于&b&妮媌&/b&这个app,我的观点是,评判一个app的标准主要还是好不好用。&/p&&p&个人觉得挺好用的,尤其是解除MIUI的root的25秒 :)&/p&&figure&&img src=&https://pic3.zhimg.com/50/v2-cff3bbd57cf2c8a06e0a2_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&2505& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic3.zhimg.com/50/v2-cff3bbd57cf2c8a06e0a2_r.jpg&&&/figure&&p&&br&&/p&&figure&&img src=&https://pic2.zhimg.com/50/v2-313addebbacbaac8f192ec1_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic2.zhimg.com/50/v2-313addebbacbaac8f192ec1_r.jpg&&&/figure&&p&作者在评论区的留言:&/p&&figure&&img src=&https://pic4.zhimg.com/50/v2-42bdeb7cdce7ef60af09b6a_b.jpg& data-caption=&& data-size=&normal& data-rawwidth=&1080& data-rawheight=&2102& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic4.zhimg.com/50/v2-42bdeb7cdce7ef60af09b6a_r.jpg&&&/figure&&p&&a class=&member_mention& href=&//www.zhihu.com/people/efcf5fee3c40db96fcaf8d& data-hash=&efcf5fee3c40db96fcaf8d& data-hovercard=&p$b$efcf5fee3c40db96fcaf8d&&@妮哩萌萌&/a& &/p&&p&在之前的&b&下载地址&/b&里也有这个app。&/p&&p&&br&&/p&&p&&br&&/p&&p&求给个赞~&/p&&p&还有一大波&b&逆天&/b&的app正在编辑中~&/p&&p&&br&&/p&&p&我的网站: &b&&a href=&//link.zhihu.com/?target=http%3A//radiationstu.cn/& class=& wrap external& target=&_blank& rel=&nofollow noreferrer&&辐射工作站&/a&&/b&&/p&&p&个人微信: &b&linyuxuanlin&/b&&/p&&p&有兴趣可以加我微信,一起交流讨论~&/p&
5月13日更新:新增 RE文件管理器、全面屏手势、Syslock、Sky Mi、FastMiui、八戒助手&唐僧藏经如何强制开启小米手机的全面屏手势(对于非全面屏手机)?推荐
的回答4月1日更新:所有的 app 均可在
点击 app 名称直接下载,不用…
&p&(长文多图)&br&当然是MIUI好用,这是毫无疑问的。&br&—————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————&/p&&p&(评论区有个奇葩,各式各样的果粉也见了不少了,这个还真是头回见。想看看奇葩到什么程度的知友,可以直接翻到底)&/p&&p&先说说什么是“好用”,比如安卓手机数据线连接电脑即可传输文件,而苹果手机的iTunes的各种反人类操作,让过程变得复杂无比。在这一点上,我们就可以说安卓手机比苹果手机好用。比如,坐公交时安卓手机可以直接刷nfc支付而苹果手机不可以,在这一点上,我们就可以说安卓手机比苹果手机好用。&br&&br&问题是MIUI好用还是iOS好用,下面所列全部都是我觉得MIUI好的地方(前半部分是综合我的另一个回答而来),这些功能iOS有没有,评论区可以留言告知,谢谢。MIUI还有功能没提到的地方,也欢迎一并在评论区告知,然后我再补充,谢谢。(这篇回答是MIUI对比iOS,还有一篇回答是EMUI对比iOS:&a href=&https://www.zhihu.com/question//answer/& class=&internal&&&span class=&invisible&&https://www.&/span&&span class=&visible&&zhihu.com/question/6676&/span&&span class=&invisible&&8100/answer/&/span&&span class=&ellipsis&&&/span&&/a&,这篇回答,获得了3100赞,尤其是评论区特别精彩,光评论就有将近2500条,可是已经被果粉踩的快看不见了,有兴趣的欢迎来看看吧)&br&1,返回键。这个必须排第一!没有返回键的手机,你谈什么用户体验?!求千万别再提滑动返回了,这个滑动返回根本就代替不了返回键,好吗?&br&每次看下面的图片都想笑:&br&&br&&figure&&img src=&https://pic3.zhimg.com/50/v2-f234d9ebf3eb794fcf010a_b.jpg& data-rawwidth=&1024& data-rawheight=&1024& class=&origin_image zh-lightbox-thumb& width=&1024& data-original=&https://pic3.zhimg.com/50/v2-f234d9ebf3eb794fcf010a_r.jpg&&&/figure&&br&&br&2,批量管理联系人。&br&&br&3,呼吸灯。很多果粉说,这个功能没用,我想说的是,你这样说是因为苹果手机上没有这个功能!在实际使用中,比如有未接来电或者未接短信时,呼吸灯会闪烁提醒。但是苹果手机要想知道是否有未接电话,只能亮屏查看。有的安卓机,甚至可以设置呼吸灯的颜色,以提示不同的通知类型。不要拿闪光灯闪烁可以代替呼吸灯说事了,首先,安卓也可以闪光灯闪烁,其次,根本就代替不了,好吗!&br&下图为红米Note4的呼吸灯设置界面。&br&&figure&&img src=&https://pic2.zhimg.com/50/v2-45c53f6d7d6d451a4fac2b_b.jpg& data-rawwidth=&1080& data-rawheight=&839& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic2.zhimg.com/50/v2-45c53f6d7d6d451a4fac2b_r.jpg&&&/figure&&br&4,双卡双待。双卡双待是国产手机的标配了,而这也是苹果用户最渴望的功能吧?&br&&br&5,①,关机状态下,闹钟会响。而苹果手机不会。如果晚上忘记充电手机自动关机,第二天MIUI闹钟仍然会响,假如你有一个重要的会议要参加,你不会迟到。而苹果手机呢?你!迟!到!了!(评论区许多人都问既然忘记充电自动关机,为什么闹钟会响?这是因为智能手机为了保护电池,在自动关机的时候,电池其实还是有一部分电量的,当你开启了关机闹钟功能,这部分电量仍然能够保证闹钟响,原因就在这里)&br&②,MIUI闹钟还可以自动跳过节假日,节假日无需手动关闭闹钟也不会被闹钟打扰。苹果手机不行。&br&③,当你点击关闭闹钟时,系统会提示关闭一次还是关闭重复闹钟,防止出现自己关闭闹钟后忘记打开的问题。&br&④,闹钟即将响铃通知功能,防止某天提前起床以后闹钟持续响铃的问题。&br&⑤,生日当天铃声会替换为生日快乐歌。&br&&figure&&img src=&https://pic2.zhimg.com/50/v2-0f958bc992e6d0e37e46e01_b.jpg& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic2.zhimg.com/50/v2-0f958bc992e6d0e37e46e01_r.jpg&&&/figure&&br&&figure&&img src=&https://pic3.zhimg.com/50/v2-0a4cb1b1e5_b.jpg& data-rawwidth=&986& data-rawheight=&837& class=&origin_image zh-lightbox-thumb& width=&986& data-original=&https://pic3.zhimg.com/50/v2-0a4cb1b1e5_r.jpg&&&/figure&&br&&figure&&img src=&https://pic4.zhimg.com/50/v2-dfc1c2c3e1ce4945aa24_b.jpg& data-rawwidth=&1080& data-rawheight=&810& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic4.zhimg.com/50/v2-dfc1c2c3e1ce4945aa24_r.jpg&&&/figure&&br&&figure&&img src=&https://pic3.zhimg.com/50/v2-b644ff3ab8dc6aefa51bd_b.jpg& data-rawwidth=&1080& data-rawheight=&486& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic3.zhimg.com/50/v2-b644ff3ab8dc6aefa51bd_r.jpg&&&/figure&&br&6,通话录音。可以手动开启,也可以自动开启。&br&&br&7,正在玩手机时一个我不想接但是我又不想直接拒接的电话打进来,这个时候除非对方挂断,否则无法干别的。下图是MIUI在观看视频时来电界面,可以看到,来电并不会打断当前操作,如果这个电话我不想接但又不想拒接,不用管即可。苹果手机不同,它会直接终止看视频,强制跳到来电界面,你想玩游戏?要么接要么挂要么等对方挂掉。麻烦不?&br&应用场景:玩王者荣耀关键时刻时上司来电话了,可以假装没听见,过后跟上司回电话说:领导,刚才出去了,没听见,您有什么指示?&br&&figure&&img src=&https://pic1.zhimg.com/50/v2-bd4ba0adb1b_b.jpg& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic1.zhimg.com/50/v2-bd4ba0adb1b_r.jpg&&&/figure&&br&&figure&&img src=&https://pic4.zhimg.com/50/v2-347c51e07bb6_b.jpg& data-rawwidth=&1920& data-rawheight=&1080& class=&origin_image zh-lightbox-thumb& width=&1920& data-original=&https://pic4.zhimg.com/50/v2-347c51e07bb6_r.jpg&&&/figure&&br&8,MIUI拍照时能设置成像质量,内存不足时可以多拍几张照片。&br&&figure&&img src=&https://pic2.zhimg.com/50/v2-70d397e824fbc8af047e13_b.jpg& data-rawwidth=&1080& data-rawheight=&787& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic2.zhimg.com/50/v2-70d397e824fbc8af047e13_r.jpg&&&/figure&&br&&br&9,应用加密。&br&&br&&figure&&img src=&https://pic3.zhimg.com/50/v2-59ecb60b8f4b0a0b57b4003_b.jpg& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic3.zhimg.com/50/v2-59ecb60b8f4b0a0b57b4003_r.jpg&&&/figure&&br&&br&10,接通电话震动提醒。&br&&br&11,APP可以清除缓存文件&br&&br&12,指纹解锁无需亮屏即可解锁。感觉苹果手机的解锁过程是这样的:home键点亮屏幕~指纹模块通电~识别指纹~过渡动画~解锁到桌面。安卓是这样的:手指触摸指纹模块~识别指纹~解锁到桌面。哪种体验更好一目了然?&br&&br&13,强大的文件管理器。可以复制粘贴剪切分享,甚至还可以解压缩。&br&&br&14,可以很方便的更换手机铃声。&br&&br&15,三指截屏简直不要太好用!如果用不惯三指截屏还可以如下设置:&br&&br&&figure&&img src=&https://pic4.zhimg.com/50/v2-16a1bb2b762fc_b.jpg& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic4.zhimg.com/50/v2-16a1bb2b762fc_r.jpg&&&/figure&&br&&br&16,分屏功能。红米Note4的分屏功能正在适配中,借网上的图片一用,侵删。&br&应用场景:&br&&figure&&img src=&https://pic4.zhimg.com/50/v2-faddc0ce47a60f0ccb7f20_b.jpg& data-rawwidth=&951& data-rawheight=&539& class=&origin_image zh-lightbox-thumb& width=&951& data-original=&https://pic4.zhimg.com/50/v2-faddc0ce47a60f0ccb7f20_r.jpg&&&/figure&&br&&br&17,状态栏可以显示网速和剩余流量。&br&&br&18,移动流量下载无文件大小限制。&br&&br&19,红外线。下图为红外线可以控制的设备。&br&&br&&figure&&img src=&https://pic2.zhimg.com/50/v2-d65d769c1b98e3cc622ddbc_b.jpg& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic2.zhimg.com/50/v2-d65d769c1b98e3cc622ddbc_r.jpg&&&/figure&&br&&br&20,强大的安卓手机输入法,如百度搜狗,任意确定光标位置,任意选取屏幕元素,编辑长文本时非常方便。&br&下面的视频是我录制的MIUI的确定光标位置的视频,视频中的白点为手指的触摸点。前半部分为随意点击文本到哪里,光标就到哪里的情景。后半部分为用手指拖动光标时的情景。&br&&br&&br&&br&&/p&&br&&br&&br&&br&&br&&br&&br&&br&&br&&br&&a class=&video-box& href=&//link.zhihu.com/?target=https%3A//www.zhihu.com/video/911936& target=&_blank& data-video-id=&& data-video-playable=&& data-name=&& data-poster=&https://pic7.zhimg.com/v2-f9cd21c03fdfff6f564dc.jpg& data-lens-id=&911936&&
&img class=&thumbnail& src=&https://pic7.zhimg.com/v2-f9cd21c03fdfff6f564dc.jpg&&&span class=&content&&
&span class=&title&&&span class=&z-ico-extern-gray&&&/span&&span class=&z-ico-extern-blue&&&/span&&/span&
&span class=&url&&&span class=&z-ico-video&&&/span&https://www.zhihu.com/video/911936&/span&
&/a&&br&&br&&br&&br&&br&&br&&br&&br&&br&&br&&br&&br&21,快捷开关丰富且能定制。下面的开关可根据个人喜好随意设置。&br&&br&&figure&&img src=&https://pic2.zhimg.com/50/v2-f5ec0ec045772_b.jpg& data-rawwidth=&1080& data-rawheight=&4299& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic2.zhimg.com/50/v2-f5ec0ec045772_r.jpg&&&/figure&&br&&br&22,音乐软件下载的音乐可以共用。&br&&br&23,MIUI的nfc可以刷公交卡等(红米Note4没有,嘿嘿。)&br&&br&24,应用双开。不仅是微信QQ,贴吧这样的APP也可以。&br&&br&25,可以屏蔽垃圾短信。&br&&br&26,手机分身。设置2套密码,不同的密码进入不同的分身。如果你的手机害怕被另一半查看,嘿嘿,你懂的。还可以配合应用双开登录4个微信号。。。。。&br&&br&&figure&&img src=&https://pic2.zhimg.com/50/v2-b53988cfcacb0e537adc6_b.jpg& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic2.zhimg.com/50/v2-b53988cfcacb0e537adc6_r.jpg&&&/figure&&br&27,桌面图标可以任意摆放位置。&br&28,复制粘贴随心所欲,而苹果手机的复制粘贴能把人整崩溃!你想复制的内容,永远选不中!&br&29,安卓的文件传输太强大。&br&①,,手机连接电脑,手机瞬间变U盘。②,手机连接U盘(即为OTG功能),瞬间变电脑。有的手机甚至可以带动1t大的移动硬盘。OTG功能远不止于此,OTG甚至还可以为其它手机充电。③,手机蓝牙直接传输。④,WLAN文件传输。⑤,有nfc的话还可以nfc传输。这些传输方式没有任何限制,使用非常方便。&br&30,通话记录中的标记响铃次数功能,有未接来电时可通过此功能查看是否为“响一声”电话。&br&&br&&figure&&img src=&https://pic3.zhimg.com/50/v2-a14f83b4c5d191bd6a0de_b.jpg& data-rawwidth=&1080& data-rawheight=&215& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic3.zhimg.com/50/v2-a14f83b4c5d191bd6a0de_r.jpg&&&/figure&&br&&br&31,屏蔽按键功能,可以防止玩游戏误触到屏幕按键。此功能可以设置自动开启,也可以手动开启。&br&32,定时开关机功能,设置定时关机,防止睡觉时受到辐射伤害。&br&33,双击亮屏功能,无需点击任何按键即可点亮屏幕,方便查看时间通知短信等。&br&34,T9拨号功能,随便输入数字组合,只要你保存过的联系人号码中有这个组合,该号码就会出现在前几条。拨号时无需输入全部号码。&br&下图为输入8611时的拨号界面:&br&&figure&&img src=&https://pic3.zhimg.com/50/v2-6b0a7698bccc723a21be8e10_b.jpg& data-rawwidth=&1080& data-rawheight=&1076& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic3.zhimg.com/50/v2-6b0a7698bccc723a21be8e10_r.jpg&&&/figure&&br&35,手环智能开启“勿扰模式”功能,无需手动操作,智能手环根据用户睡眠情况,自动开启关闭勿扰模式。&br&36,OTG功能,u盘可以插到手机上,用手机进行各种操作。有的手机甚至可以带动1T大的移动硬盘。办公人士的必备。&br&37,负一屏的功能一键直达:快递自动追踪,微信支付宝快捷扫码支付,日程通知,全局搜索,快速记事。。。。所有这些功能,全部“一键直达”!&br&38,随意更换主题。自己如果会做主题,可以应用自己做的主题,手机界面不再千篇一律。&br&39,号码标记功能。陌生号码来电时,一看就知道这个号码是诈骗、推销还是卖保险的。&br&&br&&figure&&img src=&https://pic3.zhimg.com/50/v2-a54ebd68b9d3d66a91a984_b.jpg& data-rawwidth=&1080& data-rawheight=&215& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic3.zhimg.com/50/v2-a54ebd68b9d3d66a91a984_r.jpg&&&/figure&&br&&br&40,自定义按键的扩展功能。&br&&br&&figure&&img src=&https://pic4.zhimg.com/50/v2-8fa8379baaa28c8e34f0e8_b.jpg& data-rawwidth=&1080& data-rawheight=&1334& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic4.zhimg.com/50/v2-8fa8379baaa28c8e34f0e8_r.jpg&&&/figure&&br&&br&41,快速启动相机功能,无需解锁手机,连续快速按2下音量下键即可启动相机。&br&42,TF卡扩容。再大的手机内存都有用完的时候,TF卡扩容,安卓手机标配。&br&43,wifi密码分享功能,跟朋友便捷分享密码,无需繁琐的输入密码。&br&44,“小米漫游”,这个功能可以在出国时无需购买当地手机卡,甚至无需sim卡即可上网,且资费比中移动中联通的便宜。经常出国的人的福利。&br&下图为今天(1月27日的国际漫游价格),比移动便宜太多:&br&&figure&&img src=&https://pic2.zhimg.com/50/v2-169afdfdf0d_b.jpg& data-rawwidth=&1080& data-rawheight=&1727& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic2.zhimg.com/50/v2-169afdfdf0d_r.jpg&&&/figure&&br&45,小米手机在国际漫游时有以下3个设置选项:①,白名单应用可连网。②,全部应用可连网。③,禁止任何应用连网。这个功能可以出国时防止不需要连网得APP后台连网产生高额的国际漫游费用。&br&&br&&figure&&img src=&https://pic2.zhimg.com/50/v2-afba217d19e6c5d95caf_b.jpg& data-rawwidth=&1080& data-rawheight=&819& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic2.zhimg.com/50/v2-afba217d19e6c5d95caf_r.jpg&&&/figure&&br&46,验证码快捷复制功能,无需打开短信即可快捷复制验证码。&br&47,短信快速回复功能,无需打开“短信”即可快速回复。实现此功能有2种方式:短信设置为“允许悬浮通知”,来短信时直接点击悬浮通知回复;下拉通知栏,点击通知图标旁边的“回复”按钮回复。&br&&br&&figure&&img src=&https://pic3.zhimg.com/50/v2-8ff0fbf39c93b09027ca6b_b.jpg& data-rawwidth=&784& data-rawheight=&687& class=&origin_image zh-lightbox-thumb& width=&784& data-original=&https://pic3.zhimg.com/50/v2-8ff0fbf39c93b09027ca6b_r.jpg&&&/figure&点击“回复”按钮以后无需离开当前页面即可快速回复:&br&&figure&&img src=&https://pic3.zhimg.com/50/v2-5d15f9d4bbda_b.jpg& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic3.zhimg.com/50/v2-5d15f9d4bbda_r.jpg&&&/figure&&br&48,远程协助功能。此功能在双方同意下可以远程操作别人手机。主要用来帮助老年人以及小白。&br&&br&&figure&&img src=&https://pic2.zhimg.com/50/v2-95e98c78ee63148a2cee6e9af7ccdbb9_b.jpg& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic2.zhimg.com/50/v2-95e98c78ee63148a2cee6e9af7ccdbb9_r.jpg&&&/figure&&br&49,护眼模式,可以帮助喜欢阅读的人减少蓝光伤害。&br&50,通知过滤功能,可以智能识别不重要通知,避免骚扰。&br&51,智能短信,查询流量话费无需发送指令。&br&&br&&figure&&img src=&https://pic2.zhimg.com/50/v2-5b9a98f3be8ff01a1e86d25b5d229713_b.jpg& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic2.zhimg.com/50/v2-5b9a98f3be8ff01a1e86d25b5d229713_r.jpg&&&/figure&&br&52,不同窗口可以控制不同类型的铃声音量,而不影响电话铃声等的音量设置。&br&53,悬浮通知功能,此功能可以在来微信或者QQ消息时直接点击“一次”悬浮通知即可快速回复,无需进行如下繁琐操作:下拉通知栏——点击通知栏图标——回复&br&54,私密相册私密文件功能,开启此功能,即可在朋友借用你手机时,防止对方看到你不想让对方看到的私密文件。&br&55,锁屏画报功能,在锁屏界面自动更新你感兴趣的图片,并且可以保存。&br&&br&&figure&&img src=&https://pic3.zhimg.com/50/v2-d8e79c59ae2ad_b.jpg& data-rawwidth=&1080& data-rawheight=&2740& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic3.zhimg.com/50/v2-d8e79c59ae2ad_r.jpg&&&/figure&&br&56,自动重拨功能。拨打对方手机未接通时,无需手动重拨。&br&57,锁屏时屏蔽验证码功能,可在锁屏状态下屏蔽验证码,保护验证码安全。&br&58,屏幕录制功能,可用来制作教程等。&br&59,勿扰模式,开启此模式手机不响铃不振动,避免睡觉时被打扰,此功能可以定时开启。&br&60,省电模式,开启此模式可以大幅节约电量。&br&61,红包提醒功能,抢红包必备神器。温馨提示:切勿使用该功能抢过多红包,以免被腾讯判定作弊而导致封号。&br&62,垃圾过多提示功能,可以定时提示用户清理垃圾,给手机瘦身。&br&63,自动开启任务功能,到达设定时间,系统自动执行。&br&64,自动校正使用流量功能,防止流量超出。&br&65,自动聚合微信支付宝等支出情况,消费情况一目了然。&br&&br&&figure&&img src=&https://pic3.zhimg.com/50/v2-0b7d8ba802d5d79cd0c84c65c98a0be6_b.jpg& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic3.zhimg.com/50/v2-0b7d8ba802d5d79cd0c84c65c98a0be6_r.jpg&&&/figure&&br&66,安卓手机多为双卡双待手机,当插入一张卡时,通知栏只显示一个待机标志,这个小功能对强迫性患者来说真是太贴心了。&br&67,下图,亮点自寻。&br&&br&&figure&&img src=&https://pic2.zhimg.com/50/v2-ce1c89d013b3351a9d153_b.jpg& data-rawwidth=&1080& data-rawheight=&796& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic2.zhimg.com/50/v2-ce1c89d013b3351a9d153_r.jpg&&&/figure&&br&68,计算器功能太强大!&br&&br&&figure&&img src=&https://pic3.zhimg.com/50/v2-f5cc176cf3cd1d7de4589e_b.jpg& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic3.zhimg.com/50/v2-f5cc176cf3cd1d7de4589e_r.jpg&&&/figure&&br&&figure&&img src=&https://pic4.zhimg.com/50/v2-41db37f84da51ffc66ca8e822dbf94a5_b.jpg& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic4.zhimg.com/50/v2-41db37f84da51ffc66ca8e822dbf94a5_r.jpg&&&/figure&这个亲戚称呼计算有意思:&br&&figure&&img src=&https://pic1.zhimg.com/50/v2-da2e707caf9bebaffa478_b.jpg& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic1.zhimg.com/50/v2-da2e707caf9bebaffa478_r.jpg&&&/figure&&br&69,小米手机拨号界面输入“*#*#4636#*#*”即可查看手机使用情况,包括在什么时间开启的什么APP,在APP内停留多长时间都可以查询。开阔一下思路,比如,此功能可应用在如下情况:可以知道媳妇(老公)趁你睡觉时是否偷偷查看自己的手机,嘿嘿,别告诉自己的媳妇(老公)哦。&br&&br&&figure&&img src=&https://pic2.zhimg.com/50/v2-5fe810b2fd_b.jpg& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic2.zhimg.com/50/v2-5fe810b2fd_r.jpg&&&/figure&70,全局搜索可以搜索到的项目:&br&&figure&&img src=&https://pic4.zhimg.com/50/v2-caa9d781da5ec8a8c56692_b.jpg& data-rawwidth=&1080& data-rawheight=&2406& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic4.zhimg.com/50/v2-caa9d781da5ec8a8c56692_r.jpg&&&/figure&71,控制APP的推送通知:&br&&figure&&img src=&https://pic3.zhimg.com/50/v2-6b0d1afe6ea14a66d9b60_b.jpg& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic3.zhimg.com/50/v2-6b0d1afe6ea14a66d9b60_r.jpg&&&/figure&72,系统自带的拍照可以完成的功能,比如扫名片,无需额外安装APP&br&&figure&&img src=&https://pic2.zhimg.com/50/v2-65fdb5b396e87a_b.jpg& data-rawwidth=&1080& data-rawheight=&479& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic2.zhimg.com/50/v2-65fdb5b396e87a_r.jpg&&&/figure&73,截长屏功能&br&&figure&&img src=&https://pic2.zhimg.com/50/v2-8f1a21129eac53f54b255d0fe76134f4_b.jpg& data-rawwidth=&1080& data-rawheight=&1920& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic2.zhimg.com/50/v2-8f1a21129eac53f54b255d0fe76134f4_r.jpg&&&/figure&&br&通过以上的“无需”“一键”等可以看出,安卓手机的设计原则就是“简单”“易用”,一切的操作就是讲究“快速”“便捷”,安卓手机用久了就会有这样的感觉:任何“多一步”的操作都是难以忍受的。而用户就是上帝,用户想要什么功能,厂商就增加什么功能。用户不知道自己需要什么功能,厂商就开发出用户需要的功能。用户和厂商一起,不断的完善安卓手机,如此一来,安卓手机就越来越好用。果粉说安卓手机难用,这与安卓的现实情况不不符,是没有根据的。&br&&br&先到这里,想起来再补充。&br&&br&奇葩展示区:&br&&br&&figure&&img src=&https://pic3.zhimg.com/50/v2-b73a4e48c87b5a164e4b17_b.jpg& data-rawwidth=&1080& data-rawheight=&3222& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic3.zhimg.com/50/v2-b73a4e48c87b5a164e4b17_r.jpg&&&/figure&&br&&figure&&img src=&https://pic4.zhimg.com/50/v2-f2a90bce904ec0745725_b.jpg& data-rawwidth=&1080& data-rawheight=&1978& class=&origin_image zh-lightbox-thumb& width=&1080& data-original=&https://pic4.zhimg.com/50/v2-f2a90bce904ec0745725_r.jpg&&&/figure&
(长文多图) 当然是MIUI好用,这是毫无疑问的。 ————————————————————————————————————————————————————————————————————————————————————————————————…
&p&使用 Mac 已多年,沉淀了好一些好用的工具,有些比较偏极客,很多工具就是为了提高效率,&b&键盘流&/b&,&b&脚本流&/b&,&b&自动化流&/b&。&/p&&p&列举的应用虽然有些收费而且并不便宜。但是生产力工具贵不贵,真不能单纯看价钱,如果 ¥500的东西给你节省了20%的时间,这交易难道不划算吗?别抠几个钱,找到适合自己的最锋利的刀,分分钟赚回来。另外,提倡正版。&/p&&p&排名不分先后,想到哪个写哪个,多图。&/p&&p&&br&&/p&&p&&b&很多人在私信里、评论里要一些别的应用的推荐或者使用建议。&/b&&/p&&p&&b&重复说不是程序员的风格,所以特地开了专栏来写,主要写 Mac/iPhone 平台上好用的工具与应用。&/b&&/p&&p&&b&需要的关注吧:&/b&&/p&&a href=&http://zhuanlan.zhihu.com/scripts& data-draft-node=&block& data-draft-type=&link-card& data-image=&https://pic2.zhimg.com/v2-8adb1ca43f38a358daa82125aa8bcafd_ipico.jpg& data-image-width=&200& data-image-height=&200& class=&internal&&Scripts&/a&&hr&&p&&b&日更新:&/b&有挺多 App 已经过时,感觉有义务更新一下,同时也推荐一些更好用的上来。&/p&&p&&br&&/p&&h2&Snipaste&/h2&&p&没有介绍 Snipaste 天理不容。是在一年前才开始使用这个截图软件,听说是从 Windows 平台迁移过来的。功能极其强大,基本上干啥都行了,甚至强大到使用起来并不是很简洁。&/p&&ul&&li&推荐指数:★★★★&/li&&li&运行平台:MacOS&/li&&li&价格:免费&/li&&li&效率提高:15%&/li&&li&相关地址:&a href=&//link.zhihu.com/?target=https%3A//www.snipaste.com/& class=& wrap external& target=&_blank& rel=&nofollow noref

我要回帖

更多关于 万宝乐热水器 的文章

 

随机推荐