content management systems report

Again the question, which CMS should I learn or use for my pages? My colleague loves Joomla, and I prefer wordpress. He thought, that Joomla has a higher market share than wordpress … I haven’t agreed with him, so I searched for a trustful report. Here we are: w3techs has really good report! Oh, surprise WordPress is currently on top :D

October 21, 2015

problems with missing link to maxima files

hey folks, if maxima is complaining about missing files e.g. for the draw package, check your homedirectory and delete those old compiled files … rm -rf $HOME/.maxima/binary and then load it again … maybe it is also useful to check the workdir ;) load(draw); maxima_userdir; happy maths!

September 23, 2015

retrieve javadoc with wget

hey folks, sometimes the API documentation is not provided in a downloadable format, so I was a little bit frustated … here is a easy wget command to download the API from a URL: wget --recursive --no-clobber --page-requisites --html-extension --convert-links --restrict-file-names=windows --domains DOMAIN --no-parent http://DOMAIN/javadocs/ I’ve found it here!

September 6, 2015

Resizing linux filesystem without lvm

Hey, if you need to resize your virtual harddisk in your virtual guest system and you are not using LVM, then this tutorial may help you: Extending a root filesystem in Linux without LVM Here are the important steps for fast forward how-to: expand harddisk in vmware reallocate partition table with fdisk and restart your guest resize it with resize2fs Be aware that fdisk takes the same starting block, otherwise you will mess up your partition table!...

March 4, 2015

stm32f3-discovery - unknown chip id

hey folks, have you ever got this error message? relax, here [1] you will find further informations. After looking up the pin information in the user manual of the discovery board I was searching for the R36 to shorten it to VDD … yeah, here it is: so, take a screwdriver or something similiar, reset the board and start st-flash erase et voila, it works again! [1] https://github.com/texane/stlink/issues/107

December 18, 2014