User Tools

Site Tools


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)
  1. mylist = [64, 34, 25, 12, 22, 11, 90, 5]
  2.  
  3. n = len(mylist)
  4. for i in range(n-1):
  5. for j in range(n-i-1):
  6. if mylist[j] > mylist[j+1]:
  7. mylist[j], mylist[j+1] = mylist[j+1], mylist[j]
  8.  
  9. print(mylist)
dokuwiki.txt · Last modified: by rod