Skip to content

Commit

Permalink
added chessercises
Browse files Browse the repository at this point in the history
  • Loading branch information
aadi123 committed Feb 14, 2024
1 parent d3679b9 commit 3ced5ca
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 22 deletions.
26 changes: 26 additions & 0 deletions assets/sass/inlinespoiler.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
.inline-spoiler {
position: relative;
display: inline-block;
cursor: help;
}

.inline-spoiler::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 1px;
color: white;
background: black;
opacity: 1;
transition: opacity 0.7s ease, transform 0.3s ease;
}

.inline-spoiler:hover::before {
opacity: 0;
transform: translateY(-50%)rotateX(80deg);
transition: opacity 1.0s ease, transform 0.5s ease;
transition-delay: 0.3s; // To not accidentally reveal the spoiler when hovering over the page
}
19 changes: 8 additions & 11 deletions content/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,29 @@
title = 'About Me'
+++
Hello! I'm Aaditya (ಆದಿತ್ಯ, āditya), a Computer Scientist originally from Flower Mound, Texas.
I also sing [Carnātic Music](https://en.wikipedia.org/wiki/Carnatic_music), a form of classical music that evolved in the Southern regions of India.
In my free time, I like to play [chess](https://www.uschess.org/msa/MbrDtlTnmtHst.php?13739907), read a variety of books, and play basketball.

# Employment
## Employment
I am currently a Software Engineer at Toyota Connected on the Video Ingestion Team. Previously, I
was at Amazon for two years (2020-2022) working on the Retail Tax Platform as well as the Data Platform for Amazon Scout.

I have also had summer internship positions in Software Engineering at [vAuto](https://www.vauto.com/) and [Amazon](https://www.amazon.com).

My full resumé is available upon request.

# Education
## Education
I studied Computer Science at [The University of Texas at Austin](https://www.cs.utexas.edu), and graduated in 2020 with a B.S. in Computer Science. Before that, I graduated in 2016 from Edward S. Marcus High School in Flower Mound, Texas.

# Hobbies
For fun, I like to play chess and sing Indian Classical Music.
## Chess
## Hobbies
For fun, I like to play [chess](https://www.uschess.org/msa/MbrDtlTnmtHst.php?13739907) and sing [Carnātic Music](https://en.wikipedia.org/wiki/Carnatic_music), a form of classical music that evolved in the Southern regions of India.
### Chess
As many of you know, I was an avid chess player as a kid,
and I'm trying to keep the hobby up by playing in tournaments and analyzing games. You can view a list of interesting
positions I come across, either taken from my own games or from others' games, by navigating to the chess section using the
navigation bar at the top of the website.
positions I come across, either taken from my own games or from others' games, by navigating to the chess-exercises (or as I like to call them, chessercises) section using the navigation bar at the top of the website.

# Contact
## Contact
I can be contacted at `aadi dot murthyananth at gmail dot com`. I am not currently looking for a new job, but feel free to email me about opportunities at your company if you are a recruiter. Feel free to also reach out if you just want to chat, always looking forward to gaining new ideas and perspectives from other individuals. Pointless or Repeated spamming will not be tolerated and will lead to a block.

# Site Information
## Site Information
This site uses [Hugo](https://gohugo.io/) as a static site generator,
the [Risotto](https://github.com/joeroe/risotto) theme, and is hosted via
[Github Pages](https://pages.github.com/).
11 changes: 0 additions & 11 deletions content/chess positions/murthy-v-jagirapu.md

This file was deleted.

13 changes: 13 additions & 0 deletions content/chessercises/murthy-v-jagirapu.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
+++
title = 'Murthy v. Jagirapu'
date = 2024-02-13T08:49:39-06:00
+++
This game was played in the Southwest Open 2023 that took place in Houston, TX. This was one of
the first games I played after freshly coming out of chess retirement. I had the following position:

![White to play](/images/murthy-v-jagirapu.jpg)

In the above position, Black just played the move *h6*. Can you punish Black's last move
and take advantage of the uncastled king's position in the center?

Answer: {{< inlinespoiler >}}Nxe6!! is the correct move! Ripping apart the protection of the black king and allowing all of white's pieces to spring into the game.{{< /inlinespoiler >}}
3 changes: 3 additions & 0 deletions hugo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ palette = 'base16-onedark'
title = "Aaditya Murthy"
description = "Software Engineer. Musician. Chess-Player. Boba Enthusiast."

[security]
enableInlineShortcodes = true

[menu]
[[menu.main]]
identifier = "about"
Expand Down
5 changes: 5 additions & 0 deletions layouts/shortcodes/inlinespoiler.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{{ $opts := dict "transpiler" "dartsass" "targetPath" "css/inlinespoiler.css" }}
{{ with resources.Get "sass/inlinespoiler.scss" | toCSS $opts | minify | fingerprint }}
<link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
{{ end }}
<span class="inline-spoiler">{{- .Inner | safeHTML -}}</span>

0 comments on commit 3ced5ca

Please sign in to comment.