Rewrite README
This commit is contained in:
parent
4aca9805ff
commit
90d45e0005
2 changed files with 49 additions and 35 deletions
68
.gitignore
vendored
68
.gitignore
vendored
|
@ -1,25 +1,30 @@
|
||||||
# ---> VisualStudioCode
|
# Created by https://www.toptal.com/developers/gitignore/api/obsidian,visualstudiocode,macos,linux,windows
|
||||||
.vscode/*
|
# Edit at https://www.toptal.com/developers/gitignore?templates=obsidian,visualstudiocode,macos,linux,windows
|
||||||
!.vscode/settings.json
|
|
||||||
!.vscode/tasks.json
|
|
||||||
!.vscode/launch.json
|
|
||||||
!.vscode/extensions.json
|
|
||||||
!.vscode/*.code-snippets
|
|
||||||
|
|
||||||
# Local History for Visual Studio Code
|
### Linux ###
|
||||||
.history/
|
*~
|
||||||
|
|
||||||
# Built Visual Studio Code Extensions
|
# temporary files which can be created if a process still has a handle open of a deleted file
|
||||||
*.vsix
|
.fuse_hidden*
|
||||||
|
|
||||||
# ---> macOS
|
# KDE directory preferences
|
||||||
|
.directory
|
||||||
|
|
||||||
|
# Linux trash folder which might appear on any partition or disk
|
||||||
|
.Trash-*
|
||||||
|
|
||||||
|
# .nfs files are created when an open file is removed but is still being accessed
|
||||||
|
.nfs*
|
||||||
|
|
||||||
|
### macOS ###
|
||||||
# General
|
# General
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.AppleDouble
|
.AppleDouble
|
||||||
.LSOverride
|
.LSOverride
|
||||||
|
|
||||||
# Icon must end with two \r
|
# Icon must end with two \r
|
||||||
Icon
|
Icon
|
||||||
|
|
||||||
|
|
||||||
# Thumbnails
|
# Thumbnails
|
||||||
._*
|
._*
|
||||||
|
@ -40,22 +45,34 @@ Network Trash Folder
|
||||||
Temporary Items
|
Temporary Items
|
||||||
.apdisk
|
.apdisk
|
||||||
|
|
||||||
# ---> Linux
|
### macOS Patch ###
|
||||||
*~
|
# iCloud generated files
|
||||||
|
*.icloud
|
||||||
|
|
||||||
# temporary files which can be created if a process still has a handle open of a deleted file
|
### Obsidian ###
|
||||||
.fuse_hidden*
|
# config dir
|
||||||
|
.obsidian/
|
||||||
|
|
||||||
# KDE directory preferences
|
### VisualStudioCode ###
|
||||||
.directory
|
.vscode/*
|
||||||
|
!.vscode/settings.json
|
||||||
|
!.vscode/tasks.json
|
||||||
|
!.vscode/launch.json
|
||||||
|
!.vscode/extensions.json
|
||||||
|
!.vscode/*.code-snippets
|
||||||
|
|
||||||
# Linux trash folder which might appear on any partition or disk
|
# Local History for Visual Studio Code
|
||||||
.Trash-*
|
.history/
|
||||||
|
|
||||||
# .nfs files are created when an open file is removed but is still being accessed
|
# Built Visual Studio Code Extensions
|
||||||
.nfs*
|
*.vsix
|
||||||
|
|
||||||
# ---> Windows
|
### VisualStudioCode Patch ###
|
||||||
|
# Ignore all local history of files
|
||||||
|
.history
|
||||||
|
.ionide
|
||||||
|
|
||||||
|
### Windows ###
|
||||||
# Windows thumbnail cache files
|
# Windows thumbnail cache files
|
||||||
Thumbs.db
|
Thumbs.db
|
||||||
Thumbs.db:encryptable
|
Thumbs.db:encryptable
|
||||||
|
@ -81,3 +98,6 @@ $RECYCLE.BIN/
|
||||||
# Windows shortcuts
|
# Windows shortcuts
|
||||||
*.lnk
|
*.lnk
|
||||||
|
|
||||||
|
# End of https://www.toptal.com/developers/gitignore/api/obsidian,visualstudiocode,macos,linux,windows
|
||||||
|
|
||||||
|
.trash
|
||||||
|
|
16
README.md
16
README.md
|
@ -1,17 +1,11 @@
|
||||||
# Arf! I'm Tony Bark. 🦊
|
# Arf! I'm Tony Bark. 🦊
|
||||||
|
|
||||||
I'm a self-taught indie developer focused on cross-platform games using Godot and desktop applications built with Tauri. I always aim for high maintainability with minimal technical debt. Earlier Tauri projects utilized Vue for the frontend, but starting with [Amtrak Status](https://github.com/tonytins/amtkstat), I've shifted to .NET Blazor. For all .NET-based programs, I target the latest LTS releases and strive to provide the bare minimum long-term support.
|
Welcome to BarkHub! This focuses on a mixture of documents and code compared to main my main [Github](https://github.com/tonytins), including a few mirrors as backups.
|
||||||
|
|
||||||
I design my libraries and applications—whether desktop or CLI—to be functional from day one. They're crafted for my own use, but you can use them too, even if it's just for a simple need or experimentation.
|
## Storytelling
|
||||||
|
|
||||||
Before committing an initial release, I rigorously test everything on my own systems. However, being a solo developer, I can't guarantee perfect compatibility across other platforms. I also follow a .NET-style versioning scheme, with version numbers starting in the 100s, either in the minor or patch section, for every type of software.
|
My primarily focus is world building and storytelling using Obsidian. A lot of this information are just rolling drafts until it is all finalized, either moved to the wiki or formally published. However, this stuff borders on 🔞 territory.
|
||||||
|
|
||||||
I'm not chasing perfection, just reliability. You can thank my very first public release, [Blue Rose](https://github.com/tonytins/BlueRoseClassic), for shaping that mindset.
|
## AI for Code Generation
|
||||||
|
|
||||||
---
|
Secondarily, I've began to experiment with AI code generation. By asking it to create software implantation or complex algorithms that I wouldn't have known how to create otherwise.
|
||||||
|
|
||||||
- 🛠️ Most comfortable using `C#` and `Blazor`
|
|
||||||
- 👍 Familiar with `Tauri` and `Rust`
|
|
||||||
- 📚 Currently learning `Zig`, `GDscript`, `C`[^1]
|
|
||||||
|
|
||||||
[^1]: Indirectly through Zig.
|
|
Loading…
Add table
Reference in a new issue