拉马努金连分数参考:这里 Here is a famous problem posed by Ramanujan > Show that $$\left(1 + \frac{1}{1\cdot 3} + \frac{1}{1\cdot 3\cdot 5} + \cdots\right) + \lef ...
分类:
其他好文 时间:
2020-05-06 01:12:32
阅读次数:
199
定义一个父类Person: function Person(name){ this.name=name; } Person.prototype.age=25;Person.prototype.show=function(){ console.log(this.name);} 1.原型链继承 子类的原 ...
分类:
Web程序 时间:
2020-05-06 01:01:52
阅读次数:
67
前言 数据库目前在行业中可分为: + 关系型数据库(RDBMS):MySQL、Oracle、Postgres、SQLLite、SQLServer + NoSQL数据库:MongoDB、Redis、HBase + 图数据库:Neo4j + NewSQL:RethinkDB MySQL搭建 docker ...
分类:
数据库 时间:
2020-05-05 23:35:20
阅读次数:
77
ORACLE 将buffer cache中所有的buffer通过一个内部的Hash算法运算之后,将这些buffer放到不同的 Hash Bucket中。每一个Hash Bucket中都有一个Hash Chain List(也叫:cache buffers chain),通过这个list,将这个Buc ...
分类:
数据库 时间:
2020-05-05 18:14:39
阅读次数:
85
ros话题(topic) 首先确保roscore已经运行, 打开一个新的终端:$ roscore 请在一个新的终端中运行:$ rosrun turtlesim turtlesim_node 通过键盘远程控制turtle 请在一个新的终端中运行:$ rosrun turtlesim turtle_te ...
分类:
其他好文 时间:
2020-05-05 18:08:07
阅读次数:
74
The Skeletal Functions https://v.youku.com/v_show/id_XNDY2MDcyMDU1Ng==.html ...
分类:
其他好文 时间:
2020-05-05 18:00:40
阅读次数:
50
1、查看Windows网卡的MTU值:以管理员身份运行CMD命令行,执行命令“netsh interface ipv4 show subinterfaces”,即可看到相应网卡的MTU值: 设置Windows网卡的MTU值:以管理员身份运行CMD命令行,执行命令“netsh interface ip ...
https://www.csdn.net/gather_2e/MtTaIgxsNzIyNy1ibG9n.html show databases; 在Linux系统下MySQL的清屏命令 MySQL在Linux系统下,输入system clear即可完成清屏! ...
分类:
数据库 时间:
2020-05-05 12:44:28
阅读次数:
108
profile 分析sql开销 1.使用之前先查看当前数据库的版本信息,低版本无法使用. show version(); 或者 show variables like '%version%' 2.查看profiling show variables like '%profil%' ; result: ...
分类:
数据库 时间:
2020-05-05 10:35:12
阅读次数:
73
这比赛什么鬼名字... 比赛网站:https://ctf.show/challenges Reverse 逆向_签到 IDA64打开,按F5。 看标箭头的几处,得知v6要等于0才正确。v6的运算是和后面的一串式子进行按位或,而0或0才能得到0,所以后面的一串异或式子的结果为0,那么因为异或的可逆运算 ...
分类:
其他好文 时间:
2020-05-05 00:59:16
阅读次数:
192