Winamp DSP plugin error loading plugin and odd strange characters

Before starting to make my own Winamp plugins, I tried compiling an existing plugin DLL from source-code in my current setup, thus testing if my setup was working. I used the Beginner Basic Plugin Guide as a starting point for my solution in Visual Studio 2012. That seemed to work. I then compiled the resteless_dsp … Read moreWinamp DSP plugin error loading plugin and odd strange characters

Compile error Winamp basic plugin example in Visual Studio 2012

When you are learning the Beginner’s Basic Plugin tutorial, in order to create your first basic general plugin for Winamp, you might run into a compile error right away. While using Visual Studio 2012 and creating the project as described in the tutorial, the first compile gave me this error: 1>—— Build started: Project: gen_myplugin, … Read moreCompile error Winamp basic plugin example in Visual Studio 2012

Bootstrap Datepicker format is ignored (bootstrap-datepicker)

Well, sometimes the way they tell you how to do it, is wrong… You make a nifty date picker, using the bootstrap-datepicker.js and you call the datepicker via javascript, something like this: $(‘.datepicker’).datepicker() You end up having dates in “mm-dd-yy” format. To change this to “dd-mm-yy” format, you should do it like this: $(‘.datepicker’).datepicker({ dateFormat: … Read moreBootstrap Datepicker format is ignored (bootstrap-datepicker)