October 26th, 2017 Week 43rd Thursday
For success, attitude is equally as important as ability.
为取得成功,态度与能力一样重要。
Today I read a news about the world's first photovolatic highway which is currently built in Jinan, the construction work nearly comes to the end.
According to the news, the 2-kilometer-long special section of Jinan's southern ring road will be the first photovalitic highway in the world. It have three layers, the bottom will be an insulating layer to prevent moisture from getting to the photovaltatic devices in the middle layer, and the top will be the protection layer built by transparent concrete.
The aim of the project is to provide power for charging poles.
Amazing. The similar idea had risen in my brain when discussing the problem of charging for electric cars with my colleagues.
I had never dreamed that the idea would be realized so early and so quickly.
What a fast-developing world.
Keep your fears to yourself, but share your courage with others.
把恐惧留在自己心里,把勇气分享给大家。
From Robert Louis Stevenson.
Share your happiness with others, keep your miseries to yourself.
But who can help you relieve your miseries?
Maybe only yourself.
However, if everyone can share his courage, experience and happiness with others, maybe there would be need to worry about those unhappinesses.
As a memeber in this talented team, I really hope my experience and perspective can add something poistive to the team, not something negative.
I must build up the foundation, the platform which will run the algorithms of others as fast and as perfect as I can.
The sands are running out, but my progress is so slow.
Anxious and helpless.
Today I find a very useful plugin for coding ROS-programs within QtCreator.
And I want to highlight that there are many related resources on the internet, so what about spending more time on the things that would produce some beneficial results for our career-promotion.
http://rosindustrial.org
October 26th, 2017 Week 43rd Thursday的更多相关文章
- October 28th, 2017 Week 43rd Saturday
All I ever wanted was a single thing worth fighting for. 我想要的只不过是一件能让我奋不顾身的事业. Stop complaining the ...
- October 27th, 2017 Week 43rd Friday
The only thing predictable about life is its unpredictability. 人生唯一可以预知的,就是它的变化莫测. Is it really unpr ...
- October 25th, 2017 Week 43rd Wednesday
Perseverance is not a long race; it is many short races one after another. 坚持不是一个长跑,她是很多一个接一个的短跑. To ...
- October 24th, 2017 Week 43rd Tuesday
We can't give up trying. The fight was worth it. 我们不能放弃尝试,奋斗是值得的. When doing researches in some cutt ...
- October 23rd, 2017 Week 43rd Monday
Champions have the courage to keep turning the pages because they know a better chapter lies ahead. ...
- October 22nd, 2017 Week 43rd Sunday
Yesterday is not ours to recover, but tomorrwo is ours to win or lose. 我们无法重拾昨天,但我们可以选择赢得或者输掉明天. Eve ...
- October 19th 2017 Week 42nd Thursday
If you remember me, then I don't care if everyone else forgets. 只要你记得我,我不介意整个世界都把我遗忘了. I can't follo ...
- October 12th 2017 Week 41st Thursday
Be happy for this moment. This moment is your life. 为这一刻感到高兴,这一刻是你的人生. Yesterday Tencent became Asia ...
- October 05th 2017 Week 40th Thursday
Happiness is to find someone who can give you warm and share your life together. 幸福,就是找一个温暖的人过一辈子. Y ...
随机推荐
- es6学习笔记10--箭头函数
基本用法 ES6允许使用“箭头”(=>)定义函数. var f = v => v; 上面的箭头函数等同于: var f = function(v) { return v; }; 如果箭头函 ...
- 并发编程之 SynchronousQueue 核心源码分析
前言 SynchronousQueue 是一个普通用户不怎么常用的队列,通常在创建无界线程池(Executors.newCachedThreadPool())的时候使用,也就是那个非常危险的线程池 ^ ...
- webpack4+react多页面架构
webpack在单页面打包上应用广泛,以create-react-app为首的脚手架众多,单页面打包通常是将业务js,css打包到同一个html文件中,整个项目只有一个html文件入口,但也有许多业务 ...
- .Net Core MVC实现自己的AllowAnonymous
全局过滤,在Startup中ConfigureServices里面添加如下代码 services.AddMvc(options => { options.Filters.Add(typeof(M ...
- sql2005 新加的函数 row_number ()
1:数据表 2:问题:查询各个部门的最低工资的userid号 select a.* from (select ROW_NUMBER() over(partition by dept order by ...
- Scott用户的表结构
在Oracle的学习之中,重点使用的是SQL语句,而所有的SQL语句都要在scott用户下完成,这个用户下一共有四张表,可以使用: SELECT * FROM tab; 查看所有的数据表的名称,如果现 ...
- 【模板】堆优化 + dij +pair 存储
就是短 感谢Cptraserdalao的博客 #include<bits/stdc++.h> using namespace std; struct node { int val,num; ...
- 教你用Cordova打包Vue项目
现在国内越来越多的开发者使用Vue开发混合app,但是当大家开发完成过后才发现不知道该怎么将Vue项目打包成app. 据我现在的了解打包Vue项目目前流行的就是使用weex和cordova.weex是 ...
- unity中生成一个GUI格子(始终居中)
1.Script程序 using UnityEngine; using System.Collections; public class GUITest : MonoBehaviour { [Seri ...
- 【代码笔记】iOS-NSTimer
代码: RootViewController.h #import <UIKit/UIKit.h> @interface RootViewController : UIViewControl ...