Skip to content

Commit 9ac117d

Browse files
committed
bump node to 19 and fix lint
1 parent 9daaebb commit 9ac117d

File tree

3 files changed

+3
-28
lines changed

3 files changed

+3
-28
lines changed

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
- uses: actions/checkout@v2
88
- uses: actions/setup-node@v3
99
with:
10-
node-version: 16
10+
node-version: 19
1111

1212
- name: Lint markdown
1313
run: npx markdownlint-cli2 "*.md" "#MAINTAINERS.md"

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ You can also apply to become a maintainer by submitting a PR.
2525

2626
## Reporting issues
2727

28-
Please open an issue if you would like to discuss anything that could be improved or have suggestions for making the list a more valuable resource.
28+
Please open an issue if you would like to discuss anything that could be improved or have suggestions for making the list a more valuable resource.
2929

3030
Thank you for your suggestions!

README.md

Lines changed: 1 addition & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ The main documentation is always the best beginning, so if you haven't read it y
5555
* :star: [Zig by Example](https://zigbyexample.com) - A hands-on guide with examples to learn Zig.
5656
* :star: [zig-cookbook](https://cookbook.ziglang.cc/) - Simple Zig programs that demonstrate good practices to accomplish common programming tasks.
5757

58-
5958
## Videos
6059

6160
* :star: [Introduction to Zig](https://www.youtube.com/watch?v=YXrb-DqsBNU&list=PLV9VPfCMjvoAkgrPTuGCoRnelFwlKXyTS) - A video introduction to Zig and its features.
@@ -64,22 +63,17 @@ The main documentation is always the best beginning, so if you haven't read it y
6463
* :star:[Is 2024 The Year Of Zig ?](https://www.youtube.com/watch?v=DucriSA8ukw)
6564
* [Advent of Code 2023 in Zig](https://www.youtube.com/watch?v=HftiNZwMdzY)
6665

67-
6866
### Playlists
6967

7068
* :star:[Zig Programming Language](https://www.youtube.com/playlist?list=PLV9VPfCMjvoAkgrPTuGCoRnelFwlKXyTS)
7169

72-
7370
### Presentations
7471

75-
7672
* 2023-10-04 - [Rust & Zig Combined • Richard Feldman • GOTO 2023](https://www.youtube.com/watch?v=jIZpKpLCOiU) - Richard Feldman
7773
* 2022-10-04 - [Intro to the Zig Programming Language • Andrew Kelley • GOTO 2022](https://www.youtube.com/watch?v=YXrb-DqsBNU)- Andrew Kelley
7874
* 2019-04-23 - [Andrew Kelley - The Zen of Zig](https://www.youtube.com/watch?v=Gv2I7qTux7g) - A presentation by the creator of Zig, explaining its philosophy and features.
7975
* 2024-09-30 - [Pragma driven shared memory parallelism in Zig by supporting OpenMP loop directives](https://arxiv.org/html/2409.20148v1) - In this paper they describe enhancing the Zig compiler to add support for OpenMP loop directives.
8076

81-
82-
8377
## Podcasts
8478

8579
* 2024-07-14 - [Zig as a Multi-OS Build System (with Loris Cro)](https://open.spotify.com/episode/1CKAVEQfS0aVWV5GuT96AF) - [ Loris Cro][]
@@ -120,16 +114,12 @@ The main documentation is always the best beginning, so if you haven't read it y
120114
* [Community Zig Tutorials](https://zig.news/) - A portal for discovering new Zig tutorials and community-driven content.
121115
* [Zig Memory Management Guide](https://ziglang.org/documentation/master/#Memory) - Useful tips and tricks for managing memory safely and efficiently in Zig.
122116

123-
124-
125117
## Zig internals
126118

127119
* :star: [Zig Proposals](https://github.com/ziglang/zig/issues?q=is%3Aissue++label%3Aproposal+) - A collection of Zig’s proposed RFCs (Request for Comments) for proposals.
128120
* :star: [Zig Documentation](https://ziglang.org/documentation/master/) - The official and comprehensive documentation for understanding Zig’s features and syntax.
129121
* :star: [Zig Community Forum](https://ziggit.dev/) - A discussion platform for Zig language design, development news, and technical questions.
130122

131-
132-
133123
## Compilation
134124

135125
- [Zig Compilation Guide](https://ziglang.org/learn/build-system/) - Zig official documentation. This guide provides detailed information on how to set up compilation with Zig. It includes basic steps, toolchain setup, and target options.
@@ -142,8 +132,6 @@ The main documentation is always the best beginning, so if you haven't read it y
142132

143133
- **[Compile Cargo project with zig](https://github.com/rust-cross/cargo-zigbuild)** - It is a tool that facilitates building Rust projects with the Zig toolchain, enabling cross-compilation and optimizations that are typically more straightforward than using Rust's native toolchain alone.
144134

145-
146-
147135
## FFI
148136

149137
- **[Using Zig with C: Interop Guide](https://ziglang.org/documentation/master/#C-interop)** - The official Zig documentation for C interop. Zig provides seamless integration with C, allowing you to call C functions directly and link against C libraries without needing additional tooling.
@@ -158,8 +146,6 @@ The main documentation is always the best beginning, so if you haven't read it y
158146

159147
- **[Building and Linking C Libraries with Zig](https://zig.news/almmiko/building-zig-libraries-with-c-dependencies-25a)** - This ZigLearn chapter shows how to use and link C libraries with Zig, which is helpful when creating bindings or using external C code in a Zig project.
160148

161-
162-
163149
## CI / Testing
164150

165151
- **[Setting up Zig with GitHub Actions](https://github.com/marketplace/actions/setup-zig-compiler)** - A detailed guide on using GitHub Actions for Zig projects. It covers basic configurations for running tests and building Zig code on different platforms.
@@ -186,8 +172,6 @@ The main documentation is always the best beginning, so if you haven't read it y
186172

187173
- **[Code Coverage for Zig](https://zig.news/squeek502/code-coverage-for-zig-1dk1)** - Despite the Zig compiler not having built-in support for generating code coverage information, it is still possible to generate it (on Linux at least). There might be other possibilities.
188174

189-
190-
191175
## Are we ... yet?
192176

193177
- **[Are We IDE Yet? - Zig](https://ziglang.org/learn/tools/)** - An overview of current IDE support for Zig. It lists plugins and extensions for popular editors like VSCode, Sublime Text, and Vim, tracking the maturity of the Zig developer experience.
@@ -200,8 +184,6 @@ The main documentation is always the best beginning, so if you haven't read it y
200184

201185
- **[Zig GUI Libraries](https://github.com/capy-ui/capy)** - Capy is a **GUI library for Zig**. It is mainly intended for creating applications using native controls from the operating system. It has been made with the goal to empower standalone UI applications, integration in games or any other rendering process is a non-goal.
202186

203-
204-
205187
### Zig Comparison with Other Languages
206188

207189
---
@@ -299,8 +281,6 @@ See repos [nrdmn/awesome-zig](https://github.com/nrdmn/awesome-zig) & [zigcc/awe
299281
* [Proposal: Optional argument names in function calls](https://github.com/ziglang/zig/issues/982)
300282
* [Ziglang Document:Optionals](https://ziglang.org/documentation/master/#Optionals)
301283

302-
303-
304284
## Playground
305285

306286
* [Zig Playground](https://zig-play.dev/)
@@ -338,8 +318,6 @@ Do you want to find out why some historical decisions took place? [Zig GitHub Di
338318
* [Validark](https://github.com/Validark) - [blog](https://validark.github.io/)
339319
* [Jonathan Marler](https://github.com/marler8997) - [blog](https://marler8997.github.io/)
340320

341-
342-
343321
## Tutorials & Workshop Materials
344322

345323
These are slides and materials from brick-and-mortar workshops about Zig.
@@ -352,7 +330,4 @@ of interest if you're running a workshop on Zig.
352330
- [Zig Advent Calendar](https://effectivetypescript.com/2024/07/17/advent2023-zig/) offering a curated set of beginner to advanced Zig tutorials and exercises.
353331
- orhun's [Zig Bits](https://blog.orhun.dev/zig-bits-01/) focusing on practical library implementation in Zig.
354332
- [A half-hour to learn Zig](https://gist.github.com/ityonemo/769532c2017ed9143f3571e5ac104e50)
355-
- [A Unix Shell in Zig](https://ratfactor.com/zig/forking-is-cool) exploration combining Zig with scripting tools.
356-
357-
358-
333+
- [A Unix Shell in Zig](https://ratfactor.com/zig/forking-is-cool) exploration combining Zig with scripting tools.

0 commit comments

Comments
 (0)