上一页 1 2 3 4 5 6 7 8 ··· 15 下一页
摘要: #第二部分 Linux文件、目录与磁盘格式 5 linux的文件权限与目录配置 5.1 用户与用户组 1.文件拥有者 2.用户组 3.其他人的概念 账号相关信息 /etc/passwd 个人密码 /etc/shadow 用户组 /etc/group 5.2 Linux 文件权限概念 5.2.1 Li 阅读全文
posted @ 2021-09-23 23:16 Fake_coder 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 构建与部署 4.1 webpack 简介 4.1.1 一切皆模块 模块化带来的优点: 1.解决了命名冲突的问题,变量均存在于模块命名空间之中,避免了全局冲突 2.解决了文件依赖问题 3.使得模块高内聚,具有更好的复用性 4.1.2 Webpack的使用 输入输出 https://www.cnblog 阅读全文
posted @ 2021-09-21 21:16 Fake_coder 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 彻底删除docker *(https://www.ydyno.com/archives/1278.html docker 前端部署 https://blog.csdn.net/qq_40626497/article/details/103438091 docker run -d -p 80:80 - 阅读全文
posted @ 2021-09-21 13:13 Fake_coder 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 第一部分 HTTP:WEB的基础 第二部分 HTTP结构 第三部分 阅读全文
posted @ 2021-09-17 20:09 Fake_coder 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 分布式事务 什么是分布式事务 什么情况下使用分布式事务?为什么? 使用分布式事务的方式有哪些 分布式链路追踪 调用链选型 https://www.jianshu.com/p/0fbbf99a236e https://toutiao.io/posts/5oy7zl/preview netty 使用 保 阅读全文
posted @ 2021-09-14 16:42 Fake_coder 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 股票买卖问题 leetcode 121 一次买入一次卖出,并获取最大利润,只要求返回最大利润 只要记录介质目前为止的最低价格,并且计算截至目前为止的最大利润就行 class Solution { public static int maxProfit(int[] prices) { int[] dp 阅读全文
posted @ 2021-09-13 16:46 Fake_coder 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 1. 基本概念 认证:判断用户的身份是否合法 会话:判断用户的登录状态 授权:判断用户对某个资源的操作权限 授权的数据模型:用户-(用户角色关系)-角色-(角色权限关系)-权限-(资源) 两种RBAC的授权认证设计:1.基于角色的认证;2.基于资源的认证 阅读全文
posted @ 2021-09-11 17:44 Fake_coder 阅读(55) 评论(0) 推荐(0) 编辑
摘要: public static void traversal(TreeNode root){ LinkedList<TreeNode> stack = new LinkedList<>(); TreeNode p = root; int sum = 0; while (p != null || !sta 阅读全文
posted @ 2021-09-04 16:47 Fake_coder 阅读(19) 评论(0) 推荐(0) 编辑
摘要: L494 //方法一:回溯法 class Solution { public static int findTargetSumWays(int[] nums, int target) { cnt =0; recurve(nums, 0, 0, target); return cnt; } stati 阅读全文
posted @ 2021-09-01 09:24 Fake_coder 阅读(99) 评论(0) 推荐(0) 编辑
摘要: Linux相关 https://redwingz.blog.csdn.net/article/list/16 MDN https://developer.mozilla.org/zh-CN/docs/Web/HTTP 阅读全文
posted @ 2021-08-28 09:36 Fake_coder 阅读(16) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 15 下一页