EnlighterJS CSS: Syntax Highlighter Basic Examples of CSS Language in all available themes at the time of making this post. Language: CSS, Theme: Classic /* buttons used in codegroups + toolbar */ .enlighter-btn{ display: inline-block; margin: 0px 5px 0px 5px;…
Category: Tools
Transfer files via ssh from your server to Dropbox
Server to Dropbox – Sometime it is tedious to download files from your server and then uploading to your dropbox via sync since it takes long time. In this post I will show you how you can quickly transfer files to…
Dropzone Child elements are not clickable for upload
When attaching the .dropzone() object via jQuery, generally it does not allow you to click child elements and open the upload dialog.
Hindi Phonetic Typing Tool for MS Word
Since I need to type in Hindi (Devnagari script) frequently and since I am not any good at typing in traditional Hindi keyboard I have to depend upon some Hindi Phonetic Typing Tool as my only long term savior and…
Convert Hindi to Unicode (Web) content online
If you are looking for Hindi Phonetic Typing Tool support, check this post instead. This is a web tool to convert content written using Hindi fonts such as Kruti Dev 10, Krishna etc. In first text field given here you paste…
Capitalize, Uppercase, Lowercase Online
Different code editors do have different keyboard shortcuts to do Capitalize, Uppercase and Lowercase of text. Generally, i use EditPlus as code editor which has shortcuts for uppercase and lowercase but it does not seem to have a shortcut or…
Redirect to a Different URL using .htaccess
A straight forward redirection using .htaccess. Note that the domain name should be omitted from From address and it should always be there in To address, even if the redirection is on same server. [code]<IfModule mod_rewrite.c> RewriteEngine On redirect 301…
Useful url rewriting examples using .htaccess
1)Rewriting product.php?id=12 to product-12.html It is a simple redirection in which .php extension is hidden from the browser’s address bar and dynamic url (containing “?” character) is converted into a static URL.
Creating a module in ActiveCollab3
One page guide on creating a new modules to create home screen widget in ActiveCollab3 application. First we need to create a directory for our module. We are going to create it under a /path/to/activecollab/custom/modules directory (where /path/to/activecollab is full…
An advanced HTML to PDF conversion using ezpdf php class
Posting a link to the working example of HTML Form to PDF using “ezpdf” php class. I added some code to this class in order to create more advanced HTML tables cells with borders as shown in the output PDF…