From 7d1e8b934ca78d2fd9a4bb4f2664bc2049846c48 Mon Sep 17 00:00:00 2001 From: Aaditya Murthy Date: Sat, 9 Dec 2023 22:49:15 -0600 Subject: [PATCH] First Post --- .gitignore | 13 +++++++++++++ .gitmodules | 3 +++ archetypes/default.md | 5 +++++ content/posts/the-importance-of-ppi.md | 27 ++++++++++++++++++++++++++ hugo.toml | 4 ++++ themes/risotto | 1 + 6 files changed, 53 insertions(+) create mode 100644 .gitignore create mode 100644 .gitmodules create mode 100644 archetypes/default.md create mode 100644 content/posts/the-importance-of-ppi.md create mode 100644 hugo.toml create mode 160000 themes/risotto diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..86c95ef --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +# Generated files by hugo +/public/ +/resources/_gen/ +/assets/jsconfig.json +hugo_stats.json + +# Executable may be added to repository +hugo.exe +hugo.darwin +hugo.linux + +# Temporary lock file while building +/.hugo_build.lock diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..ff7ca04 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/risotto"] + path = themes/risotto + url = https://github.com/joeroe/risotto.git diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..c6f3fce --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +title = '{{ replace .File.ContentBaseName "-" " " | title }}' +date = {{ .Date }} +draft = true ++++ diff --git a/content/posts/the-importance-of-ppi.md b/content/posts/the-importance-of-ppi.md new file mode 100644 index 0000000..0d5ea8e --- /dev/null +++ b/content/posts/the-importance-of-ppi.md @@ -0,0 +1,27 @@ ++++ +title = 'The Importance of PPI' +date = 2023-12-09T21:31:44-06:00 +draft = true +description = 'My first blog post' ++++ +This is my first blog post!! I will attempt to introduce myself and +my motivations for starting a blog, and also attempt to convince you +why PPI should be a big factor when evaluating the quality of a display. + +## Introduction +Hello dear readers, and welcome to my blog! If you've managed to make it this far, +Congratulations! The state of the blog and is still in-progress and will evolve over time, and I appreciate +you taking the time to read it in spite of its limitations. + +### About Me +Hi! I'm Aaditya Murthy. Currently, I am working on the Video Ingestion team at Toyota Connected as a Software Engineer. Previoiusly I worked at Amazon as a Software Development Engineer for the past two years. I completed my Bachelor's in Computer Science from UT Austin in 2020. +I like to sing, play chess, and run for fun, and I dabble in some other things as well (Music Production, video-games, game-streaming, and much more). +Anyways, I wanted to start a blog mostly to blog about interesting topics within Computer Science and Mathematics, +but I hope to also blog about other things (life, music, etc.) as well! Let's see where this goes, and I sincerely hope that you as the reader will find some value in it! + +## What is PPI? +With that out of the way, I'd like to introduce the topic I have chosen for this post, PPI. **PPI** or *pixels per inch* refers to the number of pixels in an inch on the display. The two factors that influence PPI are screen size and resolution. The larger the screen size for the same resolution, the lower the PPI. The higher the resolution for the same screen size, the higher the PPI. + +## Why is it Important +I would like to first introduce this post on the topic [What is HiDPI](https://cassidyjames.com/blog/what-is-hidpi/). This post +does a great job of explaining why \ No newline at end of file diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..0cd5895 --- /dev/null +++ b/hugo.toml @@ -0,0 +1,4 @@ +baseURL = 'https://aadi123.github.io/' +languageCode = 'en-us' +title = 'abhyāsa' +theme = 'risotto' diff --git a/themes/risotto b/themes/risotto new file mode 160000 index 0000000..4343550 --- /dev/null +++ b/themes/risotto @@ -0,0 +1 @@ +Subproject commit 4343550d785d8cce942ac5109aa9fdd9d9a70823