Compare commits

...

7 Commits

Author SHA1 Message Date
Zac the Wise
8ffd299050 Merge 73e0ac1ef1 into cf5d750133 2025-04-11 16:26:35 -03:00
Paul Kuruvilla
cf5d750133 Merge pull request #1414 from maysara-elshewehy/master 2025-04-11 12:13:28 -07:00
Maysara
d6ce7605f0 Add a new tutorial link for zig. 2025-04-11 20:00:24 +02:00
TechWiz-3
73e0ac1ef1 👌 IMPROVE: add token for fast checking 2022-10-13 20:14:44 +11:00
TechWiz-3
548922cde4 📦 NEW: whitelist 2022-10-13 20:06:33 +11:00
TechWiz-3
e298bd579f 📦 NEW: whitelist png file 2022-10-08 12:32:32 +11:00
TechWiz-3
f93791f615 📦 NEW: link check workflow 2022-10-08 12:30:28 +11:00
2 changed files with 19 additions and 0 deletions

18
.github/workflows/linkcheck.yml vendored Normal file
View File

@@ -0,0 +1,18 @@
name: Link-check
on:
schedule:
- cron: '0 0 * * 1' # every monday
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run linksafe
uses: TechWiz-3/linksafe@fast
with:
whitelist_files: "codecrafters-banner.png"
whitelist_links: "https://simjue.pages.dev/post/2018/07-01-go-unix-shell/,https://www.jamasoftware.com/blog/lets-write-redux/,https://learnopengl.com/In-Practice/2D-Game/Breakout,https://www.sohamkamani.com/nodejs/telegram-bot/,https://sj14.gitlab.io/post/2018-07-01-go-unix-shell/,https://www.datacamp.com"
env:
TOKEN: ${{ secrets.TOKEN }}

View File

@@ -123,6 +123,7 @@ It's a great way to learn.
* [**Node.js**: _Create a CLI tool in Javascript_](https://citw.dev/tutorial/create-your-own-cli-tool) * [**Node.js**: _Create a CLI tool in Javascript_](https://citw.dev/tutorial/create-your-own-cli-tool)
* [**Rust**: _Command line apps in Rust_](https://rust-cli.github.io/book/index.html) * [**Rust**: _Command line apps in Rust_](https://rust-cli.github.io/book/index.html)
* [**Rust**: _Writing a Command Line Tool in Rust_](https://mattgathu.dev/2017/08/29/writing-cli-app-rust.html) * [**Rust**: _Writing a Command Line Tool in Rust_](https://mattgathu.dev/2017/08/29/writing-cli-app-rust.html)
* [**Zig**: _Build Your Own CLI App in Zig from Scratch_](https://rebuild-x.github.io/docs/#/./zig/terminal/cli)
#### Build your own `Database` #### Build your own `Database`