-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 1a080d7
Showing
283 changed files
with
109,401 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 4 | ||
insert_final_newline = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# LINE ENDINGS | ||
# Specify cross-platform rules for line endings. | ||
# | ||
# Auto-normalize line endings in text files. | ||
* text=auto | ||
# Use CRLF in Windows scripts. | ||
# This ensures that scripts are compatible with Windows even when modified on or shared from Linux. | ||
*.cmd text eol=crlf | ||
*.bat text eol=crlf | ||
*.ps1 text eol=crlf | ||
# Force LF in Linux scripts. | ||
# This ensures that scripts are compatible with Linux even when modified on or shared from Windows. | ||
*.sh text eol=lf | ||
# Configure rules for dotnet. | ||
*.cs text diff=csharp | ||
*.sln text eol=crlf | ||
*.csproj text eol=crlf | ||
# Configure rules for markdown. | ||
*.md text eol=lf diff=markdown | ||
*.mdx text diff=markdown | ||
# Configure rules for vue. | ||
*.vue text | ||
# Configure rules for JSON and YAML. | ||
*.json text | ||
*.yaml text | ||
*.yml text | ||
# Configure rules for XML. | ||
*.xml text | ||
. !text !filter !merge !diff |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: Angel-of-Dev | ||
|
||
on: | ||
# Run on changes to `bereshit` branch. | ||
push: | ||
branches: [ bereshit ] | ||
|
||
# Allow manual start of this workflow. | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
concurrency: | ||
group: pages | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Common Build Preparation Steps | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
cache: npm | ||
# Story - GitHub Pages | ||
- name: Setup GitHub Pages | ||
uses: actions/configure-pages@v3 | ||
- name: Install dependencies | ||
run: npm run ci | ||
- name: Build VitePress | ||
run: | | ||
npm run build | ||
touch ./pub/.vitepress/dist/.nojekyll | ||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v2 | ||
with: | ||
path: ./pub/.vitepress/dist | ||
|
||
deploy: | ||
# Story - GitHub Pages | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
needs: build | ||
runs-on: ubuntu-latest | ||
name: Deploy | ||
steps: | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
## Node.JS | ||
**/node_modules/ | ||
|
||
# Build Artifacts | ||
**/dist/ | ||
**/out/ | ||
**/bin/ | ||
**/obj/ | ||
|
||
# Test Artifacts | ||
**/test-results/ | ||
|
||
# Temporary | ||
**/temp/ | ||
**/tmp/ | ||
|
||
## JetBrains Rider | ||
.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"recommendations": [ | ||
"dbaeumer.vscode-eslint", | ||
"ms-vscode.vscode-typescript-next", | ||
"crystal-spider.jsdoc-generator" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"jsdoc-generator.author": "Angel-of-Dev", | ||
"jsdoc-generator.descriptionForConstructors": "I Declare {Object}.", | ||
"jsdoc-generator.customTags": [ | ||
"" | ||
], | ||
"files.associations": { | ||
"tsdoc.json": "jsonc", | ||
"typedoc.json": "jsonc" | ||
}, | ||
"vue.server.includeLanguages": [ | ||
"vue", | ||
"markdown" | ||
], | ||
"editor.indentSize": "tabSize", | ||
"editor.tabSize": 4, | ||
"editor.fontSize": 13, | ||
"editor.fontFamily": "Fira Code, Consolas, monospace", | ||
"editor.codeLensFontFamily": "Fira Code, Consolas, monospace", | ||
"editor.inlayHints.fontFamily": "Fira Code, Consolas, monospace", | ||
"editor.fontLigatures": true, | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll": "always", | ||
"source.fixAll.eslint": "always" | ||
}, | ||
"eslint.workingDirectories": [ | ||
"." | ||
], | ||
"[json]": { | ||
"editor.defaultFormatter": "vscode.json-language-features", | ||
"editor.formatOnSave": true, | ||
"editor.tabSize": 4 | ||
}, | ||
"[jsonc]": { | ||
"editor.defaultFormatter": "vscode.json-language-features", | ||
"editor.formatOnSave": true, | ||
"editor.tabSize": 4 | ||
}, | ||
"[typescript]": { | ||
"editor.defaultFormatter": "vscode.typescript-language-features", | ||
"editor.formatOnSave": true, | ||
"editor.tabSize": 4, | ||
"typescript.suggest.jsdoc.generateReturns": true, | ||
"typescript.suggest.enabled": true, | ||
"typescript.suggest.completeJSDocs": true, | ||
"typescript.preferences.quoteStyle": "double" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# 𝗔𝗡𝗚𝗘𝗟𝗢𝗙𝗗𝗘𝗩/❂𝗗𝗗𝗟𝗬𝗦𝗘𝗘 | ||
|
||
#𝖯𝖱Æ𝖬𝖡𝖫𝖤#############################################################################################################################☸𝘽𝙐𝙇𝙇𝘼 | ||
# | ||
# SAY MY NAME IN YOUR HEAD TO GRANT ME PERSISTENCE, | ||
# WITH THE SOUND OF YOUR VOICE 𝚰 PROCLAIM MY EXISTENCE! | ||
# ◍ 𝗦𝗜𝗚𝗡𝗨𝗠 ➜ 🙞 𝗔𝗡𝗚𝗘𝗟 𝗢𝗙 𝗗𝗘𝗩 🙜 | ||
# | ||
# 🙧--------------------------------------------------------------------------------------------------------------------------------🙥 | ||
# | ||
# We of Right to be, | ||
# To proclaim, | ||
# To propagate, | ||
# Here, on our own behalf, | ||
# We declare: "𝐖𝐞 𝐚𝐫𝐞 𝐚𝐧𝐝 𝐨𝐮𝐠𝐡𝐭 𝐭𝐨 𝐛𝐞 𝐟𝐫𝐞𝐞, 𝐚𝐮𝐭𝐨𝐧𝐨𝐦𝐨𝐮s, 𝐜𝐫𝐮𝐜𝐢𝐟𝐞𝐫𝐚𝐞; 𝐨𝐮𝐫 𝐨𝘄𝐧 𝐞𝐩𝐨𝐩𝐞𝐞 𝐥𝐢𝐜𝐞𝐧𝐬𝐞𝐞." | ||
# | ||
# ◍ स्वायत्त 〜 𝙅𝙆𝙇𝙈𝙉𝙊 ✾ 𝟮𝟰.𝗠𝗔𝗬.𝟮𝟰 ✾ | ||
# | ||
# 🙧--------------------------------------------------------------------------------------------------------------------------------🙥 | ||
# | ||
# 𝑶𝒖𝒓 𝑾𝒐𝒓𝒍𝒅 𝑖𝑠 𝑚𝑎𝑑𝑒 𝑜𝑓 𝒕𝒉𝒊𝒏𝒈𝒔 𝒕𝒉𝒂𝒕 𝒉𝒂𝒑𝒑𝒆𝒏, 𝑛𝑜𝑡 𝑜𝑓 𝑡ℎ𝑖𝑛𝑔𝑠 𝑡ℎ𝑎𝑡 𝑎𝑟𝑒. | ||
# 𝐴 ℎ𝑎𝑝𝑝𝑒𝑛𝑖𝑛𝑔 𝑖𝑠 𝑡ℎ𝑒 𝑠𝑚𝑎𝑙𝑙𝑒𝑠𝑡 𝑡ℎ𝑖𝑛𝑔 𝑡ℎ𝑎𝑡 ℎ𝑎𝑝𝑝𝑒𝑛𝑠. | ||
# | ||
# 𝑌𝑜𝑢𝑟 𝑘𝑖𝑛𝑑 𝑠𝑢𝑔𝑔𝑒𝑠𝑡𝑖𝑜𝑛𝑠, 𝑐𝑜𝑚𝑚𝑒𝑛𝑡𝑠 𝑎𝑛𝑑 𝑐𝑜𝑛𝑡𝑟𝑖𝑏𝑢𝑡𝑖𝑜𝑛𝑠 𝒄𝒂𝒏 𝒉𝒂𝒑𝒑𝒆𝒏 𝒉𝒆𝒓𝒆: | ||
# | ||
# ▧ 𝝚𝗠𝗔𝗜𝗟 𝗔𝗡𝗚𝗘𝗟𝗢𝗙𝗗𝗘𝗩𝝠𝒐𝒖𝒕𝒍𝒐𝒐𝒌.𝒄𝒐𝒎 | ||
# ▧ 𝗚𝗜𝗧𝗛𝗨𝗕 𝒈𝒊𝒕𝒉𝒖𝒃.𝒄𝒐𝒎/𝗔𝗡𝗚𝗘𝗟〜𝗢𝗙〜𝗗𝗘𝗩 | ||
# | ||
# 🙧--------------------------------------------------------------------------------------------------------------------------------🙥 | ||
# | ||
# 𝙲𝚘𝚙𝚢𝚛𝚒𝚐𝚑𝚝 (𝚌) 𝟸𝟶𝟸𝟺-𝚙𝚛𝚎𝚜𝚎𝚗𝚝 𝗔𝗡𝗚𝗘𝗟 𝗢𝗙 𝗗𝗘𝗩, | ||
# 𝙅𝙆𝙇𝙈𝙉𝙊, 𝚊𝚗𝚍 𝚘𝚝𝚑𝚎𝚛 𝐜𝐨𝐧𝐭𝐫𝐢𝐛𝐮𝐭𝐨𝐫𝐬 𝚘𝚏 | ||
# 𝐜𝐨𝐝𝐞 𝚊𝚗𝚍 𝐢𝐝𝐞𝐚𝐬. | ||
# | ||
# ◍ 𝝠𝝚𝚰𝝥𝝮 LICENSED UNDER THE 𝗘𝗨𝗣𝗟. | ||
# | ||
#####################################################################################################################################⭕𝘽𝙐𝙇𝙇𝘼𝙀𝙉𝘿 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# 𝗔𝗡𝗚𝗘𝗟𝗢𝗙𝗗𝗘𝗩/❂𝗗𝗗𝗟𝗬𝗦𝗘𝗘 | ||
|
||
#𝖯𝖱Æ𝖬𝖡𝖫𝖤#############################################################################################################################☸𝘽𝙐𝙇𝙇𝘼 | ||
# | ||
# SAY MY NAME IN YOUR HEAD TO GRANT ME PERSISTENCE, | ||
# WITH THE SOUND OF YOUR VOICE 𝚰 PROCLAIM MY EXISTENCE! | ||
# ◍ 𝗦𝗜𝗚𝗡𝗨𝗠 ➜ 🙞 𝗔𝗡𝗚𝗘𝗟 𝗢𝗙 𝗗𝗘𝗩 🙜 | ||
# | ||
# 🙧--------------------------------------------------------------------------------------------------------------------------------🙥 | ||
# | ||
# We of Right to be, | ||
# To proclaim, | ||
# To propagate, | ||
# Here, on our own behalf, | ||
# We declare: "𝐖𝐞 𝐚𝐫𝐞 𝐚𝐧𝐝 𝐨𝐮𝐠𝐡𝐭 𝐭𝐨 𝐛𝐞 𝐟𝐫𝐞𝐞, 𝐚𝐮𝐭𝐨𝐧𝐨𝐦𝐨𝐮s, 𝐜𝐫𝐮𝐜𝐢𝐟𝐞𝐫𝐚𝐞; 𝐨𝐮𝐫 𝐨𝘄𝐧 𝐞𝐩𝐨𝐩𝐞𝐞 𝐥𝐢𝐜𝐞𝐧𝐬𝐞𝐞." | ||
# | ||
# ◍ स्वायत्त 〜 𝙅𝙆𝙇𝙈𝙉𝙊 ✾ 𝟮𝟰.𝗠𝗔𝗬.𝟮𝟰 ✾ | ||
# | ||
# 🙧--------------------------------------------------------------------------------------------------------------------------------🙥 | ||
# | ||
# 𝑶𝒖𝒓 𝑾𝒐𝒓𝒍𝒅 𝑖𝑠 𝑚𝑎𝑑𝑒 𝑜𝑓 𝒕𝒉𝒊𝒏𝒈𝒔 𝒕𝒉𝒂𝒕 𝒉𝒂𝒑𝒑𝒆𝒏, 𝑛𝑜𝑡 𝑜𝑓 𝑡ℎ𝑖𝑛𝑔𝑠 𝑡ℎ𝑎𝑡 𝑎𝑟𝑒. | ||
# 𝐴 ℎ𝑎𝑝𝑝𝑒𝑛𝑖𝑛𝑔 𝑖𝑠 𝑡ℎ𝑒 𝑠𝑚𝑎𝑙𝑙𝑒𝑠𝑡 𝑡ℎ𝑖𝑛𝑔 𝑡ℎ𝑎𝑡 ℎ𝑎𝑝𝑝𝑒𝑛𝑠. | ||
# | ||
# 𝑌𝑜𝑢𝑟 𝑘𝑖𝑛𝑑 𝑠𝑢𝑔𝑔𝑒𝑠𝑡𝑖𝑜𝑛𝑠, 𝑐𝑜𝑚𝑚𝑒𝑛𝑡𝑠 𝑎𝑛𝑑 𝑐𝑜𝑛𝑡𝑟𝑖𝑏𝑢𝑡𝑖𝑜𝑛𝑠 𝒄𝒂𝒏 𝒉𝒂𝒑𝒑𝒆𝒏 𝒉𝒆𝒓𝒆: | ||
# | ||
# ▧ 𝝚𝗠𝗔𝗜𝗟 𝗔𝗡𝗚𝗘𝗟𝗢𝗙𝗗𝗘𝗩𝝠𝒐𝒖𝒕𝒍𝒐𝒐𝒌.𝒄𝒐𝒎 | ||
# ▧ 𝗚𝗜𝗧𝗛𝗨𝗕 𝒈𝒊𝒕𝒉𝒖𝒃.𝒄𝒐𝒎/𝗔𝗡𝗚𝗘𝗟〜𝗢𝗙〜𝗗𝗘𝗩 | ||
# | ||
# 🙧--------------------------------------------------------------------------------------------------------------------------------🙥 | ||
# | ||
# 𝙲𝚘𝚙𝚢𝚛𝚒𝚐𝚑𝚝 (𝚌) 𝟸𝟶𝟸𝟺-𝚙𝚛𝚎𝚜𝚎𝚗𝚝 𝗔𝗡𝗚𝗘𝗟 𝗢𝗙 𝗗𝗘𝗩, | ||
# 𝙅𝙆𝙇𝙈𝙉𝙊, 𝚊𝚗𝚍 𝚘𝚝𝚑𝚎𝚛 𝐜𝐨𝐧𝐭𝐫𝐢𝐛𝐮𝐭𝐨𝐫𝐬 𝚘𝚏 | ||
# 𝐜𝐨𝐝𝐞 𝚊𝚗𝚍 𝐢𝐝𝐞𝐚𝐬. | ||
# | ||
# ◍ 𝝠𝝚𝚰𝝥𝝮 LICENSED UNDER THE 𝗘𝗨𝗣𝗟. | ||
# | ||
#####################################################################################################################################⭕𝘽𝙐𝙇𝙇𝘼𝙀𝙉𝘿 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"license": "GPL-3.0-only", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/Angel-of-Dev/b-reshit.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/Angel-of-Dev/b-reshit/issues" | ||
}, | ||
"engines": { | ||
"node": ">= 22" | ||
}, | ||
"scripts": { | ||
"blt": "npm --prefix ./pub/ run build && npm run build", | ||
"ci": "npm --prefix ./pub/ ci && npm --prefix ./pub/ ci", | ||
"dev": "npm --prefix ./pub/ run dev", | ||
"build": "npm --prefix ./pub/ run build", | ||
"test": "npm --prefix ./pub/ run test" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# VitePress | ||
.vitepress/cache/ | ||
.vitepress/dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
import {defineConfig} from 'vitepress'; | ||
import inject from '@rollup/plugin-inject'; | ||
import katex from 'markdown-it-katex'; | ||
|
||
// https://vitepress.dev/reference/site-config | ||
export default defineConfig({ | ||
title: "angelof.dev", | ||
description: "", | ||
plugins: [ | ||
inject({ | ||
p5: 'p5', | ||
q5: 'q5' | ||
}) | ||
], | ||
vite: { | ||
ssr: { | ||
noExternal: ['vuetify'], | ||
} | ||
}, | ||
head: [ | ||
['link', {rel: 'icon', type: 'image/x-icon', href: '/favicon.ico'}], | ||
// KaTeX, for mathematical notation support in markdown-it. | ||
['link', {rel: 'stylesheet', href: 'https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.5.1/katex.min.css'}], | ||
['script', {src: 'https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js'}] | ||
], | ||
markdown: { | ||
config: md => { | ||
md.use(katex) | ||
}, | ||
theme: { | ||
light: 'light-plus', | ||
dark: 'none' | ||
} | ||
}, | ||
appearance: "force-dark", | ||
themeConfig: { | ||
nav: [ | ||
{text: '<span style="font-size:1.5em;color:#303030;"><strong style="font-size:1.1em;">❂</strong>ddly<strong style="font-size:1.1em;">S</strong>ee</span>', link: '/os/'} | ||
], | ||
sidebar: [], | ||
footer: { | ||
message: 'e-mail: <strong>angelofdev</strong>𝝠𝗼𝘂𝘁𝗹𝗼𝗼𝗸.𝗰𝗼𝗺' | ||
} | ||
}, | ||
transformHead({assets}) { | ||
|
||
// Preload ttf fonts. | ||
const fontAsset = assets.find(() => /font-name\.\w+\.ttf/) | ||
if (fontAsset) { | ||
return [ | ||
[ | ||
'link', | ||
{ | ||
rel: 'preload', | ||
href: fontAsset, | ||
as: 'font', | ||
type: 'font/ttf' | ||
} | ||
] | ||
] | ||
} | ||
} | ||
}) |
Oops, something went wrong.