Special Relativity

Special Relativity Symmetry $$ t' = \gamma(t - \frac{v}{c^2}x) \\ x' = \gamma(x - vt) $$or: $$ ct' = \gamma(ct - \beta x) \\ x' = \gamma(x - \beta ct) $$Which is same for interval as a vector. What does it say? It means we describe the 4-vector component in another frame $\Sigma’$ by $\Sigma$. That’s means basis will changes reversely($t’ \hat{t’} + r’ \hat{r’}$). It’s symmetric that $x’^\mu = \Lambda^\mu_\nu x^\nu \lrarr x^\mu = \Lambda^{-1 \mu }_\nu x^\nu$. ...

April 22, 2025 · 9 min · nostalgia

Deploy WorkFlow(2)

Collaboration Rules You can set rules for collaboration and to prevent safety issues. Usually, you want to prevent someone from modifying the main branch arbitrarily and restrict all push behavior after a careful check on PRs. Settings Rules restrict creations restrict update restrict deletions block force pushes Here are some simple block rules you may want to set. Pull Request You should create a new branch to avoid conflicts with your modifications, then create a new pull request to submit changes. ...

March 24, 2025 · 2 min · nostalgia

Deploy WorkFlow(1)

Deploy of Blog Here is a record of deploying a static blog with hugo. Preparation Toolchain: hugo git Create Site hugo new site <your-name> cd <your-name> git init git submodule add https://gitclone.com/github.com/adityatelange/hugo-PaperMod.git themes/PaperMod Setting the theme to “PaperMod” # ... above content theme = "PaperMod" Workflow Configuration Git Ignore Set up .gitignore to remove auto-generated content: .hugo_build.lock public/ resources/ Issue Template A readable template can help you classify issues and make them more understandable. ...

March 24, 2025 · 2 min · nostalgia