详情

全站展示位

RestTemplate 请求 https 取消 SSL 认证 | Leetao's Blog

前言由于需求,最近需要使用 RestTemplate 去请求 。。。

推荐

Elasticsearch 支持 PDF 等文件搜索 | Leetao's Blog

前言默认情况下 es 是不支持 pdf、doc 等文档的搜索的,但是可以通过安装 Ingest attachment plugin 插件来使得 es 提取通用格式的文件,从而可以实现搜索的功能。 安装与使用安装 Ingest attachment plugin安装很简单,通过 elasticsearch-plugin 可以直接进行安装 1bin/elasticsearch-plugin insta

Python读写文件之读文件 | Leetao's Blog

读文件打开文件读写文件,自然第一步是打开文件,使用open( ),其返回一个文件对象,通常有两个参数 1open(filena,mode) 第一个参数是文件名,第二个参数则是文件对象的访问模式.访问模式可参照下图: 使用实例测试文件名为 test.txt ,内容如下: 123>>> f = open('test.txt', 'r')>

SpringBoot 使用 @Valid 配合 BindingResult 校验数据 | Leetao's Blog

前言在实际开发过程中,经常需要对前端传来的数据模型进行校验,一般情况下都是写一个专门的校验函数去校验,这种方式很显然不适合复杂的项目,因为随着项目复杂度的增加需要校验的数据模型越来越多,并且在开发过程中可能也需要时常修改数据模型,这就导致原来的校验方法可能需要时常的变动,也不利于维护。因为我们需要一种更简单的方式去完成这个工作。 @Valid 和 BindingResultSpringBoot 在

Pymysql error- cryptography is required for sha256_password or caching_sha2_password | Leetao's Blog

前言重新安装了 Docker,然后启动其中的 MySQL 镜像,通过 pymysql 去连接数据库,出现了下面错误: cryptography is required for sha256_password or caching_sha2_password 解决方法1解决方法其实很简答,安装 cryptography 这个库就可以解决问题了。 1pip install cryptography

心灵鸡汤

陪儿子冲刺高考

文/吴建

儿子在一所重点中学上高三,离高考还有一个多月,真的进入了倒计时。

儿子学的是文科,经常要背一些课文,看着他念念有词的样子,说实话我们做家长的心里很是紧张。儿子是一个非常好强的孩子,高中三年,他的成绩在班级中总是遥遥领先,所以他对自己一直比较自信。为了不把紧张情绪传染给孩子,在他背书的时候我们从来都不去打扰他。但儿子还是看出了我们的心思,故作轻松地说:“我都不紧张,你们担心什么?”这下,我和妻子焦躁的心终于平静下来。二人悄悄开了一次家庭会议“决定”:要给儿子创造一个宽松的复习环境,不给他太多的心理负担。我还特别跟妻子强调:“和孩子交代事情,嘱咐可以,但别唠叨起来没完。”

以后我们极少提到“高考”二字,只是在平时注意收集和考试有关的信息和经验。每天上班时,我都会买上几份刊登有高考经验的报纸,然后将其中对儿子有借鉴作用的内容在晚上吃饭的时候讲给他听,讲多少看儿子的情绪。如果儿子情绪好,我会多介绍一点,否则会立即打住。在饮食上我们也没给儿子搞特殊化,我认为自家的伙食一直都不错,每顿饭都有荤有素,每天都有新鲜水果,营养搭配,假如刻意改变反而会给儿子敏感的心加压。

二模考试,儿子发挥得不好,有点闷闷不乐,开始对自己产生一些怀疑。看儿子情绪低落的样子,不用问也知道考试没考好。在临近高考的时候,我觉得儿子的这种自我怀疑很有可能是致命的。我安慰他说:“不要给自己太大压力,高考只是对于你高中学习的一次检验,只要你真正努力了,不管结果怎样,爸妈都不会怪你,你自己也不应该觉得有什么遗憾。”说完就拉着他去吃晚饭,然后聊聊社会上的事,给儿子的坏心情“打了个岔”。后来每次碰到儿子做试卷不顺利的时候,我都告诉儿子,“从来都没有常胜的将军,偶尔的失误并不代表什么,即使最后考砸了也没关系,无论你上什么学校,你都是我们最优秀的儿子!”这样的“语言疗法”对于儿子非常有效,儿子的心态一步步得到了放松。

为使儿子以最好的状态走进考场,我有时吆喝儿子出去打球、散步。儿子上完晚自习回家后,也不像以前那样还花一个小时的时间拼命复习了,而是打开电脑听着歌、看着动漫,悠然自在。这哪像要高考了,分明是在休闲。但我们从不阻止他,因为我们知道,儿子从早晨六点就到校学习,一直到晚上九点半,去掉吃饭时间,一天要学习十几个小时呢。每天经过高强度的学习,回家后如果还硬逼着他再复习到深更半夜,如是睡眠不足,势必影响第二天的学习,这就得不偿失了。

再过几天儿子就要走进高考战场了,我想对儿子说,爸爸相信你早就准备好了,高考并不可怕,它只是人生所要经历的一次考试而已。与高考本身相比,更重要的是这场经历,经过即是获得。给自己一份挑战,树立一份信心,准备迎接即将到来的全新生活。

陪儿子应战高考,我们紧张并快乐着。

列表展示

主站展示位

Merge Intervals | Leetao's Blog

Given a collection of intervals, merge all overlapping intervals. For example,Given [1,3],[2,6],[8,10],[15,18],return [1,6],[8,10],[15,18]. Solution 两个区间(A,B)能合并,说明这 A.end >= B.start and A.start

Ubuntu 找回 Mysql 的 root 密码 | Leetao's Blog

前言年纪大了就容易忘事,一转眼就把自己的服务器上 MySQL 的 root 密码给忘记了,几经周折最后把密码找回来了,准确的说是把密码重新设置了一下。 解决办法Mysql 版本 5.7.23 修改 mysql 的配置文件在命令下输入如下命令: 1sudo nano /etc/mysql/mysql.cnf 然后添加如下配置,网上都说在 [mysqld] 下面添加,我的配置文件什么都没有,我只好手

Wiggle Sort II | Leetao's Blog

Given an unsorted array nums, reorder it such that nums[0] < nums[1] > nums[2] < nums[3].... Example:(1) Given nums = [1, 5, 1, 1, 6, 4], one possible answer is [1, 4, 1, 5, 1, 6].(2) Given nums = [1,

Island Perimeter | Leetao's Blog

You are given a map in form of a two-dimensional integer grid where 1 represents land and 0 represents water. Grid cells are connected horizontally/vertically (not diagonally). The grid is completely

Counting Sort | Leetao's Blog

前言 In computer science, counting sort is an algorithm for sorting a collection of objects according to keys that are small integers; that is, it is an integer sorting algorithm. It operates by countin

-is- 和 -==- 的故事 | Leetao's Blog

前言相比写过 Python 的小伙伴对 “is” 和 “==” 这两个运算符肯定不会陌生,但是你真的能清楚两者的区别吗? 别着急,听我慢慢道来. is 和 ==“is” 和 “==” 都是用来比较两个对象的,区别在于 “is” 是用来判断,两个对象是否为相同,即它们实际的内存地址是否相等,也就是说 id() 值是否一样, 而 “==” 就很简单了,它只是比较两个对象的值是不是相同. 是不是很简单,

什么是 __future__ 模块 ? | Leetao's Blog

前言不知道大家有没有注意到 python 有一个 __future__ 模块,如果大家有人看开源项目兼容 py2 和 py3 的话,它们的源代码中会经常出现这个模块,那么这个模块究竟有什么作用呢? __future__关于 __future__ 的作用,官方文档中也有明确提到,让我们看一下: _future_ is a real module, and serves three purpos

list1 += list2 和 list1= list1 + list2 的故事 | Leetao's Blog

前言前几天在某乎上有人问问题,问道 list.append(ele) 和 list = list + [ele] 一样吗? 这个问题的答案自然是不一样的,这里就不过多描述了.重要的是,借由这个问题,我产生了一个新的问题: list1 += list2 和 list1= list1 + list2 这两者有区别吗 先说结论,自然是有区别的. 测试花一分钟看个两个例子,如果你能正确的知道输出结果,那

Jinjia2 自定义 filter | Leetao's Blog

前言用过 flask 的人肯定对 jinjia2 不会陌生,自然对 Jinjia2 自带的 filter 也有印象,但是其自带的 filter 实在有限,有些时候就不得不需要我们自己定义 filter 了,接下来的例子将介绍如何自定义 filter 自定义 filter举个例子自定义 filter 其实很简单,写一个函数实现你需要的功能,然后添加到 jinjia_env 中,这里以一个返回列表长度

python内置常量(built-in constants)-NotImplemented | Leetao's Blog

定义NotImplemented 的在标准库的定义如下: Special value which should be returned by the binary special methods (e.g. eq() , lt(), add(), rsub(), etc.) to indicate that the operation is not implemented with respec

python内置常量(built-in constants)-NotImplemented | Leetao's Blog

定义NotImplemented 的在标准库的定义如下: Special value which should be returned by the binary special methods (e.g. eq() , lt(), add(), rsub(), etc.) to indicate that the operation is not implemented with respec

Minimum Index Sum of Two Lists | Leetao's Blog

Suppose Andy and Doris want to choose a restaurant for dinner, and they both have a list of favorite restaurants represented by strings. You need to help them find out their common interest with the l

Set Mismatch | Leetao's Blog

The set S originally contains numbers from 1 to n. But unfortunately, due to the data error, one of the numbers in the set got duplicated to another number in the set, which results in repetition of o

Island Perimeter | Leetao's Blog

You are given a map in form of a two-dimensional integer grid where 1 represents land and 0 represents water. Grid cells are connected horizontally/vertically (not diagonally). The grid is completely

Windows下Docker出现net http-TLS handshake timeout | Leetao's Blog

原因docker默认镜像拉取地址为国外仓库下载速度较慢,则会报错”net/ 之后等待重启,然后大功告

Distribute Candies | Leetao's Blog

Given an integer array with even length, where different numbers in this array represent different kinds of candies. Each number means one candy of the corresponding kind. You need to distribute these

Longest Harmonious Subsequence | Leetao's Blog

We define a harmonious array is an array where the difference between its maximum value and its minimum value is exactly 1. Now, given an integer array, you need to find the length of its longest harm

Number of Boomerangs | Leetao's Blog

Given n points in the plane that are all pairwise distinct, a “boomerang” is a tuple of points (i, j, k) such that the distance between i and j equals the distance between i and k (the order of the tu

Contains Duplicate II | Leetao's Blog

Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = nums[j] and the absolute difference between i and j is at most k.

博客寄语:

    一个爱折腾的90后,喜欢写有趣的代码,做有趣的事

实时播报:

博客号-学习成长

相信每一分耕耘都有每一分收获,致力帮助博客主所创作的博客能更快的被收录! 如果有其它需求,可联系下方邮箱。