Skip to content

Commit

Permalink
Merge pull request #103 from shunsock/2024-01-05
Browse files Browse the repository at this point in the history
add my works
  • Loading branch information
shunsock authored Jan 5, 2025
2 parents 41a33fe + 1e8079a commit 58cb4eb
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 16 deletions.
10 changes: 6 additions & 4 deletions src/docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,26 @@ import { defineConfig } from 'vitepress'
// https://vitepress.dev/reference/site-config
export default defineConfig({
base: '/resume/',
title: "Shunsuke.Tsuchiya (@shunsock)",
title: "Shunsuke.Tsuchiya",
description: "Resume and Portfolio",
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: 'Home', link: '/' },
{ text: 'Profile', link: '/profile' },
{ text: 'Blog', link: '/blog' },
{ text: 'Resume', link: '/resume' },
{ text: 'Portfolio', link: '/portfolio' },
{ text: 'Blog', link: '/blog' },
],

sidebar: [
{
text: 'Pages',
text: 'Items',
items: [
{ text: 'Profile', link: '/profile' },
{ text: 'Blog', link: '/blog' },
{ text: 'Resume', link: '/resume' },
{ text: 'Portfolio', link: '/portfolio' },
{ text: 'Blog', link: '/blog' },
]
}
],
Expand Down
19 changes: 7 additions & 12 deletions src/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,16 @@ hero:
text: Profile
link: /profile
- theme: alt
text: Blog
link: /blog
text: Resume
link: /resume
- theme: alt
text: Portfolio
link: /portfolio
- theme: alt
text: Presentation
link: /presentation
- theme: alt
text: Resume
link: /resume

features:
- title: Feature A
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
- title: Feature B
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
- title: Feature C
details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
text: Blog
link: /blog
---

46 changes: 46 additions & 0 deletions src/docs/portfolio/index.md
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)

0 comments on commit 58cb4eb

Please sign in to comment.