相关文章
【Windows】composer安装与设置
1、到官网下载 composer.phar。下载地址:Composer
2、将下载的composer.phar 复制到 composer 文件夹中
3、在composer文件夹中新建文件 composer.bat,内容为
php "%~dp0composer.phar" %*
5、设置环境变量的path,添加composer文件夹
编程日记
2024/12/22 12:02:12
Complete Probability Spaces
See https://math.stackexchange.com/questions/4095399/complete-probability-spaces
编程日记
2024/12/22 12:07:11
XShell远程连接Ubuntu
环境
系统:Ubuntu 18.04.6 LTS
IP:192.168.1.4
ps:查看ubuntu版本
lsb_release -a 查看ubuntu的ip地址
Ubuntu系统准备工作
root权限
打开ubuntu系统后,打开终端,切换为root权限:su root 如果出现su root认证失…
编程日记
2024/12/14 19:49:46
面试必考精华版Leetcode199. 二叉树的右视图
题目: 代码(首刷看解析):
class Solution {
public:vector<int> rightSideView(TreeNode* root) {unordered_map<int,int> rightmostvalue;queue<TreeNode*> nodeQueue;queue<int> depthQueue;int maxDe…
编程日记
2024/12/15 22:23:26
OSI体系结构和TCP/IP体系结构
在第一章( 计网第一章 )的时候,曾经提到过OSI体系结构和TCP/IP体系结构,并对它们进行了简单的对比。这篇博客在其基础上进行更深层次的理解。
一.OSI体系结构:
通信子网:
计算机网络在逻辑功能上可以分为…
编程日记
2024/12/19 22:41:24
buuctf-[GYCTF2020]Blacklist
这题我一开始还以为是rce,但是看到注入框内写了1,那就肯定是sql
提交1 1 报错,更加确定是sql 1 order by 2 --
说明是两列
1 union select 1,#
发现select被过滤了 这里我想起了之前做的强网杯的随便住,也是被过滤了&#x…
编程日记
2024/12/21 11:49:58