Skip to content

Commit

Permalink
jazz
Browse files Browse the repository at this point in the history
  • Loading branch information
vivCoding committed Jan 27, 2024
1 parent 6f45512 commit cd1f2e8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions pages/_layouts/blog/post.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ tags: post

<meta property="og:type" content="website">
<meta property="og:title" content="{{ title }} | Vincent V">
<meta property="og:url" content="https://vivcoding.github.io">
<meta property="og:image" content="/assets/images/logo-bg.png">
<meta property="og:description" content="{{ content | excerpt | strip_html | strip_newlines | truncatewords: 30 }}">

Expand Down
2 changes: 1 addition & 1 deletion pages/blog/2024-01-16_wizards.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ I guess this also gives an opportunity to discuss the untrusting nature of human

<img src="https://media1.tenor.com/m/-URYSckgL9sAAAAd/get-out-of-my-head-meme.gif" alt="cat like me fr" width=200>

> Edit: Reading my ramble retrospectively, I do believe documentation and explaining stuff is important. I just find it fascinating how it's part of human nature to question stuff even if we know it's the truth. Perhaps it's linked to the fact that the source of truth is something we created as _humans_, and we cannot believe what we made is correct? idk.
> Edit: Reading my ramble retrospectively, I think I wanted to be clear that I do believe documentation and explaining stuff is important. I just find it fascinating how it's part of human nature to question stuff even if we know it's the truth. Perhaps it's linked to the fact that the source of truth is something we created as _humans_, and we cannot believe what we made is correct? idk.
1 change: 1 addition & 0 deletions pages/index.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

<meta property="og:type" content="website">
<meta property="og:title" content="Vincent V">
<meta property="og:url" content="https://vivcoding.github.io">
<meta property="og:image" content="/assets/images/logo-bg.png">
<meta property="og:description" content="CS Master's @ Purdue University">

Expand Down
2 changes: 2 additions & 0 deletions scripts/section-transitions/navbar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ export function initTransition() {
}
if (percentage > SETTINGS_TRIGGER) {
settingsBtnOverlay.classList.remove(GROUP_HOVER_CLASS)
// override important styles
settingsBtnOverlay.style.setProperty("animation-delay", "0s", "important")
const opacity = 1 - (percentage - SETTINGS_TRIGGER) / 0.1
settingsBtnOverlayContainer.style.opacity = `${opacity}`
if (opacity <= 0) {
Expand Down

0 comments on commit cd1f2e8

Please sign in to comment.