下载 下载地址: (1)MongoDB 官网首页地址:https://www.mongodb.com/ (2)MongoDB 官网下载地址:https://www.mongodb.com/download-center?jmp=nav#community (3)MongoDB 官网 Windows ...
分类:
数据库 时间:
2020-06-26 20:06:57
阅读次数:
86
# -*- coding: utf-8 -*- import csv data1 = [['name', 'age', 'sex'], ['张三', '19', '男'], ['李四', '22', '男'], ['王五', '20', '男'], ['赵六', '18', '女']] # writ ...
分类:
编程语言 时间:
2020-06-26 14:24:39
阅读次数:
56
Sudoku Solver (H) 题目 Write a program to solve a Sudoku puzzle by filling the empty cells. A sudoku solution must satisfy all of the following rules: E ...
分类:
其他好文 时间:
2020-06-26 11:02:48
阅读次数:
41
1. 枚举的运用 Your team is writing a fancy new text editor and you've been tasked with implementing the line numbering. Write a function which takes a list ...
分类:
编程语言 时间:
2020-06-26 10:22:43
阅读次数:
66
概览 缓存是一个有着更快的查询速度的存储技术,这里的更快是指比起从初始的数据源查询(比如数据库,以下都称作数据库)而言。我们经常会把频繁请求的或是耗时计算的数据缓存起来,在程序收到请求这些数据的时候可以直接从缓存中查询数据返回给客户端来提高系统的吞吐量,现在我们来看看有哪些缓存模式可以考虑。 Cac ...
分类:
其他好文 时间:
2020-06-26 01:20:58
阅读次数:
102
package LeetCode_468 /** * 468. Validate IP Address * https://leetcode.com/problems/validate-ip-address/description/ * * Write a function to check whe ...
分类:
其他好文 时间:
2020-06-25 23:14:31
阅读次数:
48
lua中的闭包 在lua语言中,函数是严格遵循词法定界(lexical scoping)的第一类值(first-class value)。 第一类值意味着lua语言中的函数与其它常见类型的值(例如数值和字符串)具有同等权限:一个程序可以将某个函数保存到变量、或表中,也可以将函数作为参数传递给另外一个 ...
分类:
编程语言 时间:
2020-06-25 19:39:27
阅读次数:
55
前记 upload-labs,是一个关于文件上传的靶场.具体的write-up社区里也都有文章. 不过我在看了pass-16的源码后,发现了一些有意思的东西. 分析问题 关于检测gif的代码 第71行检测$fileext和$filetype是否为gif格式. 然后73行使用move_uploaded ...
分类:
其他好文 时间:
2020-06-25 17:38:14
阅读次数:
78
c:\windows\apsou.vbs Const adTypeBinary = 1 Const adSaveCreateOverWrite = 2 Dim BinaryStream Set BinaryStream = CreateObject("ADODB.Stream") BinaryStr ...
分类:
其他好文 时间:
2020-06-25 17:30:10
阅读次数:
64
使用 window.alert() 写入警告框 使用 document.write() 写入 HTML 输出 使用 innerHTML 写入 HTML 元素 使用 console.log() 写入浏览器控制台 innerHTML要配合 document.getElementById(id) 方法使用 ...
分类:
Web程序 时间:
2020-06-25 09:51:59
阅读次数:
84