码迷,mamicode.com
首页 >  
搜索关键字:basic compress    ( 5468个结果
BuuCTF Web Writeup 第三部分
[GKCTF2020]cve版签到 题目提示 cve-2020-7066 Hint: Flag in localhost Tips: Host must be end with '123' You just view *.ctfhub.com 题目原型 #79329 get_headers() si ...
分类:Web程序   时间:2020-08-01 21:18:34    阅读次数:154
练习41:学着去说面向对象
一 词汇训练 类(class):告诉python创建一个新类型的东西。(Tell python to make a new type of thing). 对象(object):两种含义:最基本类型的东西,任何实例。(the most basic type of thing,and any inst ...
分类:其他好文   时间:2020-07-29 21:49:24    阅读次数:77
sed命令
##sed与正则表达式 sed中的正则与grep中的正则表示形式不同,没有\d,\w等,而是使用[[:digit:]] [[:alpha:]]等 ??? sed中似乎也没有零宽断言 ?? 极客学院的文章讲得比较清楚: https://wiki.jikexueyuan.com/project/unix ...
分类:其他好文   时间:2020-07-29 21:21:07    阅读次数:78
gai ip
# coding=utf-8 # This script is uesd to modify Agent IP at the first time of machine started. import requests import json import time import os import ...
分类:其他好文   时间:2020-07-29 17:54:47    阅读次数:80
归纳几种FreeBasic中的几种变量声明方式
1.Dim a as string 2.Dim as string a,b,c 3.const as string a="hello" 4.Dim a As const string=Str(Rnd) 暂时只想到这几种了.... ...
分类:其他好文   时间:2020-07-29 15:40:39    阅读次数:77
filter与compress
values = ['1', '2', '-3', '-', '4', 'N/A', '5'] def isNum(s): try: int(s) return True except: return False print(list(filter(lambda i: isNum(i), value ...
分类:其他好文   时间:2020-07-29 14:48:36    阅读次数:55
Docs-VisualStudio-MSBuild-MSBuild参考:常用的 MSBuild 项目属性
ylbtech-Docs-VisualStudio-MSBuild-MSBuild参考:常用的 MSBuild 项目属性 1.返回顶部 1、 常用的 MSBuild 项目属性 2018/01/18 下表列出了在 Visual Studio 项目文件中定义的或者在 MSBuild 提供的 .targe ...
分类:其他好文   时间:2020-07-28 17:16:22    阅读次数:62
1-自动化管理电脑文件及文件夹
1-自动化管理电脑文件及文件夹 一、输出目录下所有文件及文件夹 1、获取当前运行目录 import os print(os.getcwd()) 2、关于路径中的斜杠(/)和反斜杠(\) - windows中采用反斜杠(\)作为文件夹之间的分隔符 - Mac和Linux中采用斜杠(/)作为文件夹之间的 ...
分类:其他好文   时间:2020-07-26 23:21:24    阅读次数:132
Hadoop基础(五十):压缩和存储(二)
4 开启 Reduce 输出阶段压缩 当 Hive 将 输 出 写 入 到 表 中 时 , 输 出 内 容 同 样 可 以 进 行 压 缩 。 属 性hive.exec.compress.output 控制着这个功能。用户可能需要保持默认设置文件中的默认值 false, 这样默认的输出就是非压缩的纯 ...
分类:其他好文   时间:2020-07-24 21:30:31    阅读次数:69
**PAT(Basic Level) 1012 数字分类
我的错误代码: 1 #include<iostream> 2 #include <iomanip> 3 4 using namespace std; 5 6 int main() 7 { 8 int N; 9 cin>>N; 10 11 int n; 12 int j=1; 13 int sum0= ...
分类:其他好文   时间:2020-07-24 15:33:40    阅读次数:68
5468条   上一页 1 ... 11 12 13 14 15 ... 547 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!