summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
Diffstat (limited to 'content')
-rw-r--r--content/blog/2024/fvwm-part-1.md117
-rw-r--r--content/blog/2024/re-microdosing-google-yt.md29
-rw-r--r--content/brain-rot/fantasy/chronicles-of-amber/guns-of-avalon-1971.md2
-rw-r--r--content/brain-rot/fantasy/chronicles-of-amber/hand-of-oberon-1976.md27
-rw-r--r--content/brain-rot/fantasy/chronicles-of-amber/sign-of-the-unicorn-1975.md41
5 files changed, 215 insertions, 1 deletions
diff --git a/content/blog/2024/fvwm-part-1.md b/content/blog/2024/fvwm-part-1.md
new file mode 100644
index 0000000..40905af
--- /dev/null
+++ b/content/blog/2024/fvwm-part-1.md
@@ -0,0 +1,117 @@
++++
+title = "Fvwm - part I"
+author = ["Michał Sapka"]
+date = 2024-09-02T22:31:00+02:00
+categories = ["blog"]
+draft = false
+weight = 2002
+image_dir = "blog/images"
+image_max_width = 600
+abstract = "Descend into madness"
++++
+
+Ever since I moved back to Linux (and then FreeBSD) I've rocking near stock DWM.
+Well, for quite some time I've been eyeing this other gorgeous windows manager - Fvwm.
+Today, I stumbled upon [Carl Svensson's config](https://www.datagubbe.se/fvwm/)[^fn:1] and decided to finally pull the plug.
+
+I have a very short experience with Fvwm3, as it comes as the default Xorg WM on [OpenBSD.](https://man.openbsd.org/fvwm)
+
+But I'm on FreeBSD, so I had to install the package:
+
+```shell
+pkg install fvwm3
+```
+
+And 3 megs later I was rocking a spanking new wm.
+At first, it was confusing as I've been told that there should be some panel on the right, but there was none.
+
+{{< image class="centered" alt="Screenshot of Fvwm with panel in the middle." file="fvwm-240902-1.png" >}}
+What the hell?
+All screenshots made with Gimp.
+{{< /image >}}
+
+If you look at my [setup](https://michal.sapka.me/blog/uses/), you will notice that I have a laptop in permanently closed state.
+The docked laptop is the right screen, I just never see it.
+It was time to say goodbye to it and my `.xinit.rc` now has a
+
+```shell
+...
+xrandr --output DP-2 --off & \
+...
+```
+
+Which resolved the issue!
+
+{{< image class="centered" alt="Screenshot of Fvwm with panel on the right." file="fvwm-240902-2.png" >}}
+A very usable desktop.
+{{< /image >}}
+
+Time to explore!
+Fvwm may be old, but it rocks features I've never seen anywhere else.
+In this way, it is a bit like Emacs - it plays in a league of its own.
+
+{{< image class="pull-left" alt="A 2x2 grid" file="fvwm-desktops.png" >}}
+Desks and pages
+{{< /image >}}
+
+We are pretty used to having multiple virtual desktops, even Windows has them.
+Those are called `desks` here - a separate workspace.
+But each desk is separated into multiple `pages` you can move to by moving the pointer to the edge of screen.
+Kind of like RTS game, where you scroll the map the same way.
+Therefore, the virtual desktop is larger than the physical screen.
+The size here is 2x2.
+You can, of course, move windows between pages by dragging them.
+
+This will be difficult to adjust.
+First, by default there is no keyboard control.
+Second, when scrolling, the mouse pointer maintains its virtual position - so, you move the screen down to move below and the cursor moves to the top of the screen.
+Thirdly, a scroll is not always the same size - sometimes I move a full page down, sometimes I am in-between two.
+I have no idea how to use this feature.
+It is as cool as confusing.
+
+Mouse centrism doesn't end here.
+Click on wallpaper with any mouse button to see a dedicated menu.
+
+{{< image class="pull-left" alt="A 2x2 grid" file="fvwm-winops.png" >}}
+Windows operations
+{{< /image >}}
+
+Even though you can resize, move, and so on every window by interacting with it, it's also available from this menu.
+You first select what you want to achieve, then click the window and perform the action.
+Fvwm is a child of TWM, which is the default WM for Xorg and this how it was done it there.
+
+Note, the "(un)" prefix - those work as switches, not flags.
+
+Iconified is just like "hiding" windows in other WM.
+Shading hides the window, living only title bar.
+Sticky windows will be present on all pages.
+You can also move the window to given desktop/page, and define Y position relative to other windows.
+
+{{< image class="pull-right" alt="A 2x2 grid" file="fvwm-fvwm.png" >}}
+The Fvwm menu
+{{< /image >}}
+
+The second menu is more of what I would expect.
+You can run programs (list is loaded dynamically), open XTerm.
+In my case "Run Command" opened dmenu, which was a huge surprise.
+
+Then you've got the "Fvwm prompt" with is a command line way to interact with the window manager.
+You can change the wallpaper, open Fvwm related man pages and copy your config to clipboard.
+For now, I have no config, so this will come later.
+
+The last three options allow you to refresh (redraw all windows), restart Fvwm without killing running programs and quit Fvwm completely.
+
+{{< image class="centered" alt="A 2x2 grid" file="fvwm-appswitcher.png" >}}
+Application switcher
+{{< /image >}}
+
+Maybe the one straight-forward one: app switcher.
+Switching app will move you to page on desk with given application, and activate it
+
+So, this is out-of-the-box experience with Fvwm.
+It's different from anything I've used recently.
+From what I've been told, anything here can be adjusted, so I'll start working on my config file soon.
+As for now, I have to get used to paging as it's the one thing which I have no idea how to use.
+
+[^fn:1]: Datagubbe is one of the sites which inspired me to start my own.
+ It's outstanding!
diff --git a/content/blog/2024/re-microdosing-google-yt.md b/content/blog/2024/re-microdosing-google-yt.md
new file mode 100644
index 0000000..7f5790d
--- /dev/null
+++ b/content/blog/2024/re-microdosing-google-yt.md
@@ -0,0 +1,29 @@
++++
+title = "Replies to my last post about Youtube"
+author = ["Michał Sapka"]
+date = 2024-09-03T16:03:00+02:00
+categories = ["blog"]
+draft = false
+weight = 2001
+image_dir = "blog/images"
+image_max_width = 600
+abstract = "Replies from readers"
++++
+
+A few days ago I asked my readers about ways they used to [stop Google Youtube addiction.](https://michal.sapka.me/blog/2024/microdosing-google-yt/)
+To my surprise, people contacted me.
+There **are** people reading this site and I could not be happier.
+
+It seem there are two ways people are addressing the problem:
+
+1. Remove algorithm.
+ Be it via browser plugin that blocks rendering of proposed videos, or removing the site all together using RSS.
+ I've tried those and failed.
+
+2. Relegate YT to a single device.
+ You watch the videos only on a tablet or the TV.
+ This is the expensive option.
+
+I don't have a tablet, and my TV is where my kid plays with his toys.
+Guess I'll retry all the from the first proposal.
+I'll remove all algorithms from my YT, and then see what the future will bring.
diff --git a/content/brain-rot/fantasy/chronicles-of-amber/guns-of-avalon-1971.md b/content/brain-rot/fantasy/chronicles-of-amber/guns-of-avalon-1971.md
index 1ac4524..539a10e 100644
--- a/content/brain-rot/fantasy/chronicles-of-amber/guns-of-avalon-1971.md
+++ b/content/brain-rot/fantasy/chronicles-of-amber/guns-of-avalon-1971.md
@@ -7,7 +7,7 @@ draft = false
weight = 3002
image_dir = "brain-rot/screenshots"
image_max_width = 765
-abstract = "My short revoew"
+abstract = "My short review"
rating = 4
image = "brain-rot/covers/guns-of-avalon.jpg"
[menu]
diff --git a/content/brain-rot/fantasy/chronicles-of-amber/hand-of-oberon-1976.md b/content/brain-rot/fantasy/chronicles-of-amber/hand-of-oberon-1976.md
new file mode 100644
index 0000000..a0fe60f
--- /dev/null
+++ b/content/brain-rot/fantasy/chronicles-of-amber/hand-of-oberon-1976.md
@@ -0,0 +1,27 @@
++++
+title = "Hand of Oberon (Roger Zelazny, 1976)"
+author = ["Michał Sapka"]
+categories = ["brainrot"]
+draft = false
+weight = 3004
+image_dir = "brain-rot/screenshots"
+image_max_width = 765
+abstract = "My short revoew"
+rating = 4
+image = "brain-rot/covers/hand-of-oberon.jpg"
+[menu]
+ [menu.brain-rot-fantasy-amber]
+ weight = 3004
+ identifier = "hand-of-oberon-roger-zelazny-1976"
++++
+
+The plot tickens!
+We end where we left of: turns out that Amber is the home of the original Pattern, which is badily damaged and we need to fix it.
+
+I think I start to understand why I find _Chronicles_ so particular, yet I can't put it away.
+The volumes here are not volumes with and beggining and end.
+It's closer to modern day TV, where you get an interesting hook at the end, the middle is ok-ish but the end makes you hungry for the next episode.
+As much as I hate that _binge-watching_ formula, I have nothing against it here.
+Fantasy books rarely make anyone rich, but a man's gotta eat.
+The length of each volume here also doesn't make it any worse, as they all about 200 pages long.
+Brandon Sanderson's signature is longer than that.
diff --git a/content/brain-rot/fantasy/chronicles-of-amber/sign-of-the-unicorn-1975.md b/content/brain-rot/fantasy/chronicles-of-amber/sign-of-the-unicorn-1975.md
new file mode 100644
index 0000000..c26f596
--- /dev/null
+++ b/content/brain-rot/fantasy/chronicles-of-amber/sign-of-the-unicorn-1975.md
@@ -0,0 +1,41 @@
++++
+title = "Sign of the Unicorn (Roger Zelazny, 1975)"
+author = ["Michał Sapka"]
+categories = ["brainrot"]
+draft = true
+weight = 3003
+image_dir = "brain-rot/screenshots"
+image_max_width = 765
+abstract = "My short review"
+rating = 4
+image = "brain-rot/covers/sign-of-the-unicorn.jpg"
+[menu]
+ [menu.brain-rot-fantasy-amber]
+ weight = 3003
+ identifier = "sign-of-the-unicorn-roger-zelazny-1975"
++++
+
+We are halfay through the Corwin saga and Zelazny decides to step up.
+The first book were a linear sprint to the end.
+Sign of the Unicorn is much slower for one.
+But it also marks the point when Roger finally convinced me the he understands the word he creates.
+
+After the battle with his brother, Corwin is faced with a murder of _another_ brother.
+This does not lead to yeat another run through the Shadows to buy nukes.
+In fact most of this volume is spend talking.
+We have a mystery, the family secrets are comming out.
+
+We've got intrigue, we've got drama, we've got betrayal.
+We even learn who stands behind Corwin's accident which happen before the start of _Nine Princess_.
+
+This is the best part of _Chronicles of Amber_ yet, because Zelazny seems to address most of downided the earlier boks had.
+Characters now became actual persons, with motivation and aspirations.
+The world building is sidestepping for character bulding, and I for one am fully for this.
+
+As a result, the stakes are also different.
+We assumed that all the Black Road problems resulted from Corwin's curse - but there are multiple layers bellow that.
+In fact a lot of what we though we knew turns out to be wrong.
+
+The only downside, at this point, is that everyone important is Corwin's relative or aquaitance.
+I get that if you got your position of power purerly from the family, the same family will be the center of your life, but _come on!_.
+I want to get to know someone else!