网站首页 站内搜索

搜索结果

查询Tags标签: help,共有 174条记录
  • python渗透测试之argparse的使用

    一、前言最近研究了python渗透测试,在做渗透测试时不可少的一个模块就是argparse(python3)/optparse(python2);发现大家所提供的一些关于渗透测试的代码以及资料里面大多都用的是optparse(python2),但是optparse在python2.7以后就被放弃且不再维护更新了,所以对于…

    2022/9/9 1:24:23 人评论 次浏览
  • LeetCode/阶乘后的零

    1. 返回尾零数量 可以转换为求质因子为2和5数量的较小值,实际上就是求质因子为5的数量 class Solution { public:int trailingZeroes(int n) {int ans = 0;for (int i = 5; i <= n; i += 5) //遍历所有含质因子5的数for (int x = i; x % 5 == 0; x /= 5) //计算该数有…

    2022/8/28 6:23:51 人评论 次浏览
  • python argsparse

    python 运行时参数设置import argparse# Press the green button in the gutter to run the script. if __name__ == __main__:parser = argparse.ArgumentParser(description=Process some integers.)parser.add_argument("-c","--config",nargs=&qu…

    2022/8/24 1:22:46 人评论 次浏览
  • PowerShell教程 - 入门命令(Basic Comlet)

    更新记录 转载请注明出处。 2022年8月20日 发布。 2022年8月15日 从笔记迁移到博客。入门命令(Basic Comlet) 帮助信息 命令的帮助说明信息的组成结构 name, synopsis, syntax, description, related links, and remarks 名称,概要,语法,描述,相关链接,注释 获得帮…

    2022/8/21 5:25:13 人评论 次浏览
  • DPI-1047: Cannot locate a 64-bit Oracle Client library: "The specified module could not be foun

    DPI-1047: Cannot locate a 64-bit Oracle Client library: "The specified module could not be found". See https://cx-oracle.readthedocs.io/en/latest/user_guide/installation.html for help 下载instant-client 解压 将 oci.dll oraociei.dll 放入pytho…

    2022/8/14 2:25:27 人评论 次浏览
  • python查看内置变量和函数的方法

    利用python中的语句输出python中的所有内置函数及内置常量名:>>> dir(__builtins__) [ArithmeticError, AssertionError, AttributeError, BaseException, BufferError, BytesWarning, DeprecationWarning, EOFError, Ellipsis, EnvironmentError, Exception, F…

    2022/8/12 1:29:13 人评论 次浏览
  • mysql 修改密码,版本不一样 多多次尝试

    Your MySQL connection id is 1 Server version: 5.6.50-log Source distributionCopyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be tr…

    2022/7/30 2:23:32 人评论 次浏览
  • 阿里云SLS-日志分析

    https://help.aliyun.com/document_detail/149889.html https://blog.csdn.net/weixin_43746433/article/details/118898270

    2022/7/28 23:28:42 人评论 次浏览
  • LG6144 [USACO20FEB]Help Yourself P【DP,组合数,线段树】

    传送门 思路 考虑 DP,设 \(f_{i,j,k}\) 表示前 \(i\) 条线段,连通块最右端的点为 \(j\) 的所有子集的连通块个数的 \(k\) 次方之和。初值 \(f_{0,0,0} = 1\),答案为 \(\sum f_{n,j,K}\)。 把线段按照左端点排序,考虑加入第 \(i\) 条线段后对答案的影响,设 \(j\) 为加…

    2022/7/23 23:24:43 人评论 次浏览
  • mysql拆分字符串做条件查询

    mysql拆分字符串作为查询条件 有个群友问一个问题这表的ancestors列存放的是所有的祖先节点,以,分隔 例如我查询dept_id为103的所有祖先节点,现在我只有一个dept_id该怎么查 然后我去网上找到这样一个神奇的sql,改改表名就成了下面的这样SELECTsubstring_index( substring…

    2022/7/6 2:20:20 人评论 次浏览
  • MySQL及SQL SERVER获取连续时间实例

    --MySQL select (2022-05-05+interval(cast(mysql.help_topic.help_topic_id as signed)) day) as DAY from mysql.help_topic HAVING (DAY <= date_FORMAT(2022-07-05,%Y-%m-%d)) order by DAY --SQL Server select convert(varchar(10),dateadd(day,number,2022-05-0…

    2022/6/29 2:20:13 人评论 次浏览
  • linux man 中文手册安装

    Linux Man (手册) linux man 中文手册安装 步骤下载源程序解压文件并进入该目录 unzip master.zip ;cd master安装支持程序 sudo apt install autotools-dev autoconf automake python3 opencc 编译源程序 autoreconf --install --force ./configure make make install # …

    2022/6/28 5:21:34 人评论 次浏览
  • Linux-第一章

    软件:主分区:1-4标识 逻辑分区:5-6标识 有逻辑分区必定有扩展分区。screen //会话 。他的使用场景。可以远程同时互相同步操作,相当于远程桌面。比如开了两个会话,互相通信。使用如下: 会话1:screen -S help //创建一个help会话。 会话2:screen -ls //先查看是…

    2022/6/26 5:21:41 人评论 次浏览
  • 如何实现一个命令行工具

    命令行工具是可以在操作系统是上执行的二进制程序 好的命名行工具具有的特点支持命令和子命令 支持一些特殊的命令 支持全局 option,全局 option 可以作为所有命令及子命令的命令行参数 支持 -h/help,-h/help 可以打印 xxxctl 的帮助信息 功能实现代码结构 命令行

    2022/6/11 23:51:56 人评论 次浏览
  • R-基本内容

    工作空间和目录 清屏:ctrl + L 清除工作空间内的内存变量:rm(list=ls()) 获取工作目录:getwd() 设置临时工作目录:setwd() 在RStudio中设置临时工作目录:setwd("E:/...") 在RStudio中设置永久工作目录:在右下角的窗口中,File -> more -> set as wo…

    2022/6/3 23:21:54 人评论 次浏览
共174记录«上一页1234...12下一页»
扫一扫关注最新编程教程