码迷,mamicode.com
首页 >  
搜索关键字:local profixed index    ( 57975个结果
147服务器postgre服务
一、启动数据库服务 cd /usr/local/pgsql/bin su postgres ./pg_ctl start -D /usr/local/pgsql/data 二、创建一个postgres 用户 adduser postgres cd /usr/local/pgsqlmkdir data ...
分类:其他好文   时间:2021-04-16 11:52:27    阅读次数:0
漏洞复现-ThinkPHP 2.x-任意代码执行
0x00 实验环境 攻击机:Win 10 靶机也可作为攻击机:Ubuntu18 (docker搭建的vulhub靶场) 0x01 影响版本 标志:/index.php 版本:thinkphp2.x 简介:在ThinkPHP 2.x版本中,使用preg_replace的/e模式匹配路由: $res = ...
分类:Web程序   时间:2021-04-15 12:45:30    阅读次数:0
Postman 使用小技巧/指南
一、什么是 Postman(前世今生) Postman 诞生于 2013 年,一开始只是 Abhinav Asthana 着手于解决 API 测试的工具,随着这个工具的使用者和需求迅速激增,Abhinav Asthana 找了他的两个前同事 Ankit Sobti 和 Abhijit Kane 一起 ...
分类:其他好文   时间:2021-04-15 12:44:02    阅读次数:0
新建一个vue项目
1、在任意位置建一个空文件夹; 2、打开vscode,定位到刚才新建的文件夹; 点击左下角位置 弹出 3、输入npm install vue 展开刚才新建的项目 4、测试一下项目是否搭建成功; 新建一个index.html; 输入感叹号,直接回车; 就生成了html模板 新建一个vue小demo; ...
分类:其他好文   时间:2021-04-15 12:43:16    阅读次数:0
linux scp命令用法
用途: scp命令用于linux上跨服务器拷贝资源 本地文件拷贝到远程: scp filename 远程服务器用户名@远程服务器ip:远程服务器存在该文件的位置(scp local_file remote_username@remote_ip:remote_folder ) 输入命令后需要输入远程服 ...
分类:系统相关   时间:2021-04-15 12:21:27    阅读次数:0
python实现排序的几种算法
# 1. 选择排序:循环找最小值,依次放在左侧 def select_sort(arr): for i in range(len(arr)-1): min_index = i for j in range(i+1, len(arr)): if arr[j] < arr[min_index]: min ...
分类:编程语言   时间:2021-04-15 12:18:58    阅读次数:0
Educational Codeforces Round 107 (Rated for Div. 2) C. Yet Another Card Deck(暴力/思维)
You have a card deck of n cards, numbered from top to bottom, i. e. the top card has index 1and bottom card — index n. Each card has its color: the 𝑖 ...
分类:其他好文   时间:2021-04-15 12:03:00    阅读次数:0
C语言网络编程——TCP
1.1 套接字 C语言网络编程其实本质上也是多进程之间通过socket套接字进行通信,知识进程可能位于不同的服务器上,常用的TCP/IP协议有3种套接字类型,如下所示: 1.1.1 流套接字(SOCK_STREAM) 流套接字用于提供面向连接、可靠的数据传输服务,该服务保证数据能够实现无差错、无重复 ...
分类:编程语言   时间:2021-04-14 12:08:37    阅读次数:0
tensorrt cmakelist 顺序影响
# cuda10.0 include_directories(/usr/local/cuda/include) link_directories(/usr/local/cuda/lib64) # tensorrt 7.0.0.11 set(TENSORRT_ROOT ${CMAKE_SOURCE_D ...
分类:其他好文   时间:2021-04-13 12:52:23    阅读次数:0
【Golang】由 for range 循环引出的一些思考
一、背景 今天看到组内项目中有这样一段代码 ,第一反应是局部变量 index 太奇怪了,当然也不能说这样写是错的,只是个人强迫症看着很难受... 1 for _, index := range entities { 2 key := index.TemplateId 刚好借此机会,梳理下 Go 的 ...
分类:其他好文   时间:2021-04-13 12:32:49    阅读次数:0
57975条   上一页 1 ... 37 38 39 40 41 ... 5798 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!