Skip to content

Commit 855940a

Browse files
Initial commit
0 parents  commit 855940a

89 files changed

Lines changed: 10799 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/hugo.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: Deploy Hugo to Pages
2+
3+
on:
4+
push:
5+
branches: [main]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: pages
15+
cancel-in-progress: false
16+
17+
jobs:
18+
build:
19+
runs-on: ubuntu-latest
20+
env:
21+
HUGO_VERSION: 0.161.1
22+
steps:
23+
- name: Install Hugo
24+
run: |
25+
wget -q -O hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb
26+
sudo dpkg -i hugo.deb
27+
- uses: actions/checkout@v6.0.2
28+
- uses: actions/configure-pages@v6.0.0
29+
- name: Build
30+
run: hugo --minify --gc
31+
- uses: actions/upload-pages-artifact@v5.0.0
32+
with:
33+
path: ./public
34+
35+
deploy:
36+
needs: build
37+
runs-on: ubuntu-latest
38+
environment:
39+
name: github-pages
40+
url: ${{ steps.deployment.outputs.page_url }}
41+
steps:
42+
- id: deployment
43+
uses: actions/deploy-pages@v5.0.0

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
public/
2+
resources/
3+
.hugo_build.lock
4+
.DS_Store

archetypes/default.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
+++
2+
date = '{{ .Date }}'
3+
draft = true
4+
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
5+
+++

content/posts/a-comprehensive-guide-to-python-project-management-and-packaging-concepts-illustrated-with-uv-part-2.md

Lines changed: 1506 additions & 0 deletions
Large diffs are not rendered by default.

content/posts/a-comprehensive-guide-to-python-project-management-and-packaging-concepts-illustrated-with-uv-part-i.md

Lines changed: 1087 additions & 0 deletions
Large diffs are not rendered by default.

content/posts/a-story-of-using-langchain-langgraph.md

Lines changed: 154 additions & 0 deletions
Large diffs are not rendered by default.

content/posts/about.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
+++
2+
title = "About"
3+
date = "2023-10-17T15:24:56+00:00"
4+
draft = false
5+
meta = true
6+
+++
7+

content/posts/decoder-only-language-models-architecture-evolution-part-i.md

Lines changed: 577 additions & 0 deletions
Large diffs are not rendered by default.

content/posts/deploying-a-streamlit-app-on-aws-ec2-with-your-own-domain-name.md

Lines changed: 505 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)