├── app ├── src │ ├── main │ │ ├── resources │ │ │ ├── sql │ │ │ │ └── schema.sql │ │ │ ├── templates │ │ │ │ ├── about.mustache │ │ │ │ ├── index.mustache │ │ │ │ └── base.mustache │ │ │ ├── static │ │ │ │ ├── img │ │ │ │ │ ├── bot1.png │ │ │ │ │ ├── chat.png │ │ │ │ │ ├── fork.png │ │ │ │ │ ├── itsl.jpg │ │ │ │ │ ├── crash.png │ │ │ │ │ ├── email.png │ │ │ │ │ ├── github.png │ │ │ │ │ ├── icon2.png │ │ │ │ │ ├── icon3.png │ │ │ │ │ ├── icon5.png │ │ │ │ │ ├── macros.png │ │ │ │ │ ├── vizex2.png │ │ │ │ │ ├── LI-In-Bug.png │ │ │ │ │ ├── bexxmodd.png │ │ │ │ │ ├── cthebest.jpg │ │ │ │ │ ├── fork-blue.png │ │ │ │ │ ├── page-icon.png │ │ │ │ │ ├── star-blue.png │ │ │ │ │ ├── github-red.png │ │ │ │ │ ├── github-star.png │ │ │ │ │ ├── linkedin-red.png │ │ │ │ │ ├── twitter-64.png │ │ │ │ │ ├── twitter-blue.png │ │ │ │ │ ├── twitter-red.png │ │ │ │ │ ├── bexxmodd_small.png │ │ │ │ │ ├── linkedin-blue.png │ │ │ │ │ ├── rickmorty_cpy.jpg │ │ │ │ │ ├── twitter-00ffdd.png │ │ │ │ │ └── GitHub-Mark-Light.png │ │ │ │ ├── about.css │ │ │ │ └── main.css │ │ │ └── application.properties │ │ └── kotlin │ │ │ └── com │ │ │ └── bexxmodd │ │ │ ├── datasource │ │ │ ├── BlogPostDataSource.kt │ │ │ └── impl │ │ │ │ └── BlogPostDataSourceImpl.kt │ │ │ ├── BlogApplication.kt │ │ │ ├── model │ │ │ └── BlogPost.kt │ │ │ └── controller │ │ │ └── BlogController.kt │ └── test │ │ └── kotlin │ │ └── com │ │ └── bexxmodd │ │ └── AppTest.kt └── build.gradle.kts ├── README.md ├── settings.gradle.kts ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .gitignore ├── .gitattributes ├── LICENSE ├── gradlew.bat └── gradlew /app/src/main/resources/sql/schema.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # bexxmodd-dot-com 2 | Person blog 3 | -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "bexxmodd-dot-com" 2 | include("app") -------------------------------------------------------------------------------- /app/src/main/resources/templates/about.mustache: -------------------------------------------------------------------------------- 1 | {{> base }} 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore Gradle project-specific cache directory 2 | .gradle 3 | 4 | # Ignore Gradle build output directory 5 | build 6 | .idea -------------------------------------------------------------------------------- /app/src/main/resources/static/img/bot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/bot1.png -------------------------------------------------------------------------------- /app/src/main/resources/static/img/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/chat.png -------------------------------------------------------------------------------- /app/src/main/resources/static/img/fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/fork.png -------------------------------------------------------------------------------- /app/src/main/resources/static/img/itsl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/itsl.jpg -------------------------------------------------------------------------------- /app/src/main/resources/static/img/crash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/crash.png -------------------------------------------------------------------------------- /app/src/main/resources/static/img/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/email.png -------------------------------------------------------------------------------- /app/src/main/resources/static/img/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/github.png -------------------------------------------------------------------------------- /app/src/main/resources/static/img/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/icon2.png -------------------------------------------------------------------------------- /app/src/main/resources/static/img/icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/icon3.png -------------------------------------------------------------------------------- /app/src/main/resources/static/img/icon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/icon5.png -------------------------------------------------------------------------------- /app/src/main/resources/static/img/macros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/macros.png -------------------------------------------------------------------------------- /app/src/main/resources/static/img/vizex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/vizex2.png -------------------------------------------------------------------------------- /app/src/test/kotlin/com/bexxmodd/AppTest.kt: -------------------------------------------------------------------------------- 1 | /* 2 | * This Kotlin source file was generated by the Gradle 'init' task. 3 | */ 4 | package com.bexxmodd -------------------------------------------------------------------------------- /app/src/main/resources/static/img/LI-In-Bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/LI-In-Bug.png -------------------------------------------------------------------------------- /app/src/main/resources/static/img/bexxmodd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/bexxmodd.png -------------------------------------------------------------------------------- /app/src/main/resources/static/img/cthebest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/cthebest.jpg -------------------------------------------------------------------------------- /app/src/main/resources/static/img/fork-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/fork-blue.png -------------------------------------------------------------------------------- /app/src/main/resources/static/img/page-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/page-icon.png -------------------------------------------------------------------------------- /app/src/main/resources/static/img/star-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/star-blue.png -------------------------------------------------------------------------------- /app/src/main/resources/static/img/github-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/github-red.png -------------------------------------------------------------------------------- /app/src/main/resources/static/img/github-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/github-star.png -------------------------------------------------------------------------------- /app/src/main/resources/static/img/linkedin-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/linkedin-red.png -------------------------------------------------------------------------------- /app/src/main/resources/static/img/twitter-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/twitter-64.png -------------------------------------------------------------------------------- /app/src/main/resources/static/img/twitter-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/twitter-blue.png -------------------------------------------------------------------------------- /app/src/main/resources/static/img/twitter-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/twitter-red.png -------------------------------------------------------------------------------- /app/src/main/resources/static/img/bexxmodd_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/bexxmodd_small.png -------------------------------------------------------------------------------- /app/src/main/resources/static/img/linkedin-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/linkedin-blue.png -------------------------------------------------------------------------------- /app/src/main/resources/static/img/rickmorty_cpy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/rickmorty_cpy.jpg -------------------------------------------------------------------------------- /app/src/main/resources/static/img/twitter-00ffdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/twitter-00ffdd.png -------------------------------------------------------------------------------- /app/src/main/resources/static/img/GitHub-Mark-Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bexxmodd/bexxmodd-dot-com/master/app/src/main/resources/static/img/GitHub-Mark-Light.png -------------------------------------------------------------------------------- /app/src/main/resources/static/about.css: -------------------------------------------------------------------------------- 1 | p { 2 | font-family: 'Share Tech Mono' monospace; 3 | font-size: 1.1rem; 4 | text-align: left; 5 | } 6 | 7 | div { 8 | text-align: center; 9 | } -------------------------------------------------------------------------------- /app/src/main/resources/templates/index.mustache: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |22 | I'm a Software Engineer at Google where I build client-side infrastructure to 23 | create the seamless integration of Google Assistant on various devices and also 24 | supercharging them with LLMs. My problem-solving powers extends to Kotlin, 25 | Java, C++, Rust, and Python, where I bring innovative solutions. 26 |
27 | 28 |29 | My academic journey led me to obtain a Master's degree in Computer Science 30 | from the University of Pennsylvania's School of Engineering and Applied Science, 31 | a rewarding path that did come with the cost of losing 2760 hours of sleep. 32 | As an ardent advocate of Open-Source Software, I strive to contribute to impactful projects continuously. 33 |
34 | 35 |36 | This is my personal sanctuary where I log about knowledge I've acquired and problems I've unraveled. 37 | Often I get philosophical and contemplate about the intricate interaction between carbon based 38 | and silicon based life forms. My curiosity centers around deciphering technology's 39 | profound impact on socio-economic development. 40 |
41 | 42 |43 | I love everything SciFi and consider myself a Lego enthusiast. My passions harmonize with 44 | my career goals and are centered on the world of Software Engineering. 45 | I'm zealous about better understanding computers, users and our place in the universe, 46 | and to use this knowledge to build useful things. 47 |
48 |