摘要: 问题背景 IDE: VSCode import turtle turtle.forward(20) warning:The system version of Tk is deprecated and may be removed in a future release. Please don't 阅读全文
posted @ 2022-12-09 15:12 鱼汤泡饭 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 前言 第一次接触 Saas(Service as a soft),用此博客记录本人从 0-1 摸索企业管理(OA)平台的设计思路及中途所遇见的坑,共勉。 背景 设计一个 OA 管理平台,此篇重点讲述通用的基本管理功能: 权限管理 角色管理 组织管理 成员管理 权限管理 框架初构 在设计权限管理时,目 阅读全文
posted @ 2022-11-15 10:40 鱼汤泡饭 阅读(880) 评论(0) 推荐(0) 编辑
摘要: 背景 无论是作为程序员还是产品经理,都不可避免的需要输出逻辑清晰的UML【时序图/活动图(流程图)/状态图等等】,从而清晰的表达展示自己内心想法。但多数情况,大部分人面对复杂的业务逻辑,往往将图示绘制得复杂难懂,反而失去了应减轻理解逻辑成本的基本目的。故,不才总结自己面对实际情况的经验并分享出来,共 阅读全文
posted @ 2022-11-07 17:49 鱼汤泡饭 阅读(4952) 评论(0) 推荐(1) 编辑
摘要: Have your own server ! Alert! : 仅供学习! && KEEP FOOLISH What do you need to prepare? Basic costs Domain Buy a domain is first of all You can use it in b 阅读全文
posted @ 2022-03-31 19:58 鱼汤泡饭 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 从0搭建Vue3项目 Vue 的安装和升级 # vue的安装升级 npm install -g @vue/cli # 查询版本号 vue --version Vue3 工程创建 # 通过vue-cli快速创建一个vue项目 ## 带ui界面(vue version >= 3) vue ui ## 不 阅读全文
posted @ 2022-03-31 19:50 鱼汤泡饭 阅读(428) 评论(0) 推荐(0) 编辑
摘要: 常用命令行 获取已更新的补丁 wwmic qfe get hotfixid 服务 # 查询[svc_name]服务是否已安装 sc query [svc_name] misc # 重启性能计数器 lodctr /R # 杀进程 taskkill /f /t /im {xx}.exe 阅读全文
posted @ 2022-03-04 11:23 鱼汤泡饭 阅读(38) 评论(0) 推荐(0) 编辑
摘要: Vue3 监控响应变化 通过reactive reactive定义文档 reactive定义: 接收一个普通对象然后返回该普通对象的响应式代理。等同于 2.x 的 Vue.observable() reactive实现: proxy + effect /* App.vue 同一个组件中, 定义一个r 阅读全文
posted @ 2022-02-16 14:13 鱼汤泡饭 阅读(335) 评论(0) 推荐(0) 编辑
摘要: 进入user.ssh\config Host * PubkeyAcceptedKeyTypes +ssh-rsa HostKeyAlgorithms +ssh-rsa 参考: https://silenwang.github.io/2021/10/11/ssh%E9%BB%98%E8%AE%A4%E 阅读全文
posted @ 2021-10-29 15:24 鱼汤泡饭 阅读(264) 评论(0) 推荐(0) 编辑
摘要: Debain操作系统 环境搭建相关命令行 apt-get update 安装pip apt-get install python3-pip 安装git apt-get install git 安装web.py https://github.com/webpy/webpy python3 -m pip 阅读全文
posted @ 2021-10-20 17:39 鱼汤泡饭 阅读(39) 评论(0) 推荐(0) 编辑
摘要: windbg常用命令行收集 使用工具 : windbg preview 环境配置 Setting : Default source path // 源代码路径 Default symbol path // pdb 路径 分析相关命令行 lmvm ntdll // 查看ntdll.dll的详细信息(注 阅读全文
posted @ 2021-05-20 13:47 鱼汤泡饭 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 背景 默认不支持GBK的编码格式 目的 安装插件包ConvertToUTF8 步骤 1.安装Package Control https://packagecontrol.io/installation 2. Ctrl + Shift + P : Install Package 3. 找到插件Conv 阅读全文
posted @ 2020-11-10 10:38 鱼汤泡饭 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 背景 发现自己在github上和微信小程序代码管理上用的是不同的git邮箱, 公共配置不能满足现在的代码管理需求. 全是从大佬这里学的, 自己边整理边学习 https://www.cnblogs.com/popfisher/p/5731232.html 解决办法 生成设置不同平台对应的私密公钥 生成 阅读全文
posted @ 2020-10-07 15:13 鱼汤泡饭 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 转自: https://blog.csdn.net/qwertyupoiuytr/article/details/53999369 InternetAPI Error Codes 12001 - Outof Handles 12002 -Timeout 12003 -Extended Error 1 阅读全文
posted @ 2020-09-17 16:18 鱼汤泡饭 阅读(293) 评论(0) 推荐(0) 编辑
摘要: 实例 包含特定字符串的则不匹配 ^(?!.*(abd|bcd)) \\ ^ - 字符串的开头 \\ . - 任意字符 \\ * - 匹配0次或多次 \\ ?! - 负向预查模式 阅读全文
posted @ 2020-09-08 14:51 鱼汤泡饭 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 线程相关 // 返回的伪句柄 Handle thread_handle = GetCurrentThread() // 返回的唯一线程id DWORD thread_id = GetCurrentThreadId() WTL和ATL混用导致编译不过 CString定义冲突 #define _WTL_ 阅读全文
posted @ 2020-08-12 10:44 鱼汤泡饭 阅读(105) 评论(0) 推荐(0) 编辑
摘要: string.gsub(s, pattern, repl[, n]) 阅读全文
posted @ 2019-10-08 19:04 鱼汤泡饭 阅读(458) 评论(0) 推荐(0) 编辑
摘要: 打开bash $ git config --global core.editor "code --wait" 打开git全局配置文件 $ git config --global -e 配置文件示例 阅读全文
posted @ 2019-10-08 19:02 鱼汤泡饭 阅读(1492) 评论(0) 推荐(0) 编辑
摘要: common: tag=>type: content:>url type:start / end / condition / operation / input / output / subroutine tag: 自定义标签,用于定义流程图中对应的名字 content : 流程图中的自定义显示文本 阅读全文
posted @ 2019-09-27 20:20 鱼汤泡饭 阅读(1797) 评论(0) 推荐(0) 编辑
摘要: insert:进入编辑状态 esc: 退出编辑状态 ZZ:退出vim 阅读全文
posted @ 2019-09-27 20:19 鱼汤泡饭 阅读(316) 评论(0) 推荐(0) 编辑
摘要: #打开git bash的快捷键 shift + f10 -> s -> enter #基本命令行 //在当前目录初始化git 库 $ git init //查看当前改动 $ git status $ git status -s //状态说明M: modify A: addD: deleteR: re 阅读全文
posted @ 2019-09-27 20:18 鱼汤泡饭 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 获取ini文件value GetPrivateProfileString 参考网址:https://docs.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-getprivateprofilestring DWORD GetPriva 阅读全文
posted @ 2019-09-05 10:18 鱼汤泡饭 阅读(1230) 评论(0) 推荐(0) 编辑
摘要: 参考地址 https://zh-google-styleguide.readthedocs.io/en/latest/contents/ 常用清单 命名类 变量名全部小写,不需要类型前缀: int counts = 0; 函数名单词开头大写: RunFunction(); const/enum 类型 阅读全文
posted @ 2019-07-16 14:53 鱼汤泡饭 阅读(454) 评论(0) 推荐(0) 编辑
摘要: 基本要点: -栈的索引: 栈顶始终 -1 栈底始终 1 语法积累: 1. luaL_dostring(L,str) 执行str的lua代码,并将结果压入L中。--可以返回一张表,字符串,数字.. 2. lua_pushnil(L) 向栈中压入一个空值。--利用它可以确保失败也能返回一个空值,提高代码 阅读全文
posted @ 2019-07-03 10:52 鱼汤泡饭 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 需要掌握知识: lua table的使用(创建自己函数的表作为函数库) 普通函数的调用:tab.func(tab,参数) 等效于表中函数的调用tab:func(参数) 基本思路: 1.在相同目录下创建a.lua b.lua 2.将a.lua作为我的函数库 1.1 在a.lua中建立一张空表 1.2 阅读全文
posted @ 2019-06-25 14:02 鱼汤泡饭 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 别再用markdown语法画图了,试试PlantUML! 【VScode】画出逻辑清晰的UML (以下正文) 准备工作 在VScode中下载插件Markdown Preview Enhanced插件,用于预览效果 创建一个.md文件 在VScode中打开文件,界面内点击右键可以看到Open prev 阅读全文
posted @ 2019-06-20 13:48 鱼汤泡饭 阅读(4566) 评论(0) 推荐(0) 编辑