码迷,mamicode.com
首页 >  
搜索关键字:union all    ( 25526个结果
40. 组合总和 II
题目描述: Given a collection of candidate numbers ( C ) and a target number ( T ), find all unique combinations in C where the candidate numbers sums to T ...
分类:其他好文   时间:2019-11-03 01:30:45    阅读次数:74
sql注入之payload
/**GET,post*有返回**/ 基于报错的SQL注入1、获取字段数 ' order by 5 --+2、获取表名 0' union select 1,group_concat(table_name),3 from information_schema.tables where table_sc ...
分类:数据库   时间:2019-11-03 01:29:06    阅读次数:140
TypeScript-基础-04-联合类型
联合类型 联合类型(Union Types)表示取值可以为多种类型中的一种。 简单的例子 联合类型使用 分隔每个类型。 这里的 的含义是,允许 的类型是 或者 ,但是不能是其他类型。 访问联合类型的属性或方法 当 TypeScript 不确定一个联合类型的变量到底是哪个类型的时候,我们 只能访问此联 ...
分类:其他好文   时间:2019-11-03 01:09:52    阅读次数:114
[Gym-102346A] 偷偷偷 并查集处理图(坐标)
https://vjudge.net/problem/Gym-102346A 题意:判断监控器的范围能不能阻断左下角和右上角。 分析:利用并查集处理图,能连接起来的监控器合并起来,然后在最后标记每个集合能否连接到左下、右上、左右、上下的边界形成阻断。 注意: 每个集合可以用 find( x ) 到的 ...
分类:其他好文   时间:2019-11-03 01:01:28    阅读次数:173
Mysql 设置远程连接(自用-----仅供参考)
1.连接数据库 > mysql -u root -p 2.给权限 > grant all privileges on *.* to 'root'@'%' identified by 'root' with grant option 3.保存 > flush privileges ...
分类:数据库   时间:2019-11-02 16:07:49    阅读次数:85
linux 安装mysql8 设置远程连接失败的问题
1、数据库安装完,设置远程连接 ,参考链接:https://blog.csdn.net/yunyexiangfeng/article/details/82876964 通常grant all privileges on *.* to 'user'@'%' identified by 'passowr ...
分类:数据库   时间:2019-11-02 15:26:31    阅读次数:109
网络编程 实现 客户端与服务器端的简单通信
六,代码演示实现客户端与服务器端的简单通信 代码中所使用的 IP号码,必须是本机自己的IP号码 (自行查询:cmd ipconfig/all ) 1.[客户端向服务器端 发送一个整型数据,服务器端进行接收] (1)先写服务器端 import java.io.DataInputStream; impo ...
分类:其他好文   时间:2019-11-02 14:15:18    阅读次数:91
centos8 网卡命令(centos7也可用)
nmcli n 查看nmcli状态 nmcli n on 启动nmcli nmcli c up eth0 启动网卡eth0 nmcli c down eth0 关闭网卡eth0 nmcli d c eth0 激活网卡 nmcli d show eth0 查看网卡eth0信息 nmcli r all ...
分类:其他好文   时间:2019-11-02 13:59:07    阅读次数:91
node工具之pm2
pm2 PM2是带有内置负载平衡器的Node.js应用程序的生产过程管理器。它使您可以使应用程序永远保持活动状态,无需停机即可重新加载它们,并简化常见的系统管理任务。 安装 常用命令 pm2 start app.js 开启进程 pm2 list 所有进程 pm2 stop / all 停止 pm2 ...
分类:其他好文   时间:2019-11-02 12:15:48    阅读次数:109
00012 扫描局域网
import sys from scapy.all import Ether, ARP, srp def main(): _range = input("Enter the Target Range: ") _interface = input("Enter the network interfac... ...
分类:其他好文   时间:2019-11-02 10:17:19    阅读次数:105
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!