From 1d9fc47182aa85fb8a857df704f03173e64a8876 Mon Sep 17 00:00:00 2001 From: Marcin Chrzanowski Date: Sat, 24 Jul 2021 01:06:04 +0200 Subject: Add Sunday Corner --- scripts/build.rb | 1 + src/template.html.erb | 1 + 2 files changed, 2 insertions(+) diff --git a/scripts/build.rb b/scripts/build.rb index b88dad1..774901c 100755 --- a/scripts/build.rb +++ b/scripts/build.rb @@ -35,6 +35,7 @@ P.add 'blog', 'blog.html' P.add 'projects', 'projects.html' P.add 'crypto', 'crypto.html' P.add 'rss', 'rss.xml' +P.add 'sunday', 'sunday.html' if !Dir.exists? 'public/blog' Dir.mkdir 'public/blog' diff --git a/src/template.html.erb b/src/template.html.erb index 569c105..03d2676 100644 --- a/src/template.html.erb +++ b/src/template.html.erb @@ -15,6 +15,7 @@
  • '>Home
  • '>Blog
  • '>Projects
  • +
  • '>Sunday Corner

  • -- cgit v1.2.3 From 6a7b8ebcf1dc17fe6c500e461a9c23a1a48c32e9 Mon Sep 17 00:00:00 2001 From: Marcin Chrzanowski Date: Sun, 25 Jul 2021 16:08:03 +0200 Subject: Change Sunday corner URL --- scripts/build.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.rb b/scripts/build.rb index 774901c..34944a2 100755 --- a/scripts/build.rb +++ b/scripts/build.rb @@ -35,7 +35,7 @@ P.add 'blog', 'blog.html' P.add 'projects', 'projects.html' P.add 'crypto', 'crypto.html' P.add 'rss', 'rss.xml' -P.add 'sunday', 'sunday.html' +P.add 'sunday', 'sunday-corner' if !Dir.exists? 'public/blog' Dir.mkdir 'public/blog' -- cgit v1.2.3 From 9f55ed554fd448c2acf83f8f91f418e48e290e94 Mon Sep 17 00:00:00 2001 From: Marcin Chrzanowski Date: Sun, 25 Jul 2021 16:23:56 +0200 Subject: Publish Sunday Corner blog post --- src/blog/sunday-corner.html.erb | 75 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 src/blog/sunday-corner.html.erb diff --git a/src/blog/sunday-corner.html.erb b/src/blog/sunday-corner.html.erb new file mode 100644 index 0000000..8946c5a --- /dev/null +++ b/src/blog/sunday-corner.html.erb @@ -0,0 +1,75 @@ +title: Introducing Martin's Sunday Corner +date: July 25, 2021 15:55 +--- +

    +I spent Friday night implementing a new part of my website: +'>Martin's Sunday Corner. It's going to be +a list of thoughts from the past week available once a week on Sundays. Think of +it like a once-a-week ephemeral microblog. A Twitter without any of the features +of Twitter. Or any of its limitations. +

    + +

    +You can try to access the page on other days but there's no use, you'll just be +told to return next Sunday. +

    + +

    +For now I'm going to treat this as an experiment. I'm not sure how long I'll +keep it running, but I'm hoping it's going to be light enough for me to not need +to care about it much. I won't mind if it remains empty some weeks, but if it +stays empty for weeks in a row, I'll probably shut it down and consider the +experiment as failed. +

    + +

    +The Corner is going to be an outlet for + +

      +
    • random thoughts
    • +
    • musings
    • +
    • small updates
    • +
    • tiny poems or jokes; why not?
    • +
    • + maybe small rants? I don't usually complain much, but maybe that's just + because I've never had a good place to do so at. +
    • +
    +

    + +

    +I hope the ephemerality of this project will help me be more off-the-cuff and +share thoughts that I normally wouldn't in full blog posts. And, assuming this +actually leads to me thinking and sharing more thoughts, maybe it will +additionally lead to more interesting ideas that can evolve into full articles. +

    + +

    Anti Social Media

    +

    +This experiment is anti social media. Not in the sense that it's anti social +— quite the opposite, since as always you are welcome to email me if you +have any comments about anything I've written, and that includes anything you +happen to see in the Corner. It's anti social media in the sense of being +opposed to +'> + "social" + media. +

    + +

    +Social media tries to keep you hooked in as long as possible every day. It wants +to bombard you with all sorts of random content, then learn which of it sticks. +The Corner is available only one day a week. Once you've seen a Sunday's +contents, there's no reason to stay on the page, to refresh, to wait for a +notification (none will come). You'll have to wait until next Sunday for fresh +thoughts from a new week. The thoughts will all come from me. They might be +boring, they won't be targeted, you might not relate to most of them. I might +even write some of them in Polish so who knows if you'll be able to read them. +

    + +

    Technical

    +

    +The Corner is implemented as a CGI script written in Ruby. You can find the +source code '>here. Feel free to copy my code or +implement a similar idea for your own personal website! +

    -- cgit v1.2.3 From 58e3e4a2071da194d3c90a2b5901f9b98b1c2242 Mon Sep 17 00:00:00 2001 From: Marcin Chrzanowski Date: Sun, 25 Jul 2021 23:33:21 +0200 Subject: Add link to LandChad --- src/blog/sunday-corner.html.erb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/blog/sunday-corner.html.erb b/src/blog/sunday-corner.html.erb index 8946c5a..8df4dd3 100644 --- a/src/blog/sunday-corner.html.erb +++ b/src/blog/sunday-corner.html.erb @@ -73,3 +73,10 @@ The Corner is implemented as a CGI script written in Ruby. You can find the source code '>here. Feel free to copy my code or implement a similar idea for your own personal website!

    + +

    +I also just wrote an +article for LandChad about CGI +scripting, if you're interested in CGI scripting in general. The example used +there is in concept very similar to the Corner. +

    -- cgit v1.2.3