优客李李

「给你的生活加点阳光!」

In the beginning, when the Chinese Udacity came out, I was thinking to get the 1-month-free-trial of Nanodegree in Udacity. But after the orientation, making profile and resume, submitting the purp...

Preparation for Google

I desire to be hired by Google. But I need some update of myself. I should get to know better of myself, see my advantages and disadvantages; Google Resume. I need finish readin...

How To Navigate The Up And Downs Of Learning To Code (by_Code Conquest)

I LOVE this article. I do. This is the original link. This is a guest post from Joyce Akiko who helps freelancers get their start in the working world. Enjoy the read and feel free to ask Joyce a...

Setting Up Sublime Text 3 With Terminal

Nowdays I’m learning “Git and Github” in Udacity, setting up my Sublime Text 3 with Terminal. 这几天我正在Udacity上学习Git and Github这门课,以下是我设置Sublime Text3 和Terminal(终端)配对的大概步骤。 Pay Attention: I...

Note of command line on wether hiding the system folds or not

使用终端命令:显示 Mac 隐藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool true 隐藏 Mac 隐藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool false 使用打开和保存对话框:在打开和保存对话框中,有一个方便的...

The importance of review

I always hate to review stuffs, such as movies, books, and of course the online courses in Udacity. But here I am, willing to say it’s really really important to review it because you never know ho...

冥想-2016年4月2日

今天虽然按计划进行了,但是效率依然不高。不够满意。 明天计划上午继续coding,1个小时,然后整理买车的问题,中午看车,下午coding和driver’s manual。晚上暂不做安排。 关于方向,我又想了一遍。 1,视频制作; 2,front-end engineer。 关于第1点,有如下分析: 视频制作可能更依赖一个团队,而且是比较固定的团队,这样不利于以后...

米国第1个月

来美国一个月了。写点随笔。 2月24号到了Pittsburgh,找了几天租房信息(最后也没定下来究竟租哪个),在家窝着看了点美剧,然后,我和老婆就去旅行了。 3月3号还是4号开始的,我也忘记了,总之,我们选择了hitchhick。坐公交车去Pittsburgh北部,找到一个类似高速公路的地方,开始搭车。两天时间,一共只搭到2辆车。真是不知道用错了打开方式还是美国确实不流行搭车。第1辆车是...

WordPress学习笔记-SEO、自定义工具栏、仪表盘下新增分类

今天晚上学了两个知识: SEO智能注入meta标签的方法; 自定义工具栏,在[文章编辑]下方添加自定义工具栏,用以添加文章简介、原文链接等信息; 仪表盘下新增一个目录(本文用[公告]举例),并实现其功能,使其区分与[文章][页面]等。 > > SEO注入meta标签的方法是: > > ...

纯CSS实现tab切换

纯CSS实现tab切换 转自:纯CSS实现tab切换 tab切换的核心就是找出被选中的元素,显示与之对应的内容显示,这一过程可以方便的用js实现,但用纯CSS实现显得更加简洁。 CSS虽然无法知道一个元素要对应的显示内容,但配合input元素CSS就可以知道那个元素被选中了。纯CSS实现tab切换的原理就是: 当一个type为radio的input元素被选中时,使用:checked选择符...