Every day, an email reminder will be sent to you, along with a random copy of your previous diary. You only need to reply to this email to record today's diary.
It will help you record what happened and make ordinary life meaningful.

The body of the diary is the main part of the diary. It is written directly below the Sunday and Date. It can be written in the top case, or it can be reduced to three or five letters. As the recorded content usually happens, the predicate verbs often use the past tense. But other tenses can also be used according to the specific situation. Such as: narrating the weather, describing the scenery, in order to describe vividly, we can use the present tense to express the situation at that time. The present tense or the future tense can be used for expressing feelings or comments after the passage. The diary strives for simplicity and coherence. If there is a written prompt, we should pay attention to the prompt and grasp the main points. Use simple sentences as far as possible in order to avoid complicated and grammatical and sentence pattern errors.

Privacy security
Your privacy is also our greatest concern.

We will not leak your diary to any third party. At the same time, it will strengthen the technical means to improve the security and reliability of data.

Contact us
Need to contact us? If you want to make the content public, you can consider leaving it in the message board on the right so that other users can discuss it together. If you just wan

DiaryDayBayDayDiary的更多相关文章

随机推荐

  1. Java并发编程基础-Unsafe

    前言:Unsafe是Java中一个底层类,包含了很多基础的操作,比如数组操作.对象操作.内存操作.CAS操作.线程(park)操作.栅栏(Fence)操作,JUC包.一些三方框架都使用Unsafe类来 ...

  2. C++ 01 基础知识点

    1.为某一特定的问题而设计的指令序列称为:程序 2.‘32位微型计算机’中的32位指的是:机器的字长 3.存储设备中,存取速度最快的是:Cache 4.指令的操作码表示的是:作何操作 5.一条指令由哪 ...

  3. Debian Stretch升级当前最新稳定版内核

    Why update kernel ? Update the kernel to new version fixed some newer hardware has no driver softwar ...

  4. python利用kruskal求解最短路径的问题

    python利用kruskal算法求解最短路径的问题,修改参数后可以直接使用 def kruskal(): """ kruskal 算法 ""&quo ...

  5. go ---作用域及判断变量类型的方式。

    package main import ( "fmt" ) var v = "1, 2, 3" func main() { v := []int{1, 2, 3 ...

  6. 【Linux】CentOS7 打开关闭防火墙及端口

    一.centos7版本对防火墙进行加强,不再使用原来的iptables,启用firewalld1.firewalld的基本使用启动: systemctl start firewalld查状态:syst ...

  7. Java开发月薪2W的知乎讨论记录截取

    1. 推荐看 作者:匿名用户 链接:https://www.zhihu.com/question/39890405/answer/83676977 来源:知乎 著作权归作者所有.商业转载请联系作者获得 ...

  8. 计算标准差——Python

    计算标准差 题目描述: 编写一个函数计算一系列数的标准差.‪‬‪‬‪‬‪‬‪‬‮‬‪‬‭‬‪‬‪‬‪‬‪‬‪‬‮‬‪‬‫‬‪‬‪‬‪‬‪‬‪‬‮‬‫‬‪‬‪‬‪‬‪‬‪‬‪‬‮‬‪‬‪‬‪‬‪‬‪‬‪ ...

  9. C++ GDI图形设备接口

    一.概念 1. GDI:(Graphics Device Interfase)图形设备接口,是一个应用程序与输出设备之间的中介. 一方面,GDI向应用程序提供一个与设备无关的编程环境,另一方面,它又以 ...

  10. Spark基于自定义聚合函数实现【列转行、行转列】

    一.分析 Spark提供了非常丰富的算子,可以实现大部分的逻辑处理,例如,要实现行转列,可以用hiveContext中支持的concat_ws(',', collect_set('字段'))实现.但是 ...