index
-
Centos7 安装php
今天学习php的安装 ,记录一下学习过程; 先安装好了mysql,才能跟php进行配套使用; 1.安装php的环境; yum -y install php72w php72w-cl…
-
python学习Day17
Day 17 今日内容概要 闭包函数简介 闭包函数的实际应用 装饰器简介 装饰器推导流程(重要) 装饰器固定模板(通用) 装饰器语法糖 今日内容详细 1.闭包函数简介 闭包函数: …
-
CMU15445 (Fall 2019) 之 Project#2 – Hash Table 详解
前言 该实验要求实现一个基于线性探测法的哈希表,但是与直接放在内存中的哈希表不同的是,该实验假设哈希表非常大,无法整个放入内存中,因此需要将哈希表进行分割,将多个键值对放在一个 P…
-
nginx root与alias
alias path; 定义指定路径的替换路径,也叫别名路径,文档映射的另一种机制;仅能用于location上下文 location /images/{ root指令:给定的路径对…
-
nginx的nginx.conf目录简单配置
我的nginx.conf是在 etc/nginx/目录下 我是直接在http随便找了个地方添加如下代码的: server { listen 8066; server_n…
-
Nginx配置SSL证书
前言 前面的几篇文章介绍了如何在centos中安装nginx以及如何部署前端应用,如何代理后端的API解决前端请求跨域的问题,今天介绍如何使用SSL证书保护我们的应用。 准备 拥有…
-
Mac Nginx安装与配置
安装nginx brew install nginx 启动nginx nginx 停止nginx nginx -s stop 配置nginx vim /opt/homebrew/e…
-
用replace/substr/substring_index提取博客URL中的用户名
1.替换法 replace 2.截取方式1 substring_index substring_index(字段,符号,第几个符号) SUBSTRING_INDEX…
-
LeetCode 1345. Jump Game IV
原题链接在这里:https://leetcode.com/problems/jump-game-iv/ 题目: Given an array of integers arr, yo…
-
LeetCode 1306. Jump Game III
原题链接在这里:https://leetcode.com/problems/jump-game-iii/ 题目: Given an array of non-negative in…