首页 > 其他分享 >My favorite story

My favorite story

时间:2024-05-13 21:21:08浏览次数:12  
标签:me story said was my favorite life My he

I think my life is meaningless and empty because I think that I'm so normal and bourgeois that no one will like me.One day ,my father asked me to take a stone to a market and just raise two fingers without speaking if someone inquires its price.Alouthough I didn't know the concrete reson, I still did as he said.
What confused me was that there was truly someone willing to buy a normal stone with 2 dollars.And then , he asked me to do the same thing at the
museum.Surprisingly,a man was willing to pay 200 bucks for that stupid rock!Confused and shocked, I wanted to make out something from dad but he said nothing.The last time, he asked me to take it to the precious stone store . It's unconceivable and unbilievable to know that there was a man who wanted to buy it for 2 million dollars!It seemed extremely ridiculous but it was the truth.
"Son, do you konw the value of your life now?"said my dad.Actually, I have known his intention to let me make out that my life is priceless.The value of my life is much like this rock.It depends on who it is offerd to.It's my most prrecious possession.

标签:me,story,said,was,my,favorite,life,My,he
From: https://www.cnblogs.com/HCYcxy/p/18190026

相关文章

  • My favorite story
    Howclearwasaday!Warmsunlightshoneonthesunwhiletheskywasastranquilandmysteriousassapphire.Irolledintheseahappily.Stillimmersinginhappiness,alargefishingnetcaughtmewhenIwasnotpayingattention.Hearingjoyfulvoice“bi......
  • My favorite story
    Thefirstpointofviewoftheyoungmouse:Recently,thereisabigcatinthehouse,whocaughtmanycompanionsofuswhilewewerestealingfood.Oneday,wehadameetingtotalkaboutthewaytodealwithourcommonenemy.Somesaidthis,andsomesa......
  • 运维必备Linux学习day2(mysql,jdk,redis,docker安装)
    一.MySQL安装①Linux环境:1.虚拟机Centos7.6版本安装,2.准备类似版本 mysql-5.7.26-1.el7.x86_64.rpm-bundle.tar包1.新建文件夹/opt/mysql,并cd进去,首先:mkdir/opt/mysql2.运行 wgethttp://dev.mysql.com/get/mysql-5.7.26-1.el7.x86_64.rpm-bundle.tar,下载mysql安装包......
  • My Favorite Story
    WhenrealizingthemanbesidemewasnotJimmyWells,Istoppedsuddenlyandreleasedhisarm.Iwasconfusedandthenpanicked.“Thesecretofmysuccesswasknownbyastranger,orapoliceman?"Mymindwasinastateoftormoil,andIwasstrugglingto......
  • My Favorite Story
    Iwasaboywhothoughtlifewaspointless.Youcouldoftenhearmecomplainingtomyfather“Whatisthemeaningoflife?”Myfatherwouldalwayslookatmewithlovingeyes,butneveranswerdirectly.Onedaymyfatherfoundanordinarystone.Hehandedtom......
  • MySQL ROW_NUMBER 函数
    MySQLROW_NUMBER()语法MySQL ROW_NUMBER()从8.0版开始引入了功能。这ROW_NUMBER()是一个窗口函数或分析函数,它为从1开始应用的每一行分配一个序号。请注意,如果你使用MySQL版本低于8.0,你可以效仿的一些功能ROW_NUMBER()函数使用各种技术。以下显示了ROW_NUMBER()函数的语法:......
  • MySQL数据高阶处理技巧:掌握先排序后分组的智慧
    在MySQL数据库的数据探索旅程中,排序和分组是不可或缺的工具。然而,当你面对大量数据、重复值等情况时,常规的处理方法可能显得不够灵活。本文将为你揭示一个精妙的技巧:如何在MySQL中先排序,后分组,从而获取每个类型的最新数据,助你轻松驾驭复杂的数据处理任务。 问题背景:先排序,后分......
  • Docker 部署 Mysql8.1
    #不挂载,直接创建容器[root@VM-24-9-centos~]#dockerrun-d-p3306:3306--namemysql-eMYSQL_ROOT_PASSWORD='123456'mysql获取镜像#拉取镜像[root@VM-24-9-centos~]#dockerpullmysql:8.1创建挂载目录和配置文件#创建挂载目录[root@VM-0-17-centos~]#mkd......
  • mysql视图
    1.介绍  视图(View)是一种虚拟存在的表。视图中的数据并不在数据库中实际存在,行和列数据来自定义视图的查询中使用的表,并且是在使用视图时动态生成的。  通俗的讲,视图只保存了查询的SQL逻辑,不保存查询结果。所以我们在创建视图的时候,主要的工作就落在创建这条SQL查询语句上。......
  • spring整合mybatis
    整合步骤:首先将mybatis-config.xml环境的配置:数据源、驱动、url、username、password…这些基础配置移交给Spring的核心配置文件application.xml文件中!创建bean对象dataSource顶替Resource。再通过dataSource对象,创建bean对象SqlSessionFactory,这时候SqlSessionFactory工......