-
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.
Merge pull request #103 from shunsock/2024-01-05
add my works
- Loading branch information
Showing
3 changed files
with
59 additions
and
16 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
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
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,46 @@ | ||
# Portfolio | ||
|
||
This is my portfolio. | ||
|
||
## Timezone Translator | ||
|
||
Simple command-line utility that converts a given time from one timezone to another. It is written in Rust and you can install via `cargo install tzt`. | ||
|
||
### Repository | ||
|
||
- [GitHub](https://github.com/shunsock/timezone_translator) | ||
- [Crates.io](https://crates.io/crates/tzt) | ||
|
||
### Usage | ||
|
||
```sh | ||
$ tzt --time '2024-11-03 01:30:00' --from 'America/New_York' --to 'UTC' | ||
2024-11-03 05:30:00 UTC | ||
``` | ||
|
||
## dotfiles | ||
|
||
My Configuration Files for Development Environment. Updator written by Go is included. | ||
|
||
### Repository | ||
|
||
- [GitHub](https://github.com/shunsock/dotfiles) | ||
|
||
## Shot | ||
|
||
⚠️ Under Construction | ||
Shot is a AST-based programming language written in Rust. It is designed to force programmer to write everything what you want to do. | ||
|
||
``` | ||
let hello: fn = (name: string): void { | ||
print("Hello, " + name + "!"); | ||
return none; | ||
}; | ||
hello("Shunsock"); | ||
``` | ||
|
||
### Repository | ||
|
||
- [GitHub](https://github.com/shunsock/shot) | ||
|