- 博客(8)
- 收藏
- 关注
原创 【无标题】
curl命令的一些使用# curl helpUsage: curl [options...] <url> --abstract-unix-socket <path> Connect via abstract Unix domain socket --anyauth Pick any authentication method -a, --append Append to target file when uploading
2022-05-25 18:22:51
164
原创 2021-10-25
汇编(一)内存的一些基础操作内存编号绝大多数 指令和数据 都是存在 内存条中的DOSBOX -debug -u -du指令和d指令:u指令看到是 机器指令和汇编指令d指令看倒是 数据同一串 十六进制数字 产生了 2中解释 :一种是指令,另一种是数据(原因见下)内存的最小单元cpu中存放了部分的指令和数据,绝大多数存放在内存、内存条中, 内存条是内存的一部分指令和数据在内存中是没有任何区别的cpu要从内存条中读取指令和数据 写入 放回到内存中cpu与内存之间通过总线来进行联系
2021-10-25 21:19:12
536
原创 2021-05-10
git提交代码到分支下git branch -a# 查看所有分支git checkout [branch_name]# 切换到分支下# [branch_name]为remotes/origin/后的内容git add .# 提交修改代码(建议在文件内修改内容)git commit -m 'xxx'# xxx为本次提交代码的备注git push origin [branch_name]# 提交代码到分支下# 如果push出现问题,可以试试pullgit pull --rebase
2021-05-10 11:04:58
65
原创 2021-04-30
django运行时报错:Your STATICFILES_DIRS setting is not a tuple or list;django版本为1.11.11,静态配置过后运行出现了:Your STATICFILES_DIRS setting is not a tuple or list;的报错信息解决方式如下:在setting.py的static配置信息中: STATICFILES_DIRS = [ os.path.join(BASE_DIR,'course_media').repl
2021-04-30 10:36:25
73
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人