3 Years ago I made a short post about how to Record Audio in the Browser and store the result on a the server using Django. Recently, I have updated the used library and also supported Video Recording. Luckily, I didn’t really have to change the Backend at all, nor the upload function. I am […]
Code
Record Audio in Browser using RecorderJS and upload to Django Server Backend
If you want to record Audio samples in your browser without using Flash you probably already found RecorderJS or something similar. However no example showed how to transmit the recorded data to a server. Usually all examples create a blob that the user can download. I will show you a very simple example based on […]
django-contact-form Full Tutorial / Custom Example in Django 1.7
If you are just starting out with Django you might be struggling with adding 3rd Party Apps due to the lack of documentaton. django-contact-form has at least some documentation. At least I didn’t quite knew how to customize the contact form as it doesn’t come with any templates. I will show you all the basic […]
Jenkins OutOfMemory Error under Windows (XAMPP)

A lot of people get this OutOfMemory error, even with small projects. If you google there are a lot of pages that tell you what to do, there are two pitfalls however. Under Windows you need to edit catalina.bat NOT catalina.sh! And second, if you found entry about it and still wondering why it doesn’t […]
JSP EL hate!
I nearly spend an hour trying to debug why the hell my EL {i} was not evaluated but instead printed as plain text on HTML. For all other pages / projects it worked. Well for some reason I needed to add <%@ page isELIgnored=”false” %> to my Page directive. Not sure what changed this time, […]