March 05th, 2018 Week 10th Monday
Fortune favors the bold.
勇者天佑。
It has been increasingly apparent that courage is the main quality we need to start our own business, it can't make one rich being an ordinary employee.
Every day, every moment, millions of people dream of starting a business, but relatively few actually do it.
Incredibly, the most educated and brilliants are often the most fearful of taking the plunge.
Perhaps fear of failure is most acute in those who have never or rarely failed.
Why do so many of us think going into business is a great choice, but still refuse to become one of those entrepreneurs?
It could be the fear of losing our golden handcuffs, the cash and other benefits that come with employment.
After all, most of us believe in the old saying that a bird in hands is better than two in the bush.
We prefer a sure thing, even if the potential gain in the other option is much larger.
What a pity. But if we don't have the courage to start some new career, it may be the best choice to fulfill our responsibilities as perfect as we can.
Go after what you really love and find a way to make that work for you, and then you will be a happy person.
追求你真正热爱的,并能充分利用,你就是幸福的。
From Tom Petty.
But it is quite difficult for many people to find out what they really love and what can bring them satisficatons and stimulations.
Through their life, they just earn a living, which may be a tough thing as well.
Sometimes even though they know the answer, they don't dare to pursue those things because there are too many other things they must be responsible for.
In a word, wealth is the most important thing to all of us, we only have the courage to go after our dreams if we have enough wealth, otherwise we may have many worries behind.
It would be better if I can find more stimulation at my work.
Some people say it isn't hard to find positive stimulation if we look for it, no matter what our role and no matter where we work.
But I think that really matters a lot.
Maybe I should open my eyes to other possibilities.
March 05th, 2018 Week 10th Monday的更多相关文章
- March 09th, 2018 Week 10th Friday
All good things must come to an end. 好景无常. Love is when the other person's happiness is more importa ...
- March 08th, 2018 Week 10th Thursday
Easy come, easy go. 易得则易失. Easy come, easy go, I finally undestand the phrase through somewhat hard ...
- March 07th, 2018 Week 10th Wednesday
Better later than never. 亡羊补牢,时犹未晚. Time and again all of us are told to complete the tasks assigned ...
- March 06th, 2018 Week 10th Tuesday
Hope for the best, but prepare for the worst. 抱最好的愿望,做最坏的打算. To hope for the best and prepare for th ...
- March 04th, 2018 Week 10th Sunday
Tomorrow never comes. 我生待明日,万事成蹉跎. Most of my past failures can be chalked up to the bad habit of pr ...
- 【启发式搜索】Codechef March Cook-Off 2018. Maximum Tree Path
有点像计蒜之道里的 京东的物流路径 题目描述 给定一棵 N 个节点的树,每个节点有一个正整数权值.记节点 i 的权值为 Ai.考虑节点 u 和 v 之间的一条简单路径,记 dist(u, v) 为其长 ...
- Codechef March Cook-Off 2018. Maximum Tree Path
目录 题意 解析 AC_code @(Codechef March Cook-Off 2018. Maximum Tree Path) 题意 给你一颗\(n(1e5)\)个点有边权有点权的树,\(Mi ...
- March 10th, 2018 Week 10th Saturday
All good things must come to an end. 好景无常. Love is when the other person's happiness is more importa ...
- July 05th. 2018, Week 27th. Thursday
Pleasure in the job puts perfection in the work. 乐于工作才能有完美表现. From Aristole. Do you want promotion? ...
随机推荐
- JAVA实现ATM源代码及感想
源代码 //20173626 信1705-2 郑锦package ATM;import java.io.IOException;import java.io.File;import java.io.F ...
- [转]php 图片验证码生成 前后台验证
本文转自:https://www.cnblogs.com/xiaoyezi/p/3541195.html 自己从前一段时间做了个php小项目,关于生成图片验证码生成和后台的验证,把自己用到的东西总结一 ...
- c# Cookie,Session,Application,Cache 四种缓存使用情景
好记性不如烂笔头,记录一下C#缓存使用的情景模式....个人理解,不正之处,欢迎指正 讨论 Cookie,Session,Application,Cache 四种,有的缓存情景对人,有的缓存情景对事儿 ...
- T-SQL :SQL Server系统数据库(二)
master:master数据库储存实例范围的元数据信息,服务器配置,实例中的所有数据库信息和初始化信息. Resource:Resource数据库是一个隐藏,只读数据库,存储所有系统对象的定义.当查 ...
- 菜鸟入门【ASP.NET Core】15:MVC开发:ReturnUrl实现、Model后端验证 、Model前端验证
ReturnUrl实现 我们要实现returnUrl,我们需要在注册(Register)方法中接收传进的returnUrl并给它默认值null,然后将它保存在ViewData里面 然后我们定义一个内部 ...
- [angularjs] angularjs系列笔记(六)http
读取服务器json数据,get方式 <body> <div ng-app="Home"> <div ng-controller="httpT ...
- Java集合性能分析-疯狂Java讲义
一.各Set实现类的性能分析 HashSet和TreeSet是Set的两个典型实现.HashSet的性能总是比TreeSet好(特别是最常用的添加.查询元素等操作),因为TreeSet需要额外的红黑树 ...
- js-dot.js
//小结// toExponential 保留小数点( 0-20 bit ) document.writeln(Math.PI.toExponential(0)); //3e+0 document.w ...
- java 不使用paint方法进行画图
private Graphics2D g; g = (Graphics2D) getGraphics();
- Android笔试题三
1.java堆得Young区由哪些组成: Java堆由Perm区和Heap区组成,Heap区由Old区和New区(也叫Young区)组成,New区由Eden区.From区和To区(Survivor)组 ...