Skip to content

Commit 5a73bdb

Browse files
committed
The Dreaming Project
0 parents  commit 5a73bdb

File tree

6 files changed

+58
-0
lines changed

6 files changed

+58
-0
lines changed

.github/workflows/sonata.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: sonata
2+
3+
on:
4+
push:
5+
branches: [main]
6+
7+
jobs:
8+
deploy:
9+
name: Deploy
10+
runs-on: ubuntu-22.04
11+
permissions:
12+
contents: write
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: clearloop/[email protected]
16+
17+
- name: Build the site
18+
run: sonata build
19+
20+
- name: Deploy
21+
uses: peaceiris/actions-gh-pages@v3
22+
with:
23+
github_token: ${{ secrets.GITHUB_TOKEN }}
24+
publish_dir: ./out

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/out

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
## Blog
2+
3+
The official blog of [the zink language](https://github.com/zink-lang/zink).
4+
5+
### Contributing
6+
7+
```bash
8+
cargo install sonata
9+
sonata serve
10+
```

favicon.ico

15 KB
Binary file not shown.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
author: "@clearloop"
3+
profile_url: "https://x.com/tianyi_gc"
4+
date: "2025-04-02"
5+
description: "Writing smart contracts in a single programming language."
6+
labels: ["zink", "rust"]
7+
title: "The Dreaming Project"
8+
---
9+
10+
> Mankind’s greatest achievements have come about by talking ...
11+
12+
It's always been a dream building a programming langauge as a system engineer, since programming
13+
langauge is part of the mediums for us communicating with machines and others, also, a baseline
14+
tool for expressing our thoughts, creating our artworks, and so on.
15+
16+
Things could be done better with the current tech, at least, people can write their programs in a
17+
**single langauge** with **well-arched package manager** and **debugging system**.
18+
19+
It's possible and we are working on it.

sonata.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
out = "out"
2+
posts = "posts"
3+
title = "Zink Blog"
4+
facicon = "favicon.ico"

0 commit comments

Comments
 (0)