Teach you how to talk and how to listen Many of you have already heard a lot of advice on this, things like look the person in the eye, think of interesting topics to discuss in advance, look, nod and smile to show that you're paying attention, repea…
Inspire. Just the word itself causes us to pause and think. We may remember our own personal heroes like Martin Luther King or Mother Theresa or a teacher or mentor who brought out the best in us and showed us the power of one person. It's easy in bu…
reference:http://blog.codacy.com/top-10-faster-code-reviews/ This is a blog post of our Code Reading Wednesdays from Codacy (http://www.codacy.com): we make code reviews easier and automatic. Follow the discussion on Reddit and Hacker News How freque…
t1-快速多项式变换(FPT) 题解 看到这个\(f(x)=a_0+a_1x+a_2x^2+a_3x^3+ \cdots + a_nx^n\)式子,我们会想到我们学习进制转换中学到的,那么我们就只需要\(m\)转换成\(n\)进制就可以了. ac代码 #include <bits/stdc++.h> using namespace std; long long n, m, a[1005]; int cnt; int main() { cin >> n >> m; whi…
点此进入比赛 得分: \(97+0+10=107\) 排名: \(Rank\ 3\) \(Rating\):\(+47\) \(T1\):[HHHOJ187]Hashit(点此看题面) 容易想到可以用后缀自动机来做,结果比赛时被\(Hack\)了.(后缀自动机题解详见博客[BZOJ5084]hashit) 正解貌似是后缀数组,但实际上\(X\_o\_r\)神仙的后缀自动机也能过. 反正我的是过不了. 这里贴出被\(Hack\)掉的代码: #include<bits/stdc++.h> #def…
每日一个Linux命令 2018-03-10 Linux 命令 find find [查找目录] [定义条件]   今天很累了,本来不想写了,但想到自己订的学习计划必须坚持下去,每天完成.   find命令, 用来在linux下查找文件.支持使用正则匹配查找文件.   find命令的参数有20多个,这里只使用经常使用的几个参数,如果需要的时候在进行查找. 1:通过名字查找 find [要查找的目录] -name "*.php" -name name, -iname name : 文件名…
对于面向对象 修饰符的使用是我们最常用,也是很容易忽略的小细节. 对于编程来说,把握好每一个小细节,就能构造出漂亮,优雅的程序. public 使用最多的修饰符,公共方法,允许所有访问,就像一个公交车一样,上来交钱[参数],有钱就行,无所谓是谁. 对于这个修饰符救不在做更多的解释了,因为他的使用实在是太多了. PS:如果一个方法没有定义修饰符,那么在PHP5中,默认是public. private 私有方法, 不允许在直接实例化后访问,子类也不能直接访问,只允许在自己的类中使用. 道理我都懂,我…
每日一个Linux命令 2018-03-10 Linux 命令 cksum cksum [文件]  今天楼下的一个大妈去世了,不仅感叹,现如今,真的和以前不一样了,楼上楼下都不知道住的是谁? cksum命令用于检查文件的CRC是否正确.确保文件从一个系统传输到另一个系统的过程中不被损坏. CRC是一种排错检查方式,该校验法的标准由CCITT所指定,至少可检测到99.998%的已知错误. 说明已经很清楚了,这个命令的作用也就是检查文件的相同性,在于MD5和HASH的选择上,使用哪种方法,到时候就看…
mal: means bad. malpractice [ˌmæl'præktɪs] n. 失职, 行为不当; malady ['mælədi] n. 病, 疾病, 弊病; malodorous [ˌmæl'oʊdərəs] adj. 有臭味的,不合法的; malefactor ['mælɪfæktər] n. 罪人, 犯人, 坏人. malevolent: [mə'levələnt] adj. 有恶意的, 恶毒的 malicious: [mə'lɪʃəs] adj. 怀恶意的, 恶毒的 mal…
.NET Should I be concerned about PDB files? async and await -Simplified-Internals Web Performance tricks for (mobile) web development Advanced Debugging Techniques in JavaScript – Part 3 == and === operators of JavaScript in simple words Investigatin…