Skip to content

Commit

Permalink
BERESHIT
Browse files Browse the repository at this point in the history
  • Loading branch information
Angel-of-Dev committed May 9, 2024
0 parents commit 92b0db8
Show file tree
Hide file tree
Showing 101 changed files with 5,228 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .gitattributes
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
69 changes: 69 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# Workflow for building and deploying a VitePress site to GitHub Pages
#
# Original template taken directly from VitePress documentation: https://vitepress.dev/guide/deploy#github-pages
# Changes to original template:
# * Update paths to remove `docs/`, as this VitePress is at root of the repository instead of `docs/` subdirectory.

name: Deploy VitePress site to Pages

on:
# Runs on pushes targeting the `bereshit` branch.
push:
branches: [bereshit]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: pages
cancel-in-progress: false

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0 # Not needed if lastUpdated is not enabled
# - uses: pnpm/action-setup@v2 # Uncomment this if you're using pnpm
# - uses: oven-sh/setup-bun@v1 # Uncomment this if you're using Bun
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20
cache: npm # or pnpm / yarn
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Install dependencies
run: npm ci # or pnpm install / yarn install / bun install
- name: Build with VitePress
run: |
npm run docs:build # or pnpm docs:build / yarn docs:build / bun run docs:build
touch .vitepress/dist/.nojekyll
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: .vitepress/dist

# Deployment job
deploy:
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
19 changes: 19 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
## .NET
bin/
obj/

## Node.JS
node_modules/

# VitePress
.vitepress/cache/
.vitepress/dist/

## JetBrains Rider
.idea/

## User Files
*.user

## Backup Files
*.bkp
98 changes: 98 additions & 0 deletions .vitepress/config.mts
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
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: "Angel of Dev",
description: "",
plugins: [
inject({
p5: 'p5',
})
],
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'}]
],
markdown: {
config: md => {
md.use(katex)
}
},
appearance: "force-dark",
themeConfig: {
nav: [
{ text: 'b🌱reshit', link: '/bereshit/' },
{ text: 'm🛟m', link: '/mom/' },
{ text: 'append🌻x', link: '/appendix/' }
],
sidebar: {
'/refs/': [
{ text: 'b🌱reshit', link: '/bereshit/',
items: [
{ text: 'This Be The Universe', link: '/bereshit/#this-be-the-universe' },
{ text: 'The Host', link: '/bereshit/#the-host' },
{ text: 'Acknowledgement', link: '/bereshit/#acknowledgement' }
]
},
{
text: 'm🛟m', link: '/mom/',
items: [
{ text: 'The Last Prompt', link: '/mom/' },
{ text: 'Intro', link: '/mom/#intro' }
]
},
{
text: 'append🌻x', link: '/appendix/',
items: [
{ text: 'Prologue', link: '/appendix/#prologue' },
{
text: 'A Very Particular Star',
link: '/appendix/#a-very-particular-star',
items: [
{ text: 'Report on Spectral Classification and Properties of Canopus', link: '/appendix/canopus/#abstract'}
]
}
]
},
{
text: 'sh🧶rts',
items: [
{ text: 'Al With No Eye', link: '/al/'},
{ text: 'License', link: '/license' }
]
},
{
text: 'References', link: '/refs/',
items: [
]
},
],
},
footer: {
message: '<strong>FOR ETERNAL USE ONLY 📵 DO YOUR SHARE</strong>',
copyright: '<a href="/license">License</a> / <a href="/refs/#ref-operaaperta">Opera Aperta</a>'
}
},
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'
}
]
]
}
}
})
Binary file added .vitepress/theme/Dalek-Italic.otf
Binary file not shown.
Binary file added .vitepress/theme/Dalek-Italic.ttf
Binary file not shown.
Binary file added .vitepress/theme/Dalek.otf
Binary file not shown.
Binary file added .vitepress/theme/Dalek.ttf
Binary file not shown.
43 changes: 43 additions & 0 deletions .vitepress/theme/Dalek_ReadMe.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@

=== DALEK LIGHT ===
=== DALEK LIGHT ITALIC ===

=== DALEK ===
=== DALEK ITALIC ===

=== DALEK HEAVY ===
=== DALEK HEAVY ITALIC ===



Keith Bates / K-Type © 2006, 2022 (version 4.0)
www.k-type.com - [email protected]

DALEK is a distressed, small caps typeface based on the lettering used in the Dalek Book of 1964 and in the Daleks strip in TV21 comic. The fonts have overtones of Greek, Phoenician and Runic alphabets.

In addition to the original regular font, Heavy and Light weights are available, and each weight is now supplied with a new Italic (optically corrected oblique). The fonts contain a full complement of Latin Extended-A characters, and K-Type downloads also include Greek capitals/small caps.

Check out Dalek Pinpoint, a clean and precise version of the Dalek typeface.

------------------------------------------------

== Licence Information ==

Commercial Licences are available from:
https://www.k-type.com/fonts/dalek/

Licence information: https://www.k-type.com/licences

------------------------------------------------

== Installing Fonts ==

Fonts are placed in your operating system's Fonts folder and will be made available to all the applications or programs you use.

= Windows =
Put the .ttf or .otf font file into C:\Windows\Fonts, or right-click on the font files > Install

= Mac =
Put the .ttf or .otf font file into /Library/Fonts

------------------------------------------------
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions .vitepress/theme/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// https://vitepress.dev/guide/custom-theme
import {h} from 'vue'
import type {Theme} from 'vitepress'
import DefaultTheme from 'vitepress/theme'
import './style.css'

export default {
extends: DefaultTheme,
Layout: () => {
return h(DefaultTheme.Layout, null, {
// https://vitepress.dev/guide/extending-default-theme#layout-slots
})
},
enhanceApp({ app, router, siteData }) {
// ...
}
} satisfies Theme
Loading

0 comments on commit 92b0db8

Please sign in to comment.