Just for Today
Just for today I will try to live through this day only and not tackle my whole life problem at once.I can do something for twelve hours that would appall me if I had to keep it up for a lifetime.
Just for today I will be happy.This assumes to be true as Abraham Lincoln said,"Most folks are as happy as they make up their minds to be."
Just for today I will adjust myself to what it is,and not try to adjust everything to my own desires.I will take my"luck"as it comes.
Just for today I will try to strengthen my mind.I will study.I will learn something userful.I will not be a mental loafer.I will read something that requires effort,thought and concentration.
Just for today I will exercise my soul in three ways.I will do somebody a good turn and not get found out;if anybody knows of it,it will not count.I will do at least two things I don't want to do just for exercise.I will not show anyone that my feelings are hurt:they may be hurt,but today I will not show them.
Just for today I will be agreeable.I will look as well as I can,dress becomingly,talk low,act courteously,criticize not one bit,and try not to improve or regulate anybody but myself.
Just for today I will have a program.I may not follow it exactly,but I will have it.I will save myself from two pests:hurry and indecision.
Just for today I will have a quiet half hour all by myself and relax.During this half hour,sometime,I will try to get a better perspective of my life.
Just for today I will be unafraid.Especially I will not be afraid to enjoy what is beautiful,and to believe that as I give to the world,the world will give to me.
随机推荐
- jenkins,SVN构建总是clean目录,回归失败
近期发现配置的jenkins任务打包时间极长,经过定位为svn版本的问题,不同的svn版本.svn的信息存在不一致. 解决: 升级服务器svn版本. 调整jenkins系统设置: 测试通过(回滚成功) ...
- Spring Ioc-依赖注入的几种方式
一 setter方法注入 配置文件如下: <bean id="helloAction" class="org.yoo.action.SpringSetterHell ...
- php 设计模式之策略模式
策略模式:定义算法,并将其封装起来,让它们之间可以互相替换,此模式让算法的变化独立于使用算法的客户. 步骤:1.抽象策略角色:定义接口或抽象类 2.具体策略角色:实现该接口(抽象类),即具体的算法实现 ...
- 管理 Machine - 每天5分钟玩转 Docker 容器技术(47)
用 docker-machine 创建 machine 的过程很简洁,非常适合多主机环境.除此之外,Docker Machine 也提供了一些子命令方便对 machine 进行管理.其中最常用的就是无 ...
- HTML随笔1
1.编号列表: <ol type="A" start="1"> //type中有"A","1",&qu ...
- c#中Class和Struct使用与性能的区别
在Unity中很多已经定义为结构体的数据结构 Vector2, Vector3 和 Vector4 Rect Color和Color32 Bounds Touch 1.Class为引用类型,Str ...
- java循环
.增强for循环和iterator遍历的效果是一样的,也就说增强for循环的内部也就是调用iteratoer实现的(可以查看编译后的文件),但是增强for循环 有些缺点,例如不能在增强循环里动态的删除 ...
- create pfile from spfile;
sql>create pfile from spfile; 生成的文件在$ORACLE_HOME/dbs/下边 和spfile在同一个目录下 但是名字已经变成了init$oracle_si ...
- NodeJS项目迁移兼Ubuntu下NodeJS环境部署
前言 之前做的几个项目都托管在阿里云服务器,但是最近要到期了.想着到底要不要续期,毕竟100/月.后面看着阿里云有个活动,800/三年.果断买下.环境部署折腾了一天,其中也遇到几个坑. 目录 一.安装 ...
- Handler实现线程之间的通信-下载文件动态更新进度条
1. 原理 每一个线程对应一个消息队列MessageQueue,实现线程之间的通信,可通过Handler对象将数据装进Message中,再将消息加入消息队列,而后线程会依次处理消息队列中的消息. 2. ...