dokuwiki
This site is built on Dokuwiki, excellent software. Super simple yet very powerful. It's running on webhosting by Hetzner which can be had for ~1.6 EUR a month; I dare you to find something that efficient for Wordpress!
Excellent syntax highlighting support for technical articles. See below, syntax highlighting and even line numbers.
- Bubblesort algo (just a good name)
- mylist = [64, 34, 25, 12, 22, 11, 90, 5]
- n = len(mylist)
- for i in range(n-1):
- for j in range(n-i-1):
- if mylist[j] > mylist[j+1]:
- mylist[j], mylist[j+1] = mylist[j+1], mylist[j]
- print(mylist)
dokuwiki.txt · Last modified: by rod
