Methodology: READ MF! [Originally from the Post: System design interview: how to design a chat system (e.g., Facebook Messenger, WeChat or WhatsApp)] ...
分类:
其他好文 时间:
2020-06-22 13:02:56
阅读次数:
98
https://webcms3.cse.unsw.edu.au/static/uploads/course/COMP9517/20T2/18f4c394e47c2ee9eb687391ef1569e74d6f254b404f953404ebe5aabdc2ee36/COMP9517_20T2W3_F ...
分类:
其他好文 时间:
2020-06-22 01:39:01
阅读次数:
68
在默认情况,如果你的主题上有远程的图片的话,Discourse 会尝试现在到本地。 但是需要注意的是 Discourse 采用的是后台进程批量上传的方式。 在你首先对你的发布内容进行编辑的时候,图片还是会引用远程图片地址。 这里有 2 个参数, 第一个参数是: editing_grace_perio ...
分类:
其他好文 时间:
2020-06-21 23:15:57
阅读次数:
50
For 10.3.x and 12.1.1, it is a limitation of the BSU utility to determine the cumulative design of PSUs. Beginning with 12.1.2, the OPatch utility is ...
分类:
其他好文 时间:
2020-06-21 17:41:03
阅读次数:
59
1.问题描述 版本:【CentOS8】【MySQL5.7】 问题:远程使用navicat连接不上数据库,后来试了在linux中都登不进去。根据提示应该是密码不对,此文主要介绍密码修改 和一些注意事项。 2.解决方法 1)因为现在登不进去,所以没法修改密码,首先在linux中: 在最下面加上一行ski ...
分类:
数据库 时间:
2020-06-21 16:17:52
阅读次数:
94
If you are getting this in gdb on macOS while trying to run a program: Unable to find Mach task port for process-id 57573: (os/kern) failure (0x5). (p ...
分类:
其他好文 时间:
2020-06-21 15:36:08
阅读次数:
62
#include<map> #include<queue> #include<time.h> #include<limits.h> #include<cmath> #include<ostream> #include<iterator> #include<set> #include<stack> # ...
分类:
其他好文 时间:
2020-06-21 14:13:49
阅读次数:
55
题目链接:https://codeforces.com/contest/1368/problem/E 题意 给出一个 $n$ 点 $m$ 边的有向图,每条边由编号较小的点通向编号较大的点,每个点的出度不大于 $2$,删掉一些点,使得图中不存在长度大于等于 $2$ 的路径。(最多删掉 $\frac{4 ...
分类:
其他好文 时间:
2020-06-20 17:04:50
阅读次数:
79
在经典sql50题中这道题是这样的: 有三张表 student表 course表 score表 #10、查询学过编号为"01"但是没有学过编号为"02"的课程的同学的信息 这是网上查的 select st.* from student st inner join score sc on sc.s_i ...
分类:
数据库 时间:
2020-06-20 13:56:18
阅读次数:
130
一概述 1.1设计模式 设计模式(Design Pattern)是一套被反复使用、多数人知晓的、经过分类的、代码设计经验的总结。有种说法是“懂了设计模式,你就懂了面向对象分析和设计(OOA/D)的精要 1.2为什么要使用设计模式 使程序呈现高内聚,低耦合的良好特性,使程序的复用性,可扩展性以及稳定性 ...
分类:
其他好文 时间:
2020-06-20 00:58:51
阅读次数:
53