This commit is contained in:
Miloslav Ciz 2024-08-26 12:26:56 +02:00
parent 8e2f22bfc7
commit 9df795a150
8 changed files with 1821 additions and 1818 deletions

View file

@ -18,6 +18,7 @@ Apparently the term *KISS* originated in the US Army plane engineering: the plan
- Implementing a web left-right sweeping image gallery with HTML [iframe](iframe.md) instead of some overcomplicated [JavaScript](js.md) library. { Example stolen from [reactionary software](reactionary_software.md) website. ~drummyfish }
- Supporting only [ASCII](ascii.md) (or something like [ISO 8859-1](iso88591.md)) instead of [Unicode](unicode.md), it is [good enough](good_enough.md).
- Using a plain text flat file instead of a [database](database.md) system.
- In [programming](programming.md) simply using identifier prefixes instead of [namespaces](namespace.md) which require another feature to be added to the language. This is done e.g. by [SDL](sdl.md) -- all functions from the library start with `SDL`, which prevents [collisions](collision.md) with user identifiers.
- Using [markdown](markdown.md) for creating documents, as opposed to using office programs such as [Libreoffice](libreoffice.md).
- Using a trivial [shell](shell.md) script for compiling your programs rather than a complex build system such as [CMake](cmake.md).
- Using [ASCII art](ascii_art.md) instead of bitmap images.