Skip to content

Commit

Permalink
feat: add uses page
Browse files Browse the repository at this point in the history
- barebones CSS rules for now
  • Loading branch information
bhodrolok committed Mar 16, 2024
1 parent 0866837 commit f0164a7
Showing 3 changed files with 126 additions and 0 deletions.
73 changes: 73 additions & 0 deletions content/uses/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
+++
title = "/uses"
description = "Daily drivers"
template = "uses.html"
insert_anchor_links = "right"

[extra]
lang = 'en'
math = false
mermaid = false
copy = false
comment = true
blur_effect = true
+++

## What I use on a daily basis

> Not an exhaustive list!
### Hardware

- Machine: HP EliteBook 840 G2
- OS: Windows 10 Pro (build 19045)
- GPU: Intel HD Graphics 5500 (integrated)
- CPU: Intel Core i5-5200U 2.20 GHz
- RAM: 16 GB (2x Samsung Memory 8 GB DDR3 1600 Mhz DIMM sticks)
- Storage: 256 GB LITEON SATA3.1 SSD

- Peripherals:
- External Display: Acer 23.8" FHD 75Hz 1ms GTG VA LED Monitor (KA242Y ABI) - Black
- Keyboard: Perixx PERIBOARD-409WU US, Wired USB Mini Keyboard - White
- Mouse: Dell Optical Wired Mouse - MS116

### Software
- Notes & Personal Knowledge Management:
1. Obsidian
2. Zim
- Terminal Emulator: Windows Terminal (Preview 1.20.10572.0)
- Shell: PowerShell 7
- Font: Adobe Source Code Pro
- Theme: Popping and Locking
- Text Editor(s):
1. Sublime Text 4
2. Visual Studio Code
3. Helix
4. Micro
- CLI Tools:
- General:
1. zoxide
2. ripgrep (rg)
3. fzf
4. eza
5. cargo-binstall
6. fd
- Development specific:
1. git
2. gitui
3. curl
4. riff
5. python stack:
1. pyenv-win
2. poetry
3. venv
4. pipx
- API Testing: Postman
- Miscellaneous:
1. Everything 1.5a

---

This page is inspired by [Wes Bos'](https://wesbos.com) [uses.tech](https://uses.tech), which encourages people to publicly share their overall setup, configurations, tools, and anything else they find useful for their productivity and leisure by adding a '/uses' page (like this one!) to their personal websites.

To see what other cool things people are using, check out [uses.tech](https://uses.tech). Consider sharing yours!
28 changes: 28 additions & 0 deletions templates/_custom_css.html
Original file line number Diff line number Diff line change
@@ -181,4 +181,32 @@

}

/* uses page
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
body.uses {
#wrapper {
margin: 0 auto;
max-width: var(--main-max-width);
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
}

main {
width: 100%;
margin: 90px auto 40px;

a {
color: var(--primary-color);
text-decoration: underline var(--primary-pale-color) 2px;

&:hover {
text-decoration-color: var(--primary-color);
}
}
}

}

</style>
25 changes: 25 additions & 0 deletions templates/uses.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{% extends "_base.html" %}

{% block page %}uses{% endblock page%}
{% block lang %}{% if section.extra.lang %}{{ section.extra.lang }}{% else %}{{ section.lang }}{% endif %}{% endblock lang %}
{% block title %}{{ section.title }}{% endblock title %}
{% block desc %}
<meta name="description" content="{{ section.description }}">
{% endblock desc %}

{% block content %}
{% include "_header.html" %}
<div id="wrapper">
<main>
<section id="brief" class="prose">
{{ section.content | trim | safe }}
</section>
{% if section.extra.comment is defined %}{% set show_comment = section.extra.comment %}{% else %}{% set show_comment = config.extra.comment %}{% endif %}
{% if show_comment %}
<div class="giscus"></div>
{% include "_giscus_script.html" %}
{% endif %}
</main>
{% include "_footer.html" -%}
</div>
{% endblock content %}

0 comments on commit f0164a7

Please sign in to comment.