随笔04 Daily Practice

2023-11-05 19:52
文章标签 随笔 04 practice daily

本文主要是介绍随笔04 Daily Practice,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Dear Li Hua,

        It is the first time that I heve prepared to write a letter to you. Have you ever heard of my name?

        You don't? That is awful! You ungrateful guy, I have substitutively written countless letters for you in almost 20 years. Every time I could feel myself suffering from poor vocabulary and goofy schemas, which makes me sacrifice my only remaining brain cell. With intense critique by teachers time after time, I have to revise it over and over again. Such did I dedicate in your assignment, but you don't even pay me a coin.🪙

        What can I do? If nothing unexpected happens, I will be your coolie once more within two months. Since you aren't willing to pay for my work, how about listening to my story? Be patient, there are no many words that I want to say, neither a can of coke.

        Because the rest coke was drunk by a lovely cat just now.😹

        I feel myself drowning in some boring things. To be specific, I can not concentrate on prepare for the examination. Once I was tripped in difficulty, I chose to open my social account to write something. If I simply classify my indolence to indulgence, that sounds so one-sided-- I am a brainless but diligent student.

        But once I open a social networking site, the time no longer belongs to mine.🫥

        Reading and thinking makes me feel alive, and sharing ideas and experiences with someone always benefits both communicator and receiver. On the one hand, if the receiver owns enough information, it can avoid meaningless setbacks in life. On the other hand, the communicator also gains some gratitude and attention.

        Where as, the attention was controlled and designed, and it is useless than commonly thought. When I get agreement or comment, I think my viewpoint is appreciated by the viewer, or it helps the viewer handle living trouble. The time is worth wasting, I have done the right thing, and the most important thing is, I have got a little accomplishments.🌸

        I need a little accomplishment, especially under pressure. I must find something meaningful in my life, and pursue myself to achieve it. Maybe I just evade my failure and find some excuses to comfort myself.

        But when I look back, the praise disappeared in distance, and the little achievement also overtook my destination. The majority of people will step quickly through my life, but I don't do anything for a person who really matters.

        This is terrible.😔

        I may have seen a fantasy built by makers and winners. But unfortunately, I did not notice their wings, their ships. When I walked through the water behind them, I drowned in the deep blue.

        By the way, Eminem ever sang this:"I walk on water \\ But only when it freezes." That's my favorite of his songs.🐳

        I'm not for nothing. Long sections with no notice also helps somebody.

        I may continue to write in a specific field, and choose a more wise and reasonable attitude to treat the experience. What is more, envisaging my responsibility to approachable people seems more realitic to me at present.

        Thanks for your watch, if there is anyone except Li Hua who really watches.🤣

        I may continue to write my blog too, although it will be rough. What do you want to know next time?😉

                                                                                                                        Yours sincerely,

        🌸Meteorite.   

这篇关于随笔04 Daily Practice的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/352128

相关文章

取得 Git 仓库 —— Git 学习笔记 04

取得 Git 仓库 —— Git 学习笔记 04 我认为, Git 的学习分为两大块:一是工作区、索引、本地版本库之间的交互;二是本地版本库和远程版本库之间的交互。第一块是基础,第二块是难点。 下面,我们就围绕着第一部分内容来学习,先不考虑远程仓库,只考虑本地仓库。 怎样取得项目的 Git 仓库? 有两种取得 Git 项目仓库的方法。第一种是在本地创建一个新的仓库,第二种是把其他地方的某个

浙大数据结构:04-树7 二叉搜索树的操作集

这道题答案都在PPT上,所以先学会再写的话并不难。 1、BinTree Insert( BinTree BST, ElementType X ) 递归实现,小就进左子树,大就进右子树。 为空就新建结点插入。 BinTree Insert( BinTree BST, ElementType X ){if(!BST){BST=(BinTree)malloc(sizeof(struct TNo

读软件设计的要素04概念的关系

1. 概念的关系 1.1. 概念是独立的,彼此间无须相互依赖 1.1.1. 一个概念是应该独立地被理解、设计和实现的 1.1.2. 独立性是概念的简单性和可重用性的关键 1.2. 软件存在依赖性 1.2.1. 不是说一个概念需要依赖另一个概念才能正确运行 1.2.2. 只有当一个概念存在时,包含另一个概念才有意义 1.3. 概念依赖关系图简要概括了软件的概念和概念存在的理

[苍穹外卖]-04菜品管理接口开发

效果预览 新增菜品 需求分析 查看产品原型分析需求, 包括用到哪些接口, 业务的限制规则 业务规则 菜品名称必须是唯一的菜品必须属于某个分类下, 不能单独存在新增菜品时可以根据情况选择菜品的口味每个菜品必须对应一张图片 接口设计 根据类型查询分类接口 文件上传接口 新增菜品接口 数据表设计 设计dish菜品表 和 dish_fl

【动手学深度学习】04 数据操作 + 数据预处理(个人向笔记)

数据操作 N维数组是机器学习和神经网络的主要数据结构其中 2-d 矩阵中每一行表示每一行表示一个样本 当维度来到三维的时候则可以表示成一张图片,再加一维就可以变成多张图片,再加一维则可以变成一个视频 访问元素 冒号表示从冒号左边的元素到冒号右边的前一个元素(开区间),其中如果左边为空,那么表示从第一个开始,如果右边为空,那么表示访问到最后一个,如果两边都为空,则表示全部访问其中一行中我们指

【SpringMVC学习04】SpringMVC中的参数绑定总结

众所周知,springmvc是用来处理页面的一些请求,然后将数据再通过视图返回给用户的,前面的几篇博文中使用的都是静态数据,为了能快速入门springmvc,在这一篇博文中,我将总结一下springmvc中如何接收前台页面的参数,即springmvc中的参数绑定问题。 1. 参数绑定的过程 我们可以回忆一下,在struts2中,是通过在Action中定义一个成员变量来接收前台传进来的参数,而在

python+selenium2轻量级框架设计-04读取数据库

#操作sql server数据库 使用mysql则导入pymysqlimport pymssql,pymysqldb =pymssql.connect("localhost","sa","***","****")#使用cursor()方法获取操作游标cursor = db.cursor()sql = "****"try:#执行sqlcursor.execute(sql)#fetchon

python+selenium2学习笔记unittest-04装饰器skip用法

在运行测试用例时,有时需跳过或判断用例时,可以用装饰器来实现 主要的几个方法就是下面的这几种 import unittestclass test(unittest.TestCase):def setUp(self):pass@unittest.skip('跳过')def test_01(self):print("直接跳过")@unittest.skipIf(3>2,'当条件为TRUE跳过')

【DL--04】深度学习基本概念—data_format

data_format 这是一个无可奈何的问题,在如何表示一组彩色图片的问题上,Theano和TensorFlow发生了分歧,’th’模式,也即Theano模式会把100张RGB三通道的16×32(高为16宽为32)彩色图表示为下面这种形式(100,3,16,32),Caffe采取的也是这种方式。第0个维度是样本维,代表样本的数目,第1个维度是通道维,代表颜色通道数。后面两个就是高和宽了。这种t

【ML--04】第四课 logistic回归

1、什么是逻辑回归? 当要预测的y值不是连续的实数(连续变量),而是定性变量(离散变量),例如某个客户是否购买某件商品,这时线性回归模型不能直接作用,我们就需要用到logistic模型。 逻辑回归是一种分类的算法,它用给定的输入变量(X)来预测二元的结果(Y)(1/0,是/不是,真/假)。我们一般用虚拟变量来表示二元/类别结果。你可以把逻辑回归看成一种特殊的线性回归,只是因为最后的结果是类别变