Desinerd : Dipankar's Blog

Installing huginn on ubuntu 20.04

Published: (Updated: ) in Articles, Technical, , , , by . Leave a Comment on Installing huginn on ubuntu 20.04.

The default guide for Huginn installation works pretty well. The only part where you do get stuck is So what really happens is that the console looks like it stuck, which is quite frustrating. Lets say you force quit this (Crtl^C). Try running it again and you will get an error like. So a bit […]

Gotcha with exporting MySQL tables for windows

Published: in Articles, Technical, , , , , , , by . Leave a Comment on Gotcha with exporting MySQL tables for windows.

I encountered some interesting issues when pulling out CSV from my MySQL databases. The core issue was the csv generated was not seemingly compatible with the various spreadsheet readers in Windows. After having a closer look at the file, it turns out to be an encoding issue clearly. As the database was Latin1 encoded, the […]

Exporting MySQL tables and databases

Published: in Articles, Technical, , , , , by . Leave a Comment on Exporting MySQL tables and databases.

Here are the ways you can export tables and databases, each of them have their advantages and disadvantages depending on the task at hand. We will list out each with examples and discuss them. We will assume that the database name is D and table name is T. 1.  Going native with SQL and generating […]

Aliexpress : Experiences and improvements

Published: in Technical, , , , , , , , by . Leave a Comment on Aliexpress : Experiences and improvements.

I have been using Aliexpress to buy parts that I am not able to locate at Nehru place [New Delhi, India] especially laptop batteries for older laptops. It has been a pretty smooth experience in terms of ordering, however it is a fairly weak experience when it comes to the shipping. I had ordered 3 […]

haiku as your desktop

Published: in Technical, , , , , , , , , by . Leave a Comment on haiku as your desktop.

For all the people who have been following the haiku project, it is truly playing out as a viable alternative to the desktop wars with Linux. In my opinion there were only a few that could have beaten the windows dominance, one was the photonGUI and then the BeOS. Turns out the Mac has won […]

Using Motorola E6 or A1200 with kannel

Published: in Articles, Technical, , , , , by . Leave a Comment on Using Motorola E6 or A1200 with kannel.

So for all the people who do not want to learn AT commands to get their old MotoRockr [aka motorola e6] and A1200 working with your kannel setup to send/receive MMS and SMS here is the kannel.conf and modems.conf. The important part is the modems.conf which has the correct AT commands to receive SMSes. kannel.conf # […]

Support and PHP

Published: in Technical, , , , , , by . Leave a Comment on Support and PHP.

So got to setting up OTRS, neat email based support system and it works pretty well it seems. There are some issues setting it up initially, but it integrates very well into your support email ! Should have thought of using it for kwippy once i think about it he he. Just managed to get […]

GD Library Error: Imagecreatetruecolor Does Not Exist

Published: in Technical, , , , , , by . 1 Comment on GD Library Error: Imagecreatetruecolor Does Not Exist.

Well the simplest way of solving this is to run sudo apt-get install php5-gd That will install the necessary libraries that you need to keep continuing. If you are in windows then you need to go  to your php.ini and uncomment the following lines ;extension=php_gd.dll ;extension=php_gd2.dll [just remove the ; to uncomment them] Hope that […]

Cron issues on drupal

Published: in Technical, , , , , , , , by . 1 Comment on Cron issues on drupal.

Well here are some quick ways of solving your “cron not working properly issues in drupal” It has a semaphore which blocks the cron running, in my case the PHP script ran for too long and ate up too much memory. I needed to modify my php.ini to ensure that it could take up more […]

Installing Solr + Tomcat on RHEL5

Published: in Technical, , , , , , , by . 3 Comments on Installing Solr + Tomcat on RHEL5.

Installing JDK Download the latest Sun JDK RPM. Go to java.sun.com and navigate to the downloads page. As of this writing it is http://java.sun.com/javase/downloads/index.jsp If you are on a text console, you may want to use the “links” text browser rather than wget or curl. The Sun site requires you to accept a license agreement before […]