try to have full links in rss to images

This commit is contained in:
Christoph Cullmann 2022-10-21 22:34:37 +02:00
parent d9364d2799
commit cbc70f4341
4 changed files with 8 additions and 7 deletions

View file

@ -43,7 +43,7 @@ Here [VIA](https://caniusevia.com/) comes into the picture.
For sure, it is an Electron based monster, but it provides a cross-platform UI for QMK based keyboards that allow on the fly configuration of at least the common things, like keymaps. For sure, it is an Electron based monster, but it provides a cross-platform UI for QMK based keyboards that allow on the fly configuration of at least the common things, like keymaps.
And it provides trivial things like testing all your keys, which is not that unneeded, given I was too dumb to properly install all my hot-swap switches ;) And it provides trivial things like testing all your keys, which is not that unneeded, given I was too dumb to properly install all my hot-swap switches ;)
![VIA UI](images/keyboard-via.png "VIA UI") ![VIA UI](/posts/keyboards-and-open-source/images/keyboard-via.png "VIA UI")
## Actual Keyboard? ## Actual Keyboard?
@ -74,14 +74,14 @@ At work I now have some [SA profile](https://www.keycaps.info/) set from Signatu
Funny enough, shipping from US did take 4 weeks, even with air express, USPS seems to be not the fasted variant of travel. Funny enough, shipping from US did take 4 weeks, even with air express, USPS seems to be not the fasted variant of travel.
If others play with the idea to buy there, I must confess the quality is really good, but they are expensive, if you don't require exotic layouts like German, I would rather go with some cheaper sets, for US ANSI even the cheapest I tried out were ok, without obvious faults. If others play with the idea to buy there, I must confess the quality is really good, but they are expensive, if you don't require exotic layouts like German, I would rather go with some cheaper sets, for US ANSI even the cheapest I tried out were ok, without obvious faults.
![Keychron Q1 Ice Cap Keycaps](images/keyboard-q1-work.jpg "Keychron Q1 Ice Cap Keycaps") ![Keychron Q1 Ice Cap Keycaps](/posts/keyboards-and-open-source/images/keyboard-q1-work.jpg "Keychron Q1 Ice Cap Keycaps")
If you look a bit more around on the picture you will see I have still my good old Nokia rubber ducky, a sole survivor from the time Nokia owned Qt :P If you look a bit more around on the picture you will see I have still my good old Nokia rubber ducky, a sole survivor from the time Nokia owned Qt :P
And no, I don't use a Mac, that is just one we use for our compile farm. And no, I don't use a Mac, that is just one we use for our compile farm.
At home I went with some [MT3 profile](https://matt3o.com/about-mt3-profile-and-devtty-set/) set without any legends, that is really cheap and funny enough did take only 4 days from US to Germany with standard UPS. At home I went with some [MT3 profile](https://matt3o.com/about-mt3-profile-and-devtty-set/) set without any legends, that is really cheap and funny enough did take only 4 days from US to Germany with standard UPS.
![Keychron Q1 MT3 /dev/tty Keycaps](images/keyboard-q1-home.jpg "Keychron Q1 MT3 /dev/tty Keycaps") ![Keychron Q1 MT3 /dev/tty Keycaps](/posts/keyboards-and-open-source/images/keyboard-q1-home.jpg "Keychron Q1 MT3 /dev/tty Keycaps")
:=) And no, no second Nokia ducky at home. :=) And no, no second Nokia ducky at home.

View file

@ -30,7 +30,7 @@ Unlike for my tries with the Q1, this time I just went the plain QMK route, with
The Planck board offers a nice platform for experiments, given the plain grid layer that allows really to freely shuffle all your keys and experiment with extreme layouts. The Planck board offers a nice platform for experiments, given the plain grid layer that allows really to freely shuffle all your keys and experiment with extreme layouts.
![Building the Planck keyboard](images/planck-building.webp "Building the Planck keyboard") ![Building the Planck keyboard](/posts/planck-and-qmk/images/planck-building.webp "Building the Planck keyboard")
## Install QMK on NixOS ## Install QMK on NixOS
@ -90,7 +90,7 @@ Below the state of a finalized Planck board with some more or less standard firs
It even plays a nice startup sound on powering up. It even plays a nice startup sound on powering up.
![Finalized Planck keyboard](images/planck-final.webp "Finalized Planck keyboard") ![Finalized Planck keyboard](/posts/planck-and-qmk/images/planck-final.webp "Finalized Planck keyboard")
My current keymap can be found on [GitHub](https://github.com/christoph-cullmann/qmk). My current keymap can be found on [GitHub](https://github.com/christoph-cullmann/qmk).

View file

@ -1 +1 @@
<img loading="lazy" src="{{ .Destination | safeURL }}" alt="{{ .Text }}" {{ with .Title}} title="{{ . }}" {{ end }} /> <img loading="lazy" src="{{ .Destination | safeURL | absURL }}" alt="{{ .Text }}" {{ with .Title}} title="{{ . }}" {{ end }} />

View file

@ -2,5 +2,6 @@ rm -rf themes
mkdir themes mkdir themes
git clone https://github.com/adityatelange/hugo-PaperMod themes/PaperMod --depth=1 git clone https://github.com/adityatelange/hugo-PaperMod themes/PaperMod --depth=1
rm -rf themes/PaperMod/.git* rm -rf themes/PaperMod/.git*
sed -i s@localStorage.setItem@//localStorage.setItem@g themes/PaperMod/layouts/partials/footer.html sed -i 's@localStorage.setItem@//localStorage.setItem@g' themes/PaperMod/layouts/partials/footer.html
sed -i 's@safeURL@safeURL | absURL@g' themes/PaperMod/layouts/_default/_markup/render-image.html
git add themes git add themes