I just install Windows 8.1 on my home PC, installing SQL Server on it and found that activeds.dll file was missing. I haven’t install anything, just regular MS products and…
Author: Sumit Gupta
PDF Creation: wkhtmltopdf
In past I post about how good wkhtmltopdf is. I have used it for few of my projects. Really it is the cheapest [as it is open source and free]…
WhatsApp Messaging from Web
If you need to send WhatsApp message to your friend from Web, you need to find unofficial API as WhatsApp till date do not provide them, and do not allow…
How to Programmatically Add Multi Language Post in WordPress and WPML
I recently need to create wordpress post programmatically. It is so easy with wp_insert_post. However, the twist is how to add it using WPML for multi language support. WPML is…
Javascript Base64 Encode, Decode for UTF-8/unicode string
Complete article that works for me : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Base64_encoding_and_decoding Part where we encode from unicode/utf-8 is function utf8_to_b64( str ) { return window.btoa(unescape(encodeURIComponent( str ))); } function b64_to_utf8( str ) { return…
C#: Code to load Object from Database
It is often when managing old project that do not use ORM coding, we need to load object from database. In such scenarios it is quite boring to code all…
Experiment goes wrong
My blog was recently been taken out. I was experimenting on my Azure server that host the blog and accidently leave a unsecure port open on my server. Result, server…