aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.build.yml5
-rw-r--r--Gemfile6
-rw-r--r--Gemfile.lock24
-rw-r--r--Makefile2
-rw-r--r--posts/perspective.md17
-rw-r--r--wruby.rb6
6 files changed, 26 insertions, 34 deletions
diff --git a/.build.yml b/.build.yml
index ee39621..5353a85 100644
--- a/.build.yml
+++ b/.build.yml
@@ -11,11 +11,10 @@ sources:
- https://git.sr.ht/~bt/btxx.org
tasks:
- install-gems: |
- sudo gem install bundler
+ sudo gem install bundler kramdown rss
- build: |
cd btxx.org
- sudo bundle install
- make build
+ sudo make build
- package: |
cd btxx.org/build
tar -cvz . > ../../site.tar.gz
diff --git a/Gemfile b/Gemfile
deleted file mode 100644
index beb3fe3..0000000
--- a/Gemfile
+++ /dev/null
@@ -1,6 +0,0 @@
-source 'https://rubygems.org'
-
-ruby '3.3.3'
-
-gem 'kramdown', '~> 2.4.0'
-gem 'rss', '~> 0.3.0' \ No newline at end of file
diff --git a/Gemfile.lock b/Gemfile.lock
deleted file mode 100644
index b2ffa2d..0000000
--- a/Gemfile.lock
+++ /dev/null
@@ -1,24 +0,0 @@
-GEM
- remote: https://rubygems.org/
- specs:
- kramdown (2.4.0)
- rexml
- rexml (3.3.2)
- strscan
- rss (0.3.0)
- rexml
- strscan (3.1.0)
-
-PLATFORMS
- arm64-darwin-23
- ruby
-
-DEPENDENCIES
- kramdown (~> 2.4.0)
- rss (~> 0.3.0)
-
-RUBY VERSION
- ruby 3.3.3p89
-
-BUNDLED WITH
- 2.5.6
diff --git a/Makefile b/Makefile
index 4c40940..3e01092 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
build:
rm -rf build && mkdir build
- bundle exec ruby wruby.rb
+ ruby wruby.rb
clean:
rm -rf build/*
diff --git a/posts/perspective.md b/posts/perspective.md
new file mode 100644
index 0000000..9a31e76
--- /dev/null
+++ b/posts/perspective.md
@@ -0,0 +1,17 @@
+# Perspective
+
+2024-08-06
+
+I recently read both [Starting Hospice](https://jakeseliger.com/2024/08/04/starting-hospice-the-end/) and [No Salt](https://jakeseliger.com/2024/08/05/no-salt/) posted on [Jake's blog](https://jakeseliger.com/) and was quite moved. I don't know Jake and have never met him - but his writing and shared experiences give a very *real* look into his mind and perspective. If you haven't yet, I strongly recommend giving his site a read (or at the very least those two posts). It made me reflect on my own life, shift my perspective and realize how fortunate I truly am.
+
+## Losing Focus
+
+I think we all find ourselves losing focus on the *truly* important things in life. That's normal and expected. Maybe your house needs repairs, or you're crunching for an upcoming deadline, or your prepping for a long a work trip, or your stressed out hunting for a job. Whatever it might be, our brains are very good at getting derailed and putting all our attention into less important things. But I believe our minds *need* to wander and focus on the less important. Otherwise your mental health would suffer greatly. And I should note, some of these "stresses" still require our attention. I just don't think they should consume us.
+
+I'm not advocating that we need to constantly be obsessing over the limited time we have on this spinning rock, or that we should smother our families with over-the-top love. Just stopping and reflecting on these things can really put any worries you have into perspective. It might be cliche to state the obvious, "Be grateful for what you have!" but cliche or not - it's true.
+
+Jake will be leaving behind not just his friends and family, but also his wife who is 7-months pregnant. I can't begin to imagine the range of emotions everyone close to him must be feeling. I know *I* would be furious, which doesn't make sense since something like this is so far removed from human control. Being angry would just be wasted energy. But that's easier said than done.
+
+I don't have a whole lot else to say on the matter. This post also pales in comparison to Jake's *actual* experience and shared perspective on his site. I really wasn't even sure to share this on my site, in fear that I would be somehow disrespecting Jake's memory (along with his much better writing skills and openness). But then I thought, if anything, I could help reach Jake's story to even one other person and help them reflect on their own perspective as well.
+
+Now if you'll excuse me, I'm going to take a long, purposefully slow walk with my family. \ No newline at end of file
diff --git a/wruby.rb b/wruby.rb
index d4f49e6..446d83f 100644
--- a/wruby.rb
+++ b/wruby.rb
@@ -1,3 +1,9 @@
+require 'bundler/inline'
+gemfile do
+ gem 'kramdown', '2.4.0'
+ gem 'rss', '0.3.0'
+end
+
require 'kramdown'
require 'fileutils'
require 'date'