摘要: 后序新博文,主要发表在自建博客上,欢迎来访👏 自建博客:https://blog.djfos.fun github: https://github.com/reamd 微信公众号 阅读全文
posted @ 2024-07-10 10:14 DJ荒野 阅读(3) 评论(0) 推荐(0) 编辑
  2024年6月18日
摘要: # 创建虚拟环境 python -m venv myenv # 激活虚拟环境 source myenv/bin/activate # 导出依赖包索引 pip freeze > requirements.txt # 退出虚拟环境 deactivate # 创建python版本环境 conda crea 阅读全文
posted @ 2024-06-18 14:22 DJ荒野 阅读(6) 评论(0) 推荐(0) 编辑
  2022年11月9日
摘要: js基础篇 const options = {}; (options.methods || (options.methods = {}))['name'] = 'test'; 阅读全文
posted @ 2022-11-09 21:56 DJ荒野 阅读(14) 评论(0) 推荐(0) 编辑
  2022年11月4日
摘要: 说明 "~" 跟 "^" 区别 ^ caret ~ tilda git checkout HEAD^^^和git checkout HEAD~3等价,都代表当前版本的前3个版本 区别在于^3和~3代表不同概念,^3代表回退一个版本,以第三条graph线为准。 操作符 ^ 与 ~ 符一样,后面也可以跟 阅读全文
posted @ 2022-11-04 00:38 DJ荒野 阅读(25) 评论(0) 推荐(0) 编辑
  2022年10月29日
摘要: shell和bash的区别 sh 跟bash的区别,实际上是bash有没开启POSIX模式的区别 sh是bash的一种特殊的模式,sh就是开启了POSIX标准的bash, /bin/sh 相当于 /bin/bash --posix Linux系统上/bin/sh往往是指向/bin/bash的符号链接 阅读全文
posted @ 2022-10-29 23:53 DJ荒野 阅读(147) 评论(0) 推荐(0) 编辑
  2022年4月29日
摘要: 系统环境变量 更改当前用户下,文件夹权限 sudo chown -R ${USER}:所在组 /usr/local/xxxx Mac系统的环境变量,加载顺序为: /etc/profile /etc/paths ~/.bash_profile ~/.bash_login ~/.profile ~/.b 阅读全文
posted @ 2022-04-29 15:10 DJ荒野 阅读(76) 评论(0) 推荐(0) 编辑
  2022年3月30日
摘要: flex布局语法 1. 容器属性 display: flex; ⚠️第一个属性为默认属性 | | | 主轴 | | 交叉轴 flex-direction: row➡ | row-reverse⬅ | column⬇ | column-reverse⬆ flow-wrap: nowrap | wrap 阅读全文
posted @ 2022-03-30 16:25 DJ荒野 阅读(29) 评论(0) 推荐(0) 编辑
  2021年12月30日
摘要: webpack代理时自动更新失效 // vue.config.js module.exports = { devServer: { port: 8080, hotOnly: false, disableHostCheck: true, headers: { 'Access-Control-Allow 阅读全文
posted @ 2021-12-30 19:29 DJ荒野 阅读(203) 评论(0) 推荐(0) 编辑
  2021年8月5日
摘要: 1.关于数据库的操作 1.1创建数据库(注:sql语句区分大小写) create database Hero 1.2使用某个数据库 use Hero go--执行 1.3删除数据库 drop database Hero 2.关于表的操作 2.1创建表并指定主键 create table hero ( 阅读全文
posted @ 2021-08-05 14:42 DJ荒野 阅读(247) 评论(0) 推荐(0) 编辑
  2021年8月4日
摘要: nginx ngx_http_core_module模块变量 示例 http://127.0.0.1/test/abc?name=zhangsan&age=18 常用 $arg_name zhangsan $args name=zhangsan&age=18 $query_string 请求 URI 阅读全文
posted @ 2021-08-04 11:07 DJ荒野 阅读(188) 评论(0) 推荐(0) 编辑