-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7fe5caa
commit 928fbb0
Showing
11 changed files
with
1,115 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Update 2023 AoC Badges | ||
on: | ||
workflow_dispatch: | ||
push: | ||
paths: | ||
- 2023/** | ||
|
||
jobs: | ||
update: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: joblo2213/aoc-badges-action@v3 | ||
with: | ||
userid: 208492 | ||
session: ${{ secrets.AOC_SESSION }} | ||
year: 2023 | ||
leaderboard: 'https://adventofcode.com/2023/leaderboard/private/view/208492.json' | ||
file: '2023/README.md' | ||
starsRegex: '(?<=https:\/\/img\.shields\.io\/badge\/stars%20⭐-)[0-9]+(?=-yellow)' | ||
daysCompletedRegex: '(?<=https:\/\/img\.shields\.io\/badge\/days%20completed-)[0-9]+(?=-red)' | ||
- uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
commit_message: Update badges | ||
file_pattern: README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -174,6 +174,8 @@ vignettes/*.pdf | |
|
||
.vscode/ | ||
|
||
Cargo.lock | ||
|
||
*.exe | ||
|
||
obj/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[package] | ||
name = "aoc" | ||
version = "0.1.0" | ||
authors = ["Szymon Zborowski"] | ||
edition = "2021" | ||
default-run = "aoc" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Advent of Code 2023 | ||
|
||
🎄 All my solutions written in Rust 🎄 | ||
|
||
Marks my first experiences ever with Rust. I'm not sure if I like it yet, but I'm definitely intrigued. | ||
|
||
![Stars](https://img.shields.io/badge/stars%20⭐-0-yellow) | ||
![Days](https://img.shields.io/badge/days%20completed-0-red) |
Oops, something went wrong.