Add stack and update about me
All checks were successful
Build and Deploy Hugo / deploy (push) Successful in 31s
|
|
@ -16,3 +16,4 @@ Hopefully someone else will find something useful here as well.
|
|||
Thanks for stopping by!
|
||||
|
||||
You can browse posts by topic [here](/tags).
|
||||
|
||||
|
|
|
|||
|
|
@ -7,24 +7,20 @@ hideReply: true
|
|||
---
|
||||
|
||||
|
||||
{{< img src="/profile.webp" max-width="250px" >}}
|
||||
I am an Orthodox Christian, husband, father, and software developer (in that order).
|
||||
My wife and I currently have two lovely children, a son born in 2022 and a daughter born in 2025.
|
||||
I grew up moving around a lot, but I spent a majority of my formative years down in sunny Florida.
|
||||
I have a BA in Mechanical Engineering from University of Central Florida and a PhD in Material's Science from Georgia Tech.
|
||||
My PhD was in computational metallurgy which unluckily doesn't offer many well-paying employment opportunities.
|
||||
Luckily though, my real passion was always actually developing the software, so I happily pivoted to a backend engineer role.
|
||||
|
||||
## Quick Facts
|
||||
My hobbies in the past have included Capoeira, MMA, bouldering, and backpacking.
|
||||
Lately I just try to find time to stay fit and do some side-project work after the kids are asleep.
|
||||
|
||||
- Orthodox Christian
|
||||
- Father of two and husband of one
|
||||
- **Scientific and Backend** Software Developer
|
||||
- Computational Materials Science PhD from Georgia Tech
|
||||
- **Favorite programming language is Rust 🦀**
|
||||
|
||||
## Technical knowledge
|
||||
|
||||
- **Programming Languages:** Rust, Fortran, Python, C++, Java, Typescript
|
||||
- **Parallel Programming:** MPI, OpenMP, Rayon, etc...
|
||||
- **Good at Algorithm design, performance tuning**
|
||||
- **AI:** Did work with Active Learning and traditional models (small data) before ChatGPT.
|
||||
- **LLMs:** Messing around with them, use codex mainly, planning a write up on my thoughts.
|
||||
|
||||
## Curriculum Vitae
|
||||
|
||||
[Click here for my CV](/cv.html)
|
||||
|
||||
## Current Stack
|
||||
|
||||
{{< stack >}}
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ date: 2026-05-15T20:29:05-04:00
|
|||
tags: ["software development", "self-host", "hugo"]
|
||||
---
|
||||
|
||||
{{< figure src="/cover.webp" alt="Picture of shower tiles that look like 10x developer git history" caption="The kind of developer I hope to be someday" >}}
|
||||
{{< figure src="/cover.webp" width="100%" alt="Picture of shower tiles that look like 10x developer git history" caption="The kind of developer I hope to be someday" >}}
|
||||
|
||||
It seems like there are a lot of people either leaving or talking about leaving Github, a very prominent one being [Mitchell Hashimoto](https://mitchellh.com/writing/ghostty-leaving-github).
|
||||
Fragmentation seems inevitable, as people/companies start to distribute among the various options (Codeberg, self-host Forgejo, Gitlab, etc...).
|
||||
|
|
|
|||
43
data/stack.yaml
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
- section: Code Editing
|
||||
description: "Full stack tools for editing code"
|
||||
items:
|
||||
- name: Choc V
|
||||
image: "/stack/chocv.webp"
|
||||
description: 32% low profile keyboard with Kaihl Choc Silvers and random amazon keycaps
|
||||
- name: 3-D Printed + Handwired Atreus
|
||||
image: "/stack/atreus.webp"
|
||||
description: Homemade 40% keyboard with Glorious Panda switches and MT3 Dusk keycaps
|
||||
- name: Nulea M505 Trackball Mouse
|
||||
image: "/stack/nulea.webp"
|
||||
description: |
|
||||
Smooth operation and long battery life
|
||||
- name: Ghostty + Tmux + Neovim + Zenwritten theme
|
||||
image: "/stack/editor.webp"
|
||||
description: Best stack for efficiently working on code. Monochromatic theme surprisingly helps with focus instead of staring at a rainbow all day.
|
||||
- section: Programming Languages
|
||||
description: "Languages I actually enjoy building in, not all the ones I know"
|
||||
items:
|
||||
- name: Zig
|
||||
description: Main language I'm exploring right now for personal projects.
|
||||
- name: Rust
|
||||
description: Previous favorite language before trying zig.
|
||||
- section: Building Tools
|
||||
items:
|
||||
- name: Macbook Pro M1 Max 64GB
|
||||
image: "/stack/macbook.webp"
|
||||
description: "Was gifted this, really missing Linux but getting a high powered Linux laptop in 2026 seems unlikely"
|
||||
- name: Onyx Boox Go + Lamy EMR stylus
|
||||
image: "/stack/onyx.webp"
|
||||
description: "Not as nice as fountain pen + paper but a lot better for organization/reading. I use it for derivations/notes. Be careful with the Onyx though, it phones home a ton. I use mine offline only"
|
||||
- name: Ender 3 V2
|
||||
image: "/stack/ender.webp"
|
||||
description: "Trusty printer that was cheaper than buying a new keyboard. Hoping for an upgrade soon though."
|
||||
- section: Fuel
|
||||
description: "Focus aids, coffee is daily while cigars are every now and then."
|
||||
items:
|
||||
- name: Kalita Wave + Fellow Move + TIMEMORE Black Mirror + TIMEMORE Chestnut
|
||||
image: "/stack/coffee.webp"
|
||||
description: "Favorite pour-over coffee setup using the Scott Rao recipe"
|
||||
- name: Warped Serie Gran Reserva 1988
|
||||
image: "/stack/warped.webp"
|
||||
description: "Nice for improving focus during chill late night code sessions"
|
||||
5
go.mod
|
|
@ -1,8 +1,9 @@
|
|||
module forge.alexselimov.com/aselimov/AlexSelimov.com
|
||||
|
||||
go 1.26.2
|
||||
go 1.26.5
|
||||
|
||||
require (
|
||||
forge.alexselimov.com/aselimov/hugo-bearcub v0.0.0-20260804035252-74d5ed7eb011 // indirect
|
||||
forge.alexselimov.com/aselimov/hugo-bearcub v0.0.0-20260814023021-aa632e351252 // indirect
|
||||
forge.alexselimov.com/aselimov/hugo-stack v0.0.0-20260814022948-f4c43cd94f4d // indirect
|
||||
forge.alexselimov.com/aselimov/hugo-unified-git-activity v0.0.0-20260516002153-e07b96c2faf3 // indirect
|
||||
)
|
||||
|
|
|
|||
14
go.sum
|
|
@ -1,12 +1,6 @@
|
|||
forge.alexselimov.com/aselimov/hugo-bearcub v0.0.0-20260516000128-2c2a275a9564 h1:7RVGiz6nIvTb/ERQ0u9MjTLA/Yq2Xjun1/zZyTbHxMw=
|
||||
forge.alexselimov.com/aselimov/hugo-bearcub v0.0.0-20260516000128-2c2a275a9564/go.mod h1:L550lxcgzgIei1w3dKvOTnga43J9NBtkzo7i3wl7chc=
|
||||
forge.alexselimov.com/aselimov/hugo-bearcub v0.0.0-20260615194920-3ced4c68855b h1:YPq765quE4Q+nZJ2IEjNXERiQgP4HufL648b5CKi2MQ=
|
||||
forge.alexselimov.com/aselimov/hugo-bearcub v0.0.0-20260615194920-3ced4c68855b/go.mod h1:L550lxcgzgIei1w3dKvOTnga43J9NBtkzo7i3wl7chc=
|
||||
forge.alexselimov.com/aselimov/hugo-bearcub v0.0.0-20260615200242-92ea370e40f3 h1:Ex9Av1wBpWXRCyYGFdZqBzxuc2In/t27o4kKLSoRckY=
|
||||
forge.alexselimov.com/aselimov/hugo-bearcub v0.0.0-20260615200242-92ea370e40f3/go.mod h1:L550lxcgzgIei1w3dKvOTnga43J9NBtkzo7i3wl7chc=
|
||||
forge.alexselimov.com/aselimov/hugo-bearcub v0.0.0-20260804033838-9a66205d80d2 h1:Lu06PR8metsu0F3TR6aoVTrZhhTTTWVM4d/zl69hOO4=
|
||||
forge.alexselimov.com/aselimov/hugo-bearcub v0.0.0-20260804033838-9a66205d80d2/go.mod h1:L550lxcgzgIei1w3dKvOTnga43J9NBtkzo7i3wl7chc=
|
||||
forge.alexselimov.com/aselimov/hugo-bearcub v0.0.0-20260804035252-74d5ed7eb011 h1:ncPP7zlCe1EJ2VP3nV04W1YY7w0qyG3EyJP5GL/G4C8=
|
||||
forge.alexselimov.com/aselimov/hugo-bearcub v0.0.0-20260804035252-74d5ed7eb011/go.mod h1:L550lxcgzgIei1w3dKvOTnga43J9NBtkzo7i3wl7chc=
|
||||
forge.alexselimov.com/aselimov/hugo-bearcub v0.0.0-20260814023021-aa632e351252 h1:T0IQtSzAAOHiRrmabE+dSQxUuU4Xm8GdZP45jYeN+mY=
|
||||
forge.alexselimov.com/aselimov/hugo-bearcub v0.0.0-20260814023021-aa632e351252/go.mod h1:L550lxcgzgIei1w3dKvOTnga43J9NBtkzo7i3wl7chc=
|
||||
forge.alexselimov.com/aselimov/hugo-stack v0.0.0-20260814022948-f4c43cd94f4d h1:oCgO3LU2SuS3bQcdpFdIPLgE1z+IQXjbvbzzRLjGXqc=
|
||||
forge.alexselimov.com/aselimov/hugo-stack v0.0.0-20260814022948-f4c43cd94f4d/go.mod h1:UoKXiIrMjWeZdjsAMr1MekS3+hTQ4qXXAphXv8lOIF4=
|
||||
forge.alexselimov.com/aselimov/hugo-unified-git-activity v0.0.0-20260516002153-e07b96c2faf3 h1:9NkGN2Vz1FtztG3lpb2F+MRv7m72Nzno7kRIMvdyau8=
|
||||
forge.alexselimov.com/aselimov/hugo-unified-git-activity v0.0.0-20260516002153-e07b96c2faf3/go.mod h1:YcxJyQNzPOmoJ/9LYHlPrZLVqMI25izS4j+lMqJgXH0=
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
baseURL = "https://www.alexselimov.com/"
|
||||
languageCode = "en-US"
|
||||
theme = "forge.alexselimov.com/aselimov/hugo-bearcub"
|
||||
theme = ["forge.alexselimov.com/aselimov/hugo-bearcub"]
|
||||
defaultContentLanguage = "en"
|
||||
copyright = "© Alex Selimov"
|
||||
enableRobotsTXT = true
|
||||
|
|
@ -73,3 +73,5 @@ email = "alex@alexselimov.com"
|
|||
path = 'forge.alexselimov.com/aselimov/hugo-bearcub'
|
||||
[[module.imports]]
|
||||
path = 'forge.alexselimov.com/aselimov/hugo-unified-git-activity'
|
||||
[[module.imports]]
|
||||
path = 'forge.alexselimov.com/aselimov/hugo-stack'
|
||||
|
|
|
|||
|
|
@ -2,3 +2,4 @@
|
|||
<link href="{{ $autoTheme.RelPermalink }}" rel="stylesheet">
|
||||
|
||||
<script data-site="RVRFGZU" src="https://analytics.alexselimov.com/script.js" defer></script>
|
||||
|
||||
|
|
|
|||
0
static/presentations/MMM_2022_AlexSelimov.pptx
Normal file → Executable file
BIN
static/stack/atreus.webp
Normal file
|
After Width: | Height: | Size: 831 KiB |
BIN
static/stack/chocv.webp
Normal file
|
After Width: | Height: | Size: 706 KiB |
BIN
static/stack/coffee.webp
Normal file
|
After Width: | Height: | Size: 783 KiB |
BIN
static/stack/editor.webp
Normal file
|
After Width: | Height: | Size: 58 KiB |
BIN
static/stack/ender.webp
Normal file
|
After Width: | Height: | Size: 675 KiB |
BIN
static/stack/macbook.webp
Normal file
|
After Width: | Height: | Size: 35 KiB |
BIN
static/stack/nulea.webp
Normal file
|
After Width: | Height: | Size: 13 KiB |
BIN
static/stack/onyx.webp
Normal file
|
After Width: | Height: | Size: 886 KiB |
BIN
static/stack/warped.webp
Normal file
|
After Width: | Height: | Size: 678 KiB |
|
|
@ -1,5 +0,0 @@
|
|||
:root {
|
||||
--background: #191919;
|
||||
--foreground: #eceae5;
|
||||
--accent: #EF9F27;
|
||||
}
|
||||