SpringBoot笔记
application.properties
Property形式
server.port=80 // 端口号 |
|
YAML形式
server: |
server.port=80 // 端口号 |
@Value("{argue.argument}") |
server: |
所有的Java云平台都能够使用基于JAR的打包方式,WAR文件只在一些云平台上能够运行。
<?xml version="1.0" encoding="UTF-8"?> |
在Spring框架以前,使用排序算法需要将算法实例化
public class ComplexBusinessService { |
Good code has loose coupling.
移除依赖项的实例化可以移除紧耦合
public class ComplexBusinessService { |
Spring Framework instantiates objects and populates the dependencies.
# 返回给定模式的keys |
SET key value |
HSET key field value |
flowchart LR |
LPUSH key value1 value2 |
SADD key mem1 mem2 |
ZADD key score1 mem1 score2 mem2 |
http://<ENGINE.URL>/search?text=site%3A<SITE.URL>%20{query} |
功能 | 路径 | 参数 |
---|---|---|
当前目录启动终端 | wt.exe | -d “{current_folder}” |
Golden Dict查词 | GoldenDict.exe | -s {query} |
启动ipython | wt.exe | ipython |
查看网络连接 | control.exe | ncpa.cpl |
编辑环境变量(需要管理员权限) | rundll32 | sysdm.cpl,EditEnvironmentVariables |
“When in doubt go to the library.” – J.K.Rowling
Article1: What Are You Going to Do With That?
William Deresiewicz(《国家》杂志撰稿人和《新共和》杂志编辑)在斯坦福大学的演讲
The question my title poses, of course, is the one that is classically aimed at humanities majors. What practical value could there possibly be in studying literature or art or philosophy? So you must be wondering why I’m bothering to raise it here, at Stanford, this renowned citadel of science and technology. What doubt can there be that the world will offer you many opportunities to use your degree?
(学习文学、艺术或哲学能有什么用呢?所以你肯定纳闷,我为什么在在以科技堡垒而闻名的斯坦福提出这个问题呢?在大学学位给人带来众多机会的问题上还有什么可怀疑的吗?)
But that’s not the question I’m asking. By “do” I don’t mean a job, and by “that” I don’t mean your major. We are more than our jobs, and education is more than a major. Education is more than college, more even than the totality of your formal schooling, from kindergarten through graduate school. By “What are you going to do,” I mean, what kind of life are you going to lead? And by “that,” I mean everything in your training, formal and informal, that has brought you to be sitting here today, and everything you’re going to be doing for the rest of the time that you’re in school.
(但那不是我提出的问题。这里的“做”并不是指工作,“那”并不是指你的专业。我们不仅仅是要个工作,教育不仅仅是学一门专业。教育也不仅仅是上大学,甚至也不仅是从幼儿园到研究生院的正规学校教育。我说的“你要做什么”的意思是你要过什么样的生活?我所说的“那”指的是你得到的正规或非正规的任何训练, 那些把你送到这里来的东西,你在学校的剩余时间里将要做的任何事。)
hexo new "postName" # 新建文章 |
# Home page setting |
把你挑选的背景图片命名为:background.jpg,放在blog\themes\next\source\images里,在blog\themes\next\source\css_custom文件的custom.styl首部添加
body { |
# Windows,有些文件需要文件名相同才能打开 |
cd hexo-site |
cd hexo-site |
# 设置英文字体 |
npm install hexo-cli -g |
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
$ hexo new "My New Post" |
More info: Writing
$ hexo server |
More info: Server
$ hexo generate |
More info: Generating
$ hexo deploy |
More info: Deployment
44个Assn,偏向数据结构
邀请码:MNXYKX
学校:UC Berkeley
直接输入,不要选择2U-UC Berkeley
,否则将提示COURSE ENTRY CODE IS INVALID
19个Assn,偏向软件工程
邀请码:MB7ZPY
The Law of the Broken Futon 浮沙筑高台法则
“Since I’m fine now, can’t I add that missing piece later, when it’s actually needed?” Sometimes, yes. But it’s much harder.
Adding the missing piece later means waiting until the damage is already underway, and hellishly difficult to undo.
A Response to “Why Most Unit Testing is Waste”
(Unit Tests) They are based on programmers’ fantasies about how the function should work. But programmers break down requirements into smaller components all the time – this is how you program. Sometimes there are misunderstandings, but that is the exception, not the rule, in my opinion.
When instantiate an Object,
obj = new Object()
,obj
stores the address of the Object, not the specific data struction.
(That is why all type of variables create memory boxes of 64 bits. It is just the memory of the address.)
Therefore, When we use obj2 = obj
, Java simply copy the addr of obj
and assign it to obj2
(They are pointing to the same Object), that is why when we change obj2.weight
it effects obj.weight
too.
# 模板 |
查看DoH模板:
$ netsh dns show encryption |