kisscommunity

kisscommunity.bvnf.space site sources
git clone git://bvnf.space/home/kiss/kisscommunity.git
Log | Files | Refs | Submodules | README | LICENSE

commit 235c6b33b5202e786252fcfc439672d4e2bef38b
parent cc1b57129e055de0e766234b6a0f875ff89acd75
Author: phoebos <ben@bvnf.space>
Date:   Tue, 28 Apr 2026 17:03:18 +0100

fix more code blocks

Diffstat:
Mwiki/archive/blog/20191124a/index.md | 2+-
Mwiki/archive/blog/20191211a/index.md | 2+-
Mwiki/archive/blog/20200118a/index.md | 4++--
Mwiki/archive/blog/20200202a/index.md | 2+-
Mwiki/archive/blog/20200209a/index.md | 4++--
5 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/wiki/archive/blog/20191124a/index.md b/wiki/archive/blog/20191124a/index.md @@ -22,7 +22,7 @@ It has been a whole 6 months since I first started working on KISS! commit 0cda243d535f11e7c26b9182bc63e425deb5ba45 Author: Dylan Araps <dylan.araps@gmail.com> Date: Thu May 9 09:46:50 2019 +0300 - + new package manager experiment Assuming that I was the first user of KISS on hardware, Xorg, Firefox diff --git a/wiki/archive/blog/20191211a/index.md b/wiki/archive/blog/20191211a/index.md @@ -27,7 +27,7 @@ This client is based around the fact that the `iwd` daemon watches the network files in its configuration directory. iwc 0.2.1 - simple eiwd client. - + => [au]th [ssid] - Create network config. => [co]nnect [ssid] - Connect to an SSID. => [de]lete [ssid] - Delete a configured network. diff --git a/wiki/archive/blog/20200118a/index.md b/wiki/archive/blog/20200118a/index.md @@ -27,7 +27,7 @@ Source format: # git+URL git+https://github.com/dylanaraps/eiwd - + # git+URL#hash git+https://github.com/dylanaraps/eiwd#4a2d30bd1b053a9f1e4373d17c2ae6f3ccbc4148 @@ -35,7 +35,7 @@ Version: # Simply use git. git - + # Or use a hash if supplied to the source. 4a2d30bd1b053a9f1e4373d17c2ae6f3ccbc4148 diff --git a/wiki/archive/blog/20200202a/index.md b/wiki/archive/blog/20200202a/index.md @@ -70,7 +70,7 @@ coreutils in a single command. # The package manager will read each line from stdin. kiss a | grep ^coreutils | kiss a - - + # Running 'kiss a' will show the inverse of the above listing, # a long output of 'busybox *'. diff --git a/wiki/archive/blog/20200209a/index.md b/wiki/archive/blog/20200209a/index.md @@ -24,7 +24,7 @@ A simple script to set different `CFLAGS` for specific flags could look as follows. #!/bin/sh - + case $TYPE in pre-build) case $PKG in @@ -32,7 +32,7 @@ as follows. curl) export CFLAGS="-O3" ;; esac ;; - + post-build) # post-build code here. ;;