码迷,mamicode.com
首页 >  
搜索关键字:lob    ( 2923个结果
关于python常用的命令
os模块: os.system os.system("cat/cmd等...") os.popen print os.popen("adb shell ls ../aa.png").read() >>> 输出:aa.png 爆出包含文件 {{%20config.__class__.__init__. ...
分类:编程语言   时间:2021-07-26 16:40:48    阅读次数:0
【优化算法】粒子群工具箱函数优化算法【含Matlab源码 1126期】
一、简介 粒子群算法源于复杂适应系统(Complex Adaptive System,CAS)。CAS理论于1994年正式提出,CAS中的成员称为主体。比如研究鸟群系统,每个鸟在这个系统中就称为主体。主体有适应性,它能够与环境及其他的主体进行交流,并且根据交流的过程“学习”或“积累经验”改变自身结构 ...
分类:编程语言   时间:2021-07-12 17:53:40    阅读次数:0
php_bugs学习 02 绕过过滤的空白字符
<?php $info = ""; $req = []; $flag="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; ini_set("display_error", false); //为一个配置选项设置值 error_reporting(0); //关闭所有PHP错 ...
分类:Web程序   时间:2021-07-05 19:06:03    阅读次数:0
LeetCode 101 - A LeetCode Grinding Guide (C++ Version)
LeetCode 101 - A LeetCode Grinding Guide (C++ Version) LeetCode 101:和你一起你轻松刷题(C++) 一个面向有C++编程基础,但缺乏刷题经验的读者的教科书和工具书(不适合编程小白喔)。 永久免费,禁止任何盈利性利用,欢迎传阅和指正。为 ...
分类:编程语言   时间:2021-06-30 18:17:11    阅读次数:0
dedeCMS二次开发api简单接口代码
<?php $cfg_NotPrintHead = false; header("Content-Type: text/html; charset=utf-8"); include_once (dirname(__FILE__)."/../include/common.inc.php"); erro ...
分类:Windows程序   时间:2021-06-28 18:21:28    阅读次数:0
gateway 跨域
网上的写法,都有点不太一样。 首先,看一下我的gateway版本 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-gateway</artifactId> <vers ...
分类:其他好文   时间:2021-06-25 17:10:18    阅读次数:0
机器学习sklearn(十一): 数据处理(六)非线性转换
有两种类型的转换是可用的:分位数转换和幂函数转换。分位数和幂变换都基于特征的单调变换,从而保持了每个特征值的秩。 通过执行秩变换,分位数变换平滑了异常分布,并且比缩放方法受异常值的影响更小。但是它的确使特征间及特征内的关联和距离失真了。 幂变换则是一组参数变换,其目的是将数据从任意分布映射到接近高斯 ...
分类:其他好文   时间:2021-06-19 19:31:43    阅读次数:0
c++ 11 async. (async/deferred)
The current C++11 std::launch only has two modes: async or deferred. In a production system, neither is what you want: async will launch a new thread ...
分类:编程语言   时间:2021-06-18 18:48:54    阅读次数:0
# springcloud-eureka-feign-mybatis-seata ### 整合步奏
springcloud-eureka-feign-mybatis-seata 整合步奏 1.下载seata-server,修改seate-server配置 2.client端(你自己的项目)拷贝seate-server中的file.conf, registry.conf 加入自己项目 3.数据源代理 ...
分类:编程语言   时间:2021-06-11 19:16:48    阅读次数:0
【SQL】sql update 多表关联更新方法总结
#表结构: 1、表一:Test1 Id name age 1 2 2、表二:Test2 Id name age 1 小明 10 2 小红 8 #实现将表Test2的name和age字段数据更新到表Test1中,按照id相等的条件 1、SQLServer多表更新方法: 语法: UPDATE { tab ...
分类:数据库   时间:2021-06-09 15:23:01    阅读次数:0
2923条   1 2 3 4 ... 293 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!