⭐️ Treemacs Manual
File & Directory Management with Treemacs Operation Keystroke Function Note Treemacs: Manipulate directory trees associated as projects/workspaces. Manipulate the director...
File & Directory Management with Treemacs Operation Keystroke Function Note Treemacs: Manipulate directory trees associated as projects/workspaces. Manipulate the director...
FROM FROM nginx:alpine FROM express:23-alpine 如果这样写FROM语句,会有问题,因为这里涉及到一个多级构建的概念 首先FROM的概念, The FROM instruction initializes a new build stage and sets the base image for subsequent instruct...
问题 treemacs下有可能出现这样的问题 [Treemacs] Encountered error while following tag at point: (wrong-type-argument markerp 367) fingertip-mode下,有可能出现这样的问题 treesit-buffer-root-node: No available parser for ...
项目是一个vue开发的网站项目,其中有一个功能是需要通过输入授权码,验证成功,进入内容页面。 在开发环境中,一开始是用vite.config.ts 来做代理以及写一个插件来模拟API服务,为了快速测试 然而在生产环境中,vite并不适合做api服务器,需要用express,然后使用nginx做反向代理 一开始,dockerfile,是让nginx和express都在一个docker容器...
最终效果 因为如果直接打开 .html 的话, web-mode 检测到 html 文件,但是不会对Liquid 语法做处理 但如果更改后缀,比如 .djhtml,.tmpl 那么又会失去对html 本身的支持。 这时候需要我们配置 mode + engine 参考Associate an engine A specific engine can be forced wi...
git submodule 没有 remove 开箱即用的子命令 所以需要一系列的步骤,这里记录一下(以下是彻底删除) 如果需要备份的话,先备份 git submodule deinit -f path/to/xxx 这个命令的作用就是会去unregister submodule,path/to/xxx下的内容会被情况,然后删除.git/confg中关于path/to/xxx的...
问题 今天我在 gem install jekyll bundle 的时候,一直出现一个问题就是 /Users/mmmmmcclxxvii/.gem/ruby/3.4.1/gems/jekyll-4.3.4/lib/jekyll.rb:26: warning: logger was loaded from the standard library, but will no longer b...
参考 Installing from the Git Repository 其他没什么,就是在安装的时候,如果是Mac系统,有可能会出现以下问题 ┌─(~/.emacs.d/site-lisp/plugins/magit)────────────────────────────────────────────────────────────────────────────────────...
RS触发器可以由或非门组成, as well as 与非门!!! 这里以或非门举例 RS触发器状态 R:1 S:0 R:0 S:1 R:0 S:0 怎么出现了两种情况,其实是因为在 R=0,S=0的状态下,它是保持上一个状态的意思 R:1 S:1 但是实际上,我们再接一个 这样就可以看出来了 因为RS触发器,逻辑上我们需要输出的两个是 Q和Q非,它两逻辑上应...
test5 这里主要搞懂 unsafe { modify_by_address(&mut t as *mut u32 as usize) }; 就行了 主要是参数 参数中 *mut u32 是啥? *const T 和 *mut T都是 Rust 中合法的类型,是 raw pointer 类型,原始指针,指向的值的类型是 T 只不过,类似 let ptr:*const u32...