Skip to content

Commit

Permalink
20240901-update posts
Browse files Browse the repository at this point in the history
  • Loading branch information
No4Var2Ye committed Sep 1, 2024
1 parent 2f841a5 commit 10f1b46
Show file tree
Hide file tree
Showing 45 changed files with 2,068 additions and 994 deletions.
13 changes: 12 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ Thumbs.db

# Files
ref/
_draft/

# IDE
.idea/
Expand All @@ -34,3 +33,15 @@ _draft/
# documentation
docs/
!docs/CONTRIBUTING.md
!docs/CODE_OF_CONDUCT.md
!docs/ISSUE_TEMPLATE.md
!docs/PULL_REQUEST_TEMPLATE.md
!docs/CHANGELOG.md
!docs/SECURITY.md

# Posts
**/_drafts/

# Node modules
node_modules/
package-lock.json
31 changes: 16 additions & 15 deletions 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,23 @@
---

<style type="text/css" media="screen">
.container {
margin: 10px auto;
max-width: 600px;
text-align: center;
}
h1 {
margin: 30px 0;
font-size: 4em;
line-height: 1;
letter-spacing: -1px;
}
.container {
margin: 10px auto;
max-width: 600px;
text-align: center;
}

h1 {
margin: 30px 0;
font-size: 4em;
line-height: 1;
letter-spacing: -1px;
}
</style>

<div class="container">
<h1>404</h1>
<h1>404</h1>

<p><strong>Page not found :(</strong></p>
<p>The requested page could not be found.</p>
</div>
<p><strong>Page not found :(</strong></p>
<p>The requested page could not be found.</p>
</div>
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,49 @@

# NoVarYe'Blogs

**NoVarYe**:

- **NoVar**: This part stands for “No Variation,” implying consistency and stability. In personal life and work, it represents the absence of unnecessary variables, reflecting simplicity, stability, and efficiency.\
- **Ye**: An abbreviation for “Yet Another.” In the field of computing, it usually denotes another tool, library, or system of the same type, possibly a variation, improvement, or complement to existing solutions.\
- **Overall Meaning**:
“NoVarYe” can be understood as dynamic within stability, suggesting that while one pursues a simple, stable, and efficient lifestyle, they also continuously explore new things.

- **NoVar**:这个部分代表 "No Variation",意指一种一致性和稳定性。在个人生活和工作中,表现为没有多余的变量,体现了简洁、稳定和高效的特性。
- **Ye**:为 "Yet Another" 的缩写。在计算机领域,通常表示又一个同类型的工具、库或系统,可能是对已有解决方案的变体、改进或补充。

- **整体含义:**
"NoVarYe" 可以理解为在稳定中蕴含动态,暗示着个人在追求简洁、稳定和高效的生活方式的同时,也不断探索新事物。


## Introduction

## Prerequisites

Jekyll requires the following:
- Ruby version 2.5.0 or higher

> [!WARNING]
>
> If you are using Ruby version 3.0.0 or higher. You may fix it by adding webrick to your dependencies: `bundle add webrick`
>

## Development

`bundle exec jekyll serve`

To preview your site with drafts, run jekyll serve or jekyll build with the `--drafts`</br>

`bundle exec jekyll serve --drafts`

`bundle exec jekyll serve --watch`

Pass the -`-livereload` option to serve to automatically refresh the page with each change you make to the source files: `bundle exec jekyll serve --livereload`

## Deployment

You can set the environment by using the `JEKYLL_ENV` environment variable when running a command. For example:
`JEKYLL_ENV=production bundle exec jekyll build`

## License

Expand Down
40 changes: 32 additions & 8 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ description: >-
and draw inspiration and wisdom to add color to your life."
# the avatar on sidebar, support local or CORS resources
avatar: /assets/avatar.jpg
avatar: /assets/avatars/avatar.jpg

# Site settings
# domain: No4Var2Ye.github.io
Expand All @@ -38,8 +38,8 @@ plugins:

# Web Analytics Settings
sass:
style: compressed
style: compressed

analytics:
google:
id: G-MRH0X2Y200
Expand Down Expand Up @@ -82,7 +82,29 @@ pagination:
enabled: true
per_page: 10
title: "Page {{ page.number }}"
paginate: 10
paginate:

# Collection settings
# TODO: Add your collections here.
collections:
note:
output: true
permalink: /note/:path/
design:
output: true
permalink: /design/:path/
life:
output: true
permalink: /life/:path/
code:
output: true
permalink: /code/:path/
cg:
output: true
permalink: /cg/:path/
ai:
output: true
permalink: /ai/:path/

# GitHub Pages settings
lsi: false
Expand Down Expand Up @@ -115,18 +137,20 @@ excerpt_separator: "<!--more-->"

# If you want to link only specific pages in your header, use this and add the path to the pages
# in order as they should show up.
# TODO: Add the pages you want to show up in the header.
header_pages:
- blog.md
- contact.md
# - blog.md
# - contact.md
- webgl-example.html
- about.markdown

# Set to `true` to show excerpts on the homepage.
# TODO: Set to `true` to show excerpts on the homepage.
#show_excerpts: false

varatoz:
# Available skins are:
# classic Default, light color scheme.
# dark Dark variant of the classic skin.
# dark Dark variant of the classic skin.
skin: classic

# VarAtoZ date format.
Expand Down
4 changes: 4 additions & 0 deletions _data/navigation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- name: Home
link: /
- name: About
link: /about.html
13 changes: 0 additions & 13 deletions _drafts/2016-05-20-welcome-to-jekyll.md

This file was deleted.

170 changes: 0 additions & 170 deletions _drafts/2024-08-26-human-machine-inteaction.markdown

This file was deleted.

Loading

0 comments on commit 10f1b46

Please sign in to comment.