Adding time page
This commit is contained in:
parent
8f87855bd1
commit
5159eeeea4
5 changed files with 16 additions and 88 deletions
|
|
@ -1,83 +0,0 @@
|
||||||
id: wdtg
|
|
||||||
title: Where Did Time Go?
|
|
||||||
previous: fsdi
|
|
||||||
date: 2024-05-22
|
|
||||||
---
|
|
||||||
|
|
||||||
<h2>Where Did Time Go?</h2>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
I keep trying to get to work on personal projects.
|
|
||||||
Expanding this website, making some new ones for a business and some utility things.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
I am also trying to stay healthy and get better at Brazilian Jiu Jitsu.
|
|
||||||
Sleep enough.
|
|
||||||
Spend time with my Fiance.
|
|
||||||
Learn Japanese.
|
|
||||||
Keep journaling.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
I don't know if I am crazy but I feel like life should have time for things like this.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
If I am up early enough to spend time building stuff I inevitably get frustrated when I have to stop and get to work.
|
|
||||||
It takes time to get into the flow of building something new and getting a couple of hours (or even an hour) on a weekday is hard.
|
|
||||||
So I wind up working on it on the weekends and just trying to capture ideas that I have throughout the week.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
Obviously to me the time is going to work.
|
|
||||||
Very often over the last few months I am spending time outside of regular work hours on work.
|
|
||||||
We are trying to finish off a big project.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
In the past most of the jobs that I have worked are physical.
|
|
||||||
Coaching gymnastics, fixing hot tubs, sauna construction.
|
|
||||||
They all require you to be there in person and therefore are not something that you can just casually log on outside of your normal hours.
|
|
||||||
Software development is so much different.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
There is this weird feeling of guilt when spending time coding my own stuff.
|
|
||||||
There is always more work to do at work with most jobs.
|
|
||||||
But software feels different in that this is also something that I like to do on my own time as well.
|
|
||||||
With project deadlines looming and the simplicity of logging onto my work computer instead of my own to do broadly the same thing I feel bad when I spend my own coding time on my own projects.
|
|
||||||
Writing that out sounds insane but it is the case a lot of the time.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
Working from home a couple days a week also does not help.
|
|
||||||
My desk is no longer my workshop, but partially an extension of my desk at work.
|
|
||||||
Being able to work remotely feels like a gift.
|
|
||||||
And for a lot of reasons it is.
|
|
||||||
I can do laundry or cook meals during breaks, less commuting.
|
|
||||||
However it really does make the lines blur between work and not, especially when I am wanting to code in my free time.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
I think the answer is to treat this job as a physical one.
|
|
||||||
Get a locker, leave my computer there.
|
|
||||||
I wouldn't be able to work from home during regular work time anymore.
|
|
||||||
That also means that I can't work outside of work time.
|
|
||||||
I need that sharp delineation between work and the rest of my life.
|
|
||||||
It just bleeds over too easily for me.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
Which brings me to my more general thoughts that everything that we do has a cost associated with the benefit that it brings.
|
|
||||||
We often get excited about the benefits and forget to take the cost into account.
|
|
||||||
Working from home, adopting a new software tool, etc.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
I am more and more often finding that the costs are not worth it.
|
|
||||||
It has taken me 2 years to get to this realization with working from home in particular.
|
|
||||||
I think the benefits were front loaded with realizing that I could get things done during work breaks.
|
|
||||||
The costs however were slowly training me over time to see my home desk as a workspace and for my mind to associate the two.
|
|
||||||
And it isn't worth it so I am going to try without and see how that goes.
|
|
||||||
</p>
|
|
||||||
|
|
@ -9,7 +9,7 @@ use super::templates::{
|
||||||
EdgeDetectionTemplate,
|
EdgeDetectionTemplate,
|
||||||
GardenTemplate,
|
GardenTemplate,
|
||||||
HtmlTemplate,
|
HtmlTemplate,
|
||||||
TakTemplate,
|
TakTemplate, TimeTemplate,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub fn get_router() -> Router {
|
pub fn get_router() -> Router {
|
||||||
|
|
@ -17,6 +17,7 @@ pub fn get_router() -> Router {
|
||||||
.route("/", get(garden))
|
.route("/", get(garden))
|
||||||
.route("/ed", get(edge_detection))
|
.route("/ed", get(edge_detection))
|
||||||
.route("/books", get(books))
|
.route("/books", get(books))
|
||||||
|
.route("/time", get(time))
|
||||||
.route("/tak", get(tak))
|
.route("/tak", get(tak))
|
||||||
.route("/archserver", get(arch_server))
|
.route("/archserver", get(arch_server))
|
||||||
}
|
}
|
||||||
|
|
@ -36,6 +37,11 @@ async fn books() -> impl IntoResponse {
|
||||||
HtmlTemplate(books_page)
|
HtmlTemplate(books_page)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async fn time() -> impl IntoResponse {
|
||||||
|
let time_page = TimeTemplate {};
|
||||||
|
HtmlTemplate(time_page)
|
||||||
|
}
|
||||||
|
|
||||||
async fn tak() -> impl IntoResponse {
|
async fn tak() -> impl IntoResponse {
|
||||||
let tak_page = TakTemplate {};
|
let tak_page = TakTemplate {};
|
||||||
HtmlTemplate(tak_page)
|
HtmlTemplate(tak_page)
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
<h4>Currently Reading</h4>
|
<h4>Currently Reading</h4>
|
||||||
<p>
|
<p>
|
||||||
Get to pick a new book to start.
|
Re reading one of my favourites, Gnomon by Nick Harkaway.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h4>Read so far in 2024</h4>
|
<h4>Read so far in 2024</h4>
|
||||||
|
|
|
||||||
|
|
@ -25,4 +25,9 @@
|
||||||
<a href="/garden/books">Books</a>, what I am reading, why I love them so much.
|
<a href="/garden/books">Books</a>, what I am reading, why I love them so much.
|
||||||
Just book stuff.
|
Just book stuff.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Some thoughts on <a href="/garden/time">time</a>.
|
||||||
|
I catch myself coming back to this subject pretty regularly.
|
||||||
|
</p>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
||||||
|
|
@ -64,7 +64,7 @@
|
||||||
<section id="blogroll">
|
<section id="blogroll">
|
||||||
<h2>Blogroll</h2>
|
<h2>Blogroll</h2>
|
||||||
<p>
|
<p>
|
||||||
Collection of other <a href="/blogroll">blogs</a> that I follow information.
|
Collection of other <a href="/blogroll">blogs</a> that I follow.
|
||||||
</p>
|
</p>
|
||||||
</section><br>
|
</section><br>
|
||||||
|
|
||||||
|
|
@ -78,8 +78,8 @@
|
||||||
<section id="ai">
|
<section id="ai">
|
||||||
<h2>AI</h2>
|
<h2>AI</h2>
|
||||||
<p>
|
<p>
|
||||||
How <a href="/ai">AI</a> is (or more accurately is not) used in this site and my work in general.
|
How <a href="/ai">AI</a> is (or more accurately is not) used in this site and my work in general,
|
||||||
And why.
|
and why.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<section id="contact">
|
<section id="contact">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue