
工具
dbitc
这个作者很懒,什么都没留下…
展开
-
git常用指令
目录git ZOOMgit cmdadd code to indexadd index to local repository不变更head号, 更新代码到local repositoryadd local repository to remote repositoryadd local repository to remote gerrit repositorygit ZOOMwork zoom:本发看到的代码index zoom:英文叫 stage 或 index。一般存放在 .git 目录下的原创 2022-04-17 18:06:59 · 122 阅读 · 0 评论 -
reg_an_64bit
一个用于64bit reg分析的计算器下载地址:原创 2022-01-03 16:31:41 · 261 阅读 · 0 评论 -
免费好用的代码编写工具
查询工具:ag - the Silver Searcher //可以在vs code中用,或 win10下的wsl对应的ubuntu下用。IDE :vs code文件查询: everything压缩工具:好压代码比较: meldconsole工具: putty或Tera Term文件管理: Just Manager持续扩展中....原创 2020-08-20 16:36:07 · 736 阅读 · 0 评论 -
SecureCRT 的三种脚本实例,js,vb,Python
SecureCRT支持3种脚本:ActiveX Script: 主要是两种:VBScript and JScript (Microsoft’s version of JavaScript)Python scripts.每种脚本实例:(注意# 后要有一个空格)# $language = "VBScript"# $interface = "1.0"Sub Main '原创 2017-02-11 10:34:26 · 6602 阅读 · 0 评论 -
python计算一个算术题: [1,2,3,4,5]共5个数,组成的3位数乘以2位数,取最大值
python计算一个算术题: [1,2,3,4,5]共5个数,组成的3位数乘以2位数,取最大值#!/usr/bin/python# -*- coding: UTF-8 -*-x = [1,2,3,4,5]result_old = 0for a in x : for b in x: if b == a : continue for c in ...原创 2018-11-19 23:20:59 · 3231 阅读 · 0 评论