Add knowledge vimwiki
This commit is contained in:
parent
48fdb4e384
commit
f14639669c
7
.vim/vimwiki/asm.wiki
Normal file
7
.vim/vimwiki/asm.wiki
Normal file
@ -0,0 +1,7 @@
|
||||
https://hackaday.com/2021/02/25/oddball-x86-instructions/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+hackaday%2FLgoM+%28Hack+a+Day%29
|
||||
|
||||
https://hackaday.com/2016/06/14/linux-assembly-required/
|
||||
|
||||
https://hackaday.com/2020/08/25/assembly-language-for-real/
|
||||
https://gpfault.net/posts/asm-tut-0.txt.html
|
||||
https://wolchok.org/posts/how-to-read-arm64-assembly-language/
|
7
.vim/vimwiki/https.wiki
Normal file
7
.vim/vimwiki/https.wiki
Normal file
@ -0,0 +1,7 @@
|
||||
= security scan =
|
||||
https://securityheaders.com/?q=https%3A%2F%2Fmathux.org&followRedirects=on
|
||||
|
||||
= fix =
|
||||
https://www.justegeek.fr/mettre-en-place-len-tete-referrer-policy-pour-securiser-son-site/
|
||||
https://scotthelme.co.uk/a-new-security-header-referrer-policy/
|
||||
|
@ -6,6 +6,11 @@
|
||||
Use :VWS /term/ to search.
|
||||
Use :lopen to see all results
|
||||
|
||||
= knowledge =
|
||||
* [[vim]]
|
||||
* [[asm]]
|
||||
* [[https]]
|
||||
* [[performance]]
|
||||
= Bookeen =
|
||||
* [[Notes]]
|
||||
= Dev =
|
||||
|
5
.vim/vimwiki/performance.wiki
Normal file
5
.vim/vimwiki/performance.wiki
Normal file
@ -0,0 +1,5 @@
|
||||
=Global definition=
|
||||
https://docs.google.com/document/d/1WfJ-2ytYtZnyafbd_PJbr7S_OjVqg8s18HJszk7uQEM/edit
|
||||
|
||||
=perf & flamegraph example =
|
||||
https://talawah.io/blog/extreme-http-performance-tuning-one-point-two-million/#flame-graph-generation
|
13
.vim/vimwiki/vim.wiki
Normal file
13
.vim/vimwiki/vim.wiki
Normal file
@ -0,0 +1,13 @@
|
||||
= Startup time =
|
||||
|
||||
vim --startuptime vimstartup.txt
|
||||
|
||||
Then open this file, and you should see a heading and a list of timing messages.
|
||||
You could also try piping the output of the file through "sort -k 2" to easily find the slowest sourced scripts. (cat vimstartup.txt | sort -k 2)
|
||||
|
||||
Btw, using :help slow-start will show you Vim's built-in guidance on startup performance. If you're trying to improve Vim startup process, this might be a good start.
|
||||
|
||||
|
||||
= Debug Errors =
|
||||
|
||||
Check previous error message with :messages
|
Loading…
Reference in New Issue
Block a user