mirror of
https://github.com/dongdigua/dongdigua.github.io
synced 2024-11-23 23:53:10 +08:00
edit: new_blog_arch, ready for CI
Makefile ignore rm org cache collection gmi add kisslinux
This commit is contained in:
parent
9fe75d18ac
commit
32f21aa89f
@ -42,3 +42,4 @@ Gemcast, Esperanto
|
|||||||
=> gemini://gemini.cyberbot.space/ + cyberbot
|
=> gemini://gemini.cyberbot.space/ + cyberbot
|
||||||
undergoes frequent maintenance
|
undergoes frequent maintenance
|
||||||
=> gemini://gemini.cyberbot.space/smolzine/ ++ smolzine
|
=> gemini://gemini.cyberbot.space/smolzine/ ++ smolzine
|
||||||
|
=> gemini://tilde.team/~kiedtl/k1ss/ + Kiss Linux mirror
|
||||||
|
@ -11,6 +11,6 @@ html:
|
|||||||
@echo "DONE"
|
@echo "DONE"
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm ~/.org-timestamps/org-pages.cache
|
- rm ~/.org-timestamps/org-pages.cache
|
||||||
$(TARGET) | xargs -I {} rm {}
|
$(TARGET) | xargs -I {} rm {}
|
||||||
rm ../feed.xml*
|
rm ../feed.xml*
|
||||||
|
@ -77,7 +77,7 @@ CPU, IC, ARM
|
|||||||
出国
|
出国
|
||||||
*** [[http://jujuba.me/posts/program-analysis-via-llvm-pass.html][LLVM Pass来实现简化版taint analysis]]
|
*** [[http://jujuba.me/posts/program-analysis-via-llvm-pass.html][LLVM Pass来实现简化版taint analysis]]
|
||||||
*** [[http://jujuba.me/posts/taste-of-code.html][代码的taste]]
|
*** [[http://jujuba.me/posts/taste-of-code.html][代码的taste]]
|
||||||
#+ATTR_HTML: :width 256px
|
#+ATTR_HTML: :width 400px
|
||||||
[[http://jujuba.me/imgs/linus-on-TED.png]]
|
[[http://jujuba.me/imgs/linus-on-TED.png]]
|
||||||
** [[https://cireu.github.io/2019/09/17/lisp-setf/][NIL: setf 中「f」的本意]]
|
** [[https://cireu.github.io/2019/09/17/lisp-setf/][NIL: setf 中「f」的本意]]
|
||||||
** [[https://www.cnblogs.com/zjjws/p/13346020.html][第 N 个质数]] :c:algorithm:
|
** [[https://www.cnblogs.com/zjjws/p/13346020.html][第 N 个质数]] :c:algorithm:
|
||||||
|
@ -1,26 +1,37 @@
|
|||||||
#+TITLE: New Blog Architecture
|
#+TITLE: New(and Newer) Blog Architecture
|
||||||
#+DESCRIPTION: It's time
|
#+DESCRIPTION: It's time
|
||||||
#+DATE: <2022-11-20 Sun>
|
#+DATE: <2022-11-20 Sun>
|
||||||
|
|
||||||
|
* Branch
|
||||||
I've never fully learnt git before(only search for garbage when meeted with problem), so I recently read [[https://git-scm.com/book][ProGit]].
|
I've never fully learnt git before(only search for garbage when meeted with problem), so I recently read [[https://git-scm.com/book][ProGit]].
|
||||||
And I have some good ideas on my repo architecture: I should make use of branch, obviously.
|
And I have some good ideas on my repo architecture: I should make use of branch, obviously.
|
||||||
|
|
||||||
* Idea is:
|
** Idea is:
|
||||||
seperate the source file(org) and the generated files(html, feed.xml)
|
seperate the source file(org) and the generated files(html, feed.xml)
|
||||||
so I can
|
so I can
|
||||||
** clearly look at the diff
|
*** clearly look at the diff
|
||||||
** delete the generated files if I want
|
*** delete the generated files if I want
|
||||||
because those static files are really unecessary and takes much space
|
because those static files are really unecessary and takes much space
|
||||||
|
|
||||||
* So what
|
** So what
|
||||||
** use =filter-branch= to remove the huge =feed.xml= in the full history
|
*** use =filter-branch= to remove the huge =feed.xml= in the full history
|
||||||
** ignore the generated files in the source repo
|
*** ignore the generated files in the source repo
|
||||||
** merge the source repo into site repo when I think it's ok
|
*** merge the source repo into site repo when I think it's ok
|
||||||
don't remove the source(org) in the site repo,
|
don't remove the source(org) in the site repo,
|
||||||
if build in main and checkout to site, those html will be overwritten
|
if build in main and checkout to site, those html will be overwritten
|
||||||
** and I will use the same stratagy on my YW sub-website if there's no problem
|
*** +and I will use the same stratagy on my YW sub-website if there's no problem+
|
||||||
|
I'm testing using CI on YW sub-site before deploying on this precious repo
|
||||||
|
|
||||||
* Need Advice
|
** Need Advice
|
||||||
I'm really new to do this.
|
+I'm really new to do this. If you have a better idea, or this is somehow useful to you,+
|
||||||
If you have a better idea, or this is somehow useful to you,
|
+*contact me, please!*+
|
||||||
*contact me, please!*
|
|
||||||
|
* CI
|
||||||
|
I previously thought of using CI to deploy blog, but I /thought/ it too difficult, so just keep status quo.
|
||||||
|
But for many times I want to build a [[https://github.com/dongdigua/configs/blob/main/configuration.nix][NixOS]] with [[https://donngdigua.github.io/wayland][wayland]] and lots of other big util(such as clang and metasploit),
|
||||||
|
if I build it on my machine, it will take up too many spaces and make no use except for building iso.
|
||||||
|
So it urged me to use a CI, after some [[https://t.bilibili.com/735422465675624481][trying]], I found it not difficult and in fact, very useful!
|
||||||
|
|
||||||
|
I can have my huge feed.xml(which contains each of my post) dynamically generated by CI, it will save lots of spaces!
|
||||||
|
I will [[https://git-scm.com/book/en/v2/Git-Tools-Bundling][bundle]] my entire history mess and put it on release, like previous big change,
|
||||||
|
then use the Nuclear Option =filter-branch= to delete those generated big files.
|
||||||
|
4
posts.md
4
posts.md
@ -2,8 +2,8 @@
|
|||||||
### Posts (sorted by time)
|
### Posts (sorted by time)
|
||||||
- [狗日的腾讯会议](damn_tencent_meeting)<br>
|
- [狗日的腾讯会议](damn_tencent_meeting)<br>
|
||||||
上网课有感而发
|
上网课有感而发
|
||||||
- [New Blog Repo Architecture](new_blog_arch)<br>
|
- [New Blog Architecture](new_blog_arch)<br>
|
||||||
please contct me if you have a better idea
|
mess -> branch -> CI
|
||||||
- [记一次帮老师修U盘](recover_udisk)<br>
|
- [记一次帮老师修U盘](recover_udisk)<br>
|
||||||
- [Clear Kernel Compile Error? Fix It](clear_kernel_compile_fix)<br>
|
- [Clear Kernel Compile Error? Fix It](clear_kernel_compile_fix)<br>
|
||||||
- [Gentoo LLVM\_TARGETS not Working?](gentoo_llvm_targets)<br>
|
- [Gentoo LLVM\_TARGETS not Working?](gentoo_llvm_targets)<br>
|
||||||
|
Loading…
Reference in New Issue
Block a user