做积极的事情改善精力
Just Do IT
这个时候发现,当生活开始做了一件积极的事情后,反而会让你更有能量和精力。因为我这个时候,觉得每天除了健身之外,我还可以做些其他的积极的事情,所以后来在我们社团的群里就主动提出了想要学习。然后群里的大佬翁学长就发来一个网站,说就学这个网站(FreeCodeCamp)的内容。
这个网站以做题的形式,用一道道题来学习知识点。然后我就开始在这个网站上又开始学习了。
如何克服厌学的情绪
How to
我其实也不是每天都特别愿意做,总有厌学的时候对吧,那厌学的时候有什么能坚持下去的技巧呢?
$ python3.5
Python 3.5.1 (default, Dec 18 2015, 00:00:00)
GCC 4.8.4 on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> print("Hello campers!")
Hello campers!
>>> 1 + 2
3
>>> exit()
$
>>> import this
The Zen of Python, by Tim Peters
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than *right* now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!
mailLinux的邮件程序外观不佳,但确实很有帮助。您可以创建一条消息,并在一个命令中添加文本,收件人和附件。例:echo "We're having a great time." | mail -s "Wish you were here!" -A postcard.png -t [email protected]
cut当您有一个带有分隔符的字符串时,用于cut过滤某些字段。例:echo "this, that, and the other" | cut -d, -f2 # "that"