# 使用前需要先安装myqr模块,终端里运行:pip3 install myqrfrom MyQR import myqrmyqr.run( words='https://v.kuaishou.com/6hYDRt', # 输入链接或者句子作为参数,扫描二维码后显示 version=5, # 控制边 ...
分类:
编程语言 时间:
2020-07-04 22:52:58
阅读次数:
113
CTF-never give up 100 点击进入界面,F12看下有个提示 1.html,查看一下发现是官方……. 进行brupsuite抓包试试 发现有一大串java代码+注释 进行url解码 var Words =" " function OutWord() { var NewWords; N... ...
分类:
其他好文 时间:
2020-07-04 13:31:26
阅读次数:
57
# translate words through youdao.com // discription about the code # the problem is the form data of youdao webpage has been coded # import necessary ...
分类:
编程语言 时间:
2020-07-03 01:19:17
阅读次数:
120
转自https://www.cnblogs.com/jermmyhsu/p/8195727.html 有待学习 Bag of Feature 是一种图像特征提取方法,它借鉴了文本分类的思路(Bag of Words),从图像抽象出很多具有代表性的「关键词」,形成一个字典,再统计每张图片中出现的「关键 ...
分类:
其他好文 时间:
2020-07-01 23:39:29
阅读次数:
66
1.qrcode 生成 def qrcode_gen(version=1, box_size=10, border=4, words=None, save_name=None): """ 将参数words生成文件名为save_name的二维码 :param version: 值为1~40的整数,控制 ...
分类:
编程语言 时间:
2020-07-01 20:23:10
阅读次数:
94
KMP算法原理 http://jakeboxer.com/blog/2009/12/13/the-knuth-morris-pratt-algorithm-in-my-own-words/ ...
分类:
其他好文 时间:
2020-06-30 17:31:21
阅读次数:
67
pass语句,可在代码块中使用它来让Python什么都不要做。 pass语句还充当了占位符,它提醒你在程序的某个地方什么都没有做,并且以后也许要在这 里做些什么。 1 def count_words(filename): 2 3 try: 4 with open(file_name) as file ...
分类:
编程语言 时间:
2020-06-28 18:18:24
阅读次数:
78
1.word2vec词向量原理解析 word2vec,即词向量,就是一个词用一个向量来表示。是2013年Google提出的。word2vec工具主要包含两个模型:跳字模型(skip-gram)和连续词袋模型(continuous bag of words,简称CBOW),以及两种高效训练的方法:负采 ...
分类:
编程语言 时间:
2020-06-28 15:07:37
阅读次数:
81
给定一个字符串数组 words,找到 length(word[i]) * length(word[j]) 的最大值,并且这两个单词不含有公共字母。你可以认为每个单词只包含小写字母。如果不存在这样的两个单词,返回 0。 示例 1: 输入: ["abcw","baz","foo","bar","xtfn ...
分类:
其他好文 时间:
2020-06-28 00:13:29
阅读次数:
71
练习1: 有这样的一个words数组,数组中每个字符串的格式为“词性:单词” String[] words = {"verb:eat","verb:drink","verb:sleep","verb:play","noun:rice","noun:meat","noun:hand","noun:ha ...
分类:
编程语言 时间:
2020-06-27 00:22:31
阅读次数:
53