码迷,mamicode.com
首页 >  
搜索关键字:what would you like to drink    ( 38055个结果
箭头函数
基本语法 完整版本的箭头函数声明包括: 一对带有参数枚举的括号 (param1, param2) 后面跟随箭头 => 以函数体 {FunctionBody} 结尾 典型的箭头函数如下所示: const sayMessage = (what, who) => { return `${what}, ${ ...
分类:其他好文   时间:2020-07-21 00:56:55    阅读次数:69
RoarCTF 2019 Easy Calc 1【BUUCFT】【表达式注入】
首先 一看到名字 就去搜索了 Calc注入 想通过知识点 自己完成 而不是 跟着题解走 然后 看文章 表达式注入 同步测试: 找到api: http://node3.buuoj.cn:28564/calc.php GET 参数: num 测试 1*2 返回 2 然后发现毫无卵用 乖乖搜题解 Roar ...
分类:其他好文   时间:2020-07-20 15:41:56    阅读次数:81
transformer
?transfomer是谷歌在17年论文 Attention Is All You Need(https://arxiv.org/abs/1706.03762)里提出来的。是为了解决机器翻译问题而生的。在Attention Is All You Need这篇paper中整个模型还是采用encoder ...
分类:其他好文   时间:2020-07-20 15:25:03    阅读次数:110
数据库问题处理
一、表被破坏 1. 问题报错:table is marked as crashed and should be repaired 2. 解析: 某些不可测的问题造成表的损坏(频繁查询和更新)。进而造成无法读取数据。 3. 处理: check table tbname -- 用来检查出现问题的表的状态 ...
分类:数据库   时间:2020-07-20 13:11:02    阅读次数:93
数据库规范
以下所有规范会按照【高危】、【强制】、【建议】三个级别进行标注,遵守优先级从高到低。 一、MySQL数据库设计规范 1.1库 【建议】名称尽量简洁明义,能够一眼看出来这个数据库是用来做什么的,库名与应用的名称尽量一直; 【强制】使用名词作为数据库名称,并且只用英文,不用中文拼音; 【强制】如果有多个 ...
分类:数据库   时间:2020-07-20 13:04:34    阅读次数:72
模糊查询 like 语句该怎么写?
第 1 种:在 Java 代码中添加 sql 通配符。 string wildcardname = “%smi%”; list<name> names = mapper.selectlike(wildcardname); <select id=”selectlike”> select * from ...
分类:其他好文   时间:2020-07-20 10:42:38    阅读次数:180
Penetration Test - Planning and Scoping(2)
Penetration Test - Planning and Scoping(2) TARGET AUDIENCE AND ROE Know your target audience Who is sponsoring the pen test? What is the purpose of th ...
分类:Web程序   时间:2020-07-19 23:58:22    阅读次数:117
Eclipse: export project such that Windows and Mac can both run it (SWT)
You appear to be running a SWT application. On macOS you must specify the -XstartOnFirstThread option when running the jar to run SWT correctly: jar - ...
分类:Windows程序   时间:2020-07-19 23:37:21    阅读次数:101
[LeetCode] 312. Burst Balloons
Given n balloons, indexed from 0 to n-1. Each balloon is painted with a number on it represented by array nums. You are asked to burst all the balloon ...
分类:其他好文   时间:2020-07-19 18:05:12    阅读次数:68
CF940E Cashback 线段树优化DP
题目描述 Since you are the best Wraith King, Nizhniy Magazin «Mir» at the centre of Vinnytsia is offering you a discount. You are given an array a a a of ...
分类:其他好文   时间:2020-07-19 17:51:34    阅读次数:56
38055条   上一页 1 ... 69 70 71 72 73 ... 3806 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!