Le Grand Bleu
Do you know what you are supposed to do to meet a mermaid? You go down to the bottom of the sea where the water is not even blue anymore, and the sky is only a memory, and you float there in the silence. And you stay there. Then you decide that you will die for them. Only then do they start coming out. They come , and they greet you and they judge the love that you have for them. if it is sincere, if it is pure, they will be with you. take you away forever.
Web_Framework Web_Framework
Spring Boot Spring Boot的理解参考答案: 从本质上来说,Spring Boot就是Spring,它做了那些没有它你自己也会去做的Spring Bean配置。Spring Boot使用“习惯优于配置”的理念让你的项目快
2022-09-23
Java Basics Java Basics
java基础 为什么Java代码可以实现一次编写、到处运行参考答案: JVM(Java虚拟机) 是Java跨平台的关键。 在程序运行前,Java源代码(.java) 需要经过编译器编译成字节码(.class)。在程序运行时,JVM负责将字
2022-09-12
MySQL常用指令 MySQL常用指令
数据库操作连接MySQL mysql -h主机地址 -u用户名 -p用户密码 创建数据库 create database [database_name]; 选择数据库 use [database_name]; 直接删除数据库,不提醒
2022-06-30
Cpp算法笔记 Cpp算法笔记
万能头文件#include <bits/stdc++.h> 排序外部函数 bool cmp(T a, T b){ return //sort rule; } void main(){
2021-09-17
Java常用类2 Java常用类2
CollectionArrayList<String> list = new CollectionS(); list.add("cc"); list.add("bb"); Collecti
2021-09-16
Java常用类 Java常用类
Date类java.util.DateDate d = new Date(); d.toString;//获取当前时间:Sat Jun 13 21:43:08 CST 2021 d.toLocaleString;//获取当前的时间的本地时
2021-09-16
Linux常用操作 Linux常用操作
1.基本命令1.1 关机 shutdown -h now 立刻关机 shutdown -h 5 五分钟后关机 poweroff 立刻关机 1.2 重启 shutdown -r now 立刻重启 shutdown -r 5 五分钟后重启 r
2021-03-17
Notes of Deep Learning Lessons:L4-CNN-Obeject Detection Notes of Deep Learning Lessons:L4-CNN-Obeject Detection
OverFeat This paper shows that different task can be learned simultaneously using a single shared network. It is the fir
2020-12-14
Notes of Deep Learning Lessons:L4-CNN-Case Studies of CNN Notes of Deep Learning Lessons:L4-CNN-Case Studies of CNN
LeNet This paper is written in 1998,peple didn’t really use padding or using valid convolutions, so after applying ConV
2020-12-01
Markdown使用指南 Markdown使用指南
参考链接:https://www.runoob.com/markdown/md-tutorial.html 1.Why Markdown Markdown 是一种轻量级标记语言,它允许人们使用易读易写的纯文本格式编写文档。 Mark
2020-10-20
1 / 2