码迷,mamicode.com
首页 >  
搜索关键字:set uid    ( 62275个结果
捷易快信- 通过java程序,给微信发送消息
1. 捷易快信网站地址 http://jy.erpit.cn/ 代码如下: package com.xxx.xxx; import java.time.LocalDateTime; import java.time.format.DateTimeFormatter; import java.util ...
分类:微信   时间:2020-11-27 11:29:17    阅读次数:34
python解析.xls/.xlsx文件--openpyxl模块(第三方)
第一part:Excel文件的介绍 Microsoft Excel是Microsoft为使用Windows和Apple Macintosh操作系统的电脑编写的一款电子表格软件。 excel文档的基本定义工作薄(workbook)工作表(sheet)活动表(active sheet)行(row): 1 ...
分类:编程语言   时间:2020-11-27 11:08:02    阅读次数:8
bWAPP——A5-Security Misconfiguration
#Arbitrary File Access (Samba)任意文件获取 使用msf进行攻击 1、利用auxiliary/admin/smb/samba_symlink_traversal 2、smbclient -L 10.10.110.163(靶机ip)寻找bWAPP靶机上有哪些文件是共享的例如 ...
分类:移动开发   时间:2020-11-27 11:00:45    阅读次数:18
布隆过滤器
层峦叠崎一一布隆过滤器 布隆过滤器( Bloom Filter )在起到去重作用的同时,在空间上还能节省 90% 以上,只是稍微有那么点不精确,也就是有一定的误判概率。 怎样理解布隆过滤器? 布隆过滤器理解为一个不怎么精确的 set 结构,当你使用它的 contains 法判断某个对象是否存在时,它 ...
分类:其他好文   时间:2020-11-27 10:51:16    阅读次数:6
How to install sqli-labs into localhost
I use phpstudy to set a php+Mysql+Apache environment for the sqli-labs. The first step is to download the sqli-labs-master.zip from the official websi ...
分类:数据库   时间:2020-11-26 15:15:20    阅读次数:14
NPM配置淘宝镜像
临时使用 npm install --registry https://registry.npm.taobao.org 全局使用 npm config set registry https://registry.npm.taobao.org 查看全局配置 npm config get registr ...
分类:其他好文   时间:2020-11-26 15:14:40    阅读次数:6
LeetCode1394-找出数组中的幸运数
非商业,LeetCode链接附上: https://leetcode-cn.com/problems/find-lucky-integer-in-an-array/ 进入正题。 题目: 在整数数组中,如果一个整数的出现频次和它的数值大小相等,我们就称这个整数为「幸运数」。 给你一个整数数组 arr, ...
分类:编程语言   时间:2020-11-26 15:13:13    阅读次数:5
Redis实现简单分布式锁原理
基于Redis实现分布式所得简单逻辑 最简单逻辑: //注入 StringRedisTemplate stringRedisTemplate //原理就是利用Redis set k v NX 指令(setIfAbsent方法), NX表示添加k v如果Redis不存在该k 多个并发请求同时访问 pu ...
分类:其他好文   时间:2020-11-26 15:06:25    阅读次数:8
Maven配置阿里云镜像
在setttins.xml文件中找到<mirrors></mirrors>标签对,进行修改: 1 <mirrors> 2 <mirror> 3 <id>nexus-aliyun</id> 4 <mirrorOf>*</mirrorOf> 5 <name>Nexus aliyun</name> 6 < ...
分类:其他好文   时间:2020-11-26 15:05:05    阅读次数:6
request.getAttribute()和 request.getParameter()有何区别
a、request.getParameter()取得是通过容器的实现来取得通过类似post,get等方式传入的数据。 b、getAttribute是返回对象,getParameter返回字符串 c、getAttribute()一向是和setAttribute()一起使用的,只有先用setAttrib ...
分类:其他好文   时间:2020-11-26 15:04:50    阅读次数:5
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!