3.3. LSP
what i need for custom neovim statusline #neovim
3.3. LSP
what i need for custom neovim statusline #neovim
吴玉生 7000
练字
Try these keybindings in your keybindings.json: { "key": "ctrl+shift+e", // when Explorer not open // "command": "workbench.view.explorer", // either of these commands works "command": "workbench.files.action.focusFilesExplorer", "when": "!explorerViewletVisible" }, { "key": "ctrl+shift+e", // when Explorer open "command": "workbench.action.toggleSidebarVisibility", "when": "explorerViewletVisible" } How did I find those context keys? See Inspect Context Keys Utility. Open View/Help/Toggle Developer Tools Go to and clear (right-click) the Console in the Developer Tools Trigger the command: Developer: Inspect Context Keys from the Command Palette and click anywhere in the vscode window In the Console, a large object will be created and output. Expand this object open so you can search in it. With focus in the Console, Ctrl/Cmd+F to open a find input. For me, this appears at the very bottom and is tricky to see. Type what you want to find, like "explorer" I found 21 hits and looked at them all to see which were promising - you can Enter through them if focus is in the find input. explorerViewletVisible looked most promising. Then I looked through the KeyBoard Shortcuts for "view explorer" and then "sidebar" to find commands I thought would work.
vscode 使用同一个快捷键实现类似IDEA 展开/隐藏文件菜单 #vscode
两个 viewport 的故事(一)
读一下 搞懂css 的max-width 和viewport关系变化 #css
图文并茂让你必须弄懂 viewport
读一下 弄懂max-width viewport #css
<collection/>中的column 表示你要拿现在查询出来的哪一条或者哪几条数据当做联合查询的条件。 可以看到我写的<collection/> 中的column 是RECORD_ID,但是我的主sql语句的select 结果集里并不包含RECORD_ID,mybatis找不到RECORD_ID这个字段,因此就会直接忽略掉以RECORD_ID 为查询条件的 <collection/> 这个组合查询
想传入column的值必须在主查询中明确的select出来才行
I was able to not create session with the help of the above post, adding .requestCache(requestCache -> requestCache.disable()); to the security configuration. But still not sure about reduced validity which can be useful sometimes (I think)
当请求到一个保护资源时,用户未登录的话,后端会暂时保存该请求到某个缓存,然后重定向到登陆界面,登陆成功后从再从缓存里获取。 由于我使用前后端分离+restApi,重定向交给前端,我只想返回错误,所以取消该缓存,同时也可以取消掉生成过多的anonymous的session #SpringSecurity
1 、Spring 容器的启动:入口是八股文说烂了的 refresh() 方法,不过把这个流程看懂,可以搞明白:( 1 )了解 Spring 容器的体系:包括整个 BeanFactory 和 Application 体系的整体设计,以及一部分组件的存在(是的,知道这玩意存在可能本身也是一种收获);( 2 )了解很多关键步骤发生的时机:比如配置文件的加载,环境的切换,国际化处理、事件的机制,以及一部分钩子函数调用;2 、Bean 的创建:这个也是被八股文说烂的,不过确实也很重要,看懂以 getBean 方法的调用开始的整个 Bean 创建流程,可以搞明白:( 1 )配置文件上的 Bean 到底是怎么完成依赖注入变成容器里面的 Bean 的(废话);( 2 )一堆钩子函数,比如各种 PostProcossor 、Aware 还有其他回调的触发时机,这点尤其重要,因为 Spring 本身就是通过这边的各种回调把五花八门的功能缝合在一起的;( 3 )进一步了解 Spring 容器的各种组件 /机制,以及这些它们所支持的功能,比如别名、FactoryBean ,三级缓存,还有类型注入(泛型解析机制),甚至是各种工具类;
#spring
个功能是在 clash_for_windows_pkg 上的,就是 github 上那个 Clash 闭源客户端。在 settings-Profiles-Parsers ,点击 Edit编辑:parsers: # array - url: #你的订阅地址 yaml: prepend-rules: - DST-PORT,22,DIRECT - DOMAIN-SUFFIX,aws.amazon.com,DIRECT - DOMAIN-SUFFIX,amazonaws.com,DIRECT之后在 Profiles 中更新你的订阅,之后查看你的订阅 Config 文件,会发现在 rules 下,最前面已经添加上上述的规则,以后每次更新都会在 rules 的最前面加上上面的三个规则。
clash 自定义订阅选项
Output of ls or Get-ChildItem has unexpected bg color for directories names #18550
解决powershell 难看的文件夹背景颜色 #read
推荐的编程语言:Assembly, C, Python, 外加 Haskell 和 Verilog, 你不用对 Assembly 非常精通,但只有懂了 Assembly 才懂计算机底层在干什么,才知道 C 的精妙之处,懂了 C 之后才知道 Python 帮你做了什么,这三门语言是抽象的不同层次。学一下 Haskell 可以帮助你理解编程语言的设计,学些 Verilog 让你知道硬件如何运行。
#read
基础 计算机组成原理,操作系统,计算机网络,代码能力等。平时可直接自学 web 安全,路线基本是 html/ js/css+php (基本看懂)+各种前段漏洞( sql 注入 xss 文件上传等等基础的)+进阶漏洞(模板注入,过滤饶过,逻辑漏洞)+工具使用( kali )+实战打靶。可多看论坛社区多涨姿势。以上学完,基本入门了网络安全。。
网络安全先从web安全入门 #网络安全
黑客攻防从入门到精通
简单看看 #网络安全
怎么才能找到适合自己学习的开源代码?
to read #read
www.yuque.com 《后端开发之路——基于若依》
#toread
Find a really good UI library, and then see how they do CSS.Basically,Master flexbox.Learn flex grid.Understand positioning (static, relative, absolute, sticky, fixed), understand z-index.Understand margin v padding, block v inlineUnderstand the units of measurement like rem, em , vh, vw, px, %, calc()Learn media queries, wrapping, flex order, if you need responsive funThat should be enough to be dangerous.
学习css应该先快速学哪一些 #css
ZF3R0-FHED2-M80TY-8QYGC-NPKYF YF390-0HF8P-M81RQ-2DXQE-M2UT6 ZF71R-DMX85-08DQY-8YMNC-PPHV8
vmware 免费 key #vmware
Your problem with Vim is that you don't grok vi.
有意思,待阅读 #read #vim
OpenAI 推出超神 ChatGPT 注册攻略来了
今晚试一试 #chatgpt
Bash Brackets Quick Reference
shell 所有括号作用 #shell
布丁扫描
ocr
nvim_open_win
应该和我想自定义floatwindow有关 #neovim