排序
ubuntu添加虚拟内存
假设我们希望创建一个4GB的交换空间: sudo fallocate -l 4G /swapfile 设置权限: sudo chmod 600 /swapfile 配置交换空间: sudo mkswap /swapfile 验证交换空间: sudo swapon /swapfile 这...
PHP 安装 Yaml 扩展
YAML 是一种 不是标记语言 的 标记语言 与XML/JSON类似...问题描述在甲方大佬给的项目中遇到了问题 需要使用PHP解析yml配置文件(? 客户的服务器使用了CentOS 7.x 宝塔面板以及PHP7.4 因为宝塔面...
剪贴板安装小记
需要安装以下模块djangorestframeworkDjangodjango-cors-headersnumpyjsonschema数据库migratepip install djangopython3 manage.py migratepip install djangorestframeworkpip install corshe...
vuepress组件
一src/.vuepress/components/MyComponent.vue<template> <link href='/css/codemirror.css' rel='stylesheet' /> <link href='/css/prolog.css' rel='stylesheet' /> <div...
内存不够打包失败 Reached heap limit Allocation failed – JavaScript heap out of memory
前端打包,内存不够,打包失败。解决办法:1、npm install -g increase-memory-limit2、npm install -g cross-env3、然后还需要把所有node_modules bin 下面的.cmd文件里的 “%_prog% ”改成 %_...