Skip to main content

有了YouTube,什么电视机顶盒都是浮云


爸妈过来带孩子,最大的头痛就是怎么给他们看中文节目。一直没有买麒麟电视之类的
,主要是听过太多cancel麻烦的故事,碰巧老爸懂点电脑,所以一直是直接把一台旧台
式机连在电脑上,另外还接了一个20寸显示器,和电视同步的。

用过一段时间后老爸不胜其烦,直接回到他的laptop上去了,老妈就没辙了。好在
TouchPad刷了cm9后,操作基本简单,告诉她几个常用的视频软件,像pps, pptv,
youku之类的,就让她自己慢慢琢磨(好吧,我承认不孝)

然后老妈找到了优酷的连续剧,结果10次有9次是网络不给力,连接不上!鄙视优酷。
想起大部分的连续剧都在YouTube上有,于是给老妈做了n多的播放列表,可以直接播放
的。起码解决了在TouchPad上看中文连续剧的问题。

可是老妈其实还是很喜欢跟国内电视节目的,老是给她往播放列表里加也不现实,也没
那个时间,直到发现江苏卫视的几个频道都是在YouTube上实时更新的,只要直接
subscribe就好了!碰巧老妈非常喜欢江苏卫视的节目,这下就好了,随时都可以看,
也不用我担心更新的问题了!

目前暂时是让老妈在蓝光机上用YouTube app看,当然还得我给她开机。等mx2收到后(
现在不知道是到了芝加哥还是还在深圳等上飞机)就让老妈去mx2上面看,起码基本操
作和TouchPad是一样的,转换过来会很顺手。

唉,老人家在美国就这些娱乐了

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...