Just a small announcement that a WordPress plugin has been committed for Prism Syntax Highlighter. I liked the plugin as it is really lightweight and fast.
The new plugin will allow you to post markup without manually changing the code to post online. What is required is just installation and… (Continue)
Prism is a lightweight and fast JavaScript based Syntax Highlighter. It is written based on HTML5 standard. It uses <code class="language-xxxx"></code> for posting code. Before <code>, it needs <pre>. Pre tag is required for backward compatibility. We should use <pre> as wherever JavaScript does not work, <pre> will work and… (Continue)
I was looking for plugin or any means to track change made in HTML DOM dynamically. JavaScript of any kind can change DOM at run time. It is generally difficult to know what got changed and where.
Finally at one good day I got a Firefox Add-on, which tells me… (Continue)
Make reading easier online article on web pages with reader plugins. These plugins are available on both Firefox and Chrome browsers.
I have found two plugins for reading pages with lots of data easier. One is iReader and another is just Reader. iReader is good one.
Compared to background article,… (Continue)
I was reading an article and read about plugin. I came to know that plugin exists in YUI3. Then the question come to my mind what to do with plugins in YUI3. Widget are already there.
As I read here, Plugins are for atomic functionality and not for a set… (Continue)
Alexa Sparky Firefox plugin is a tool used for website's SEO analysis. It tells about Site's Traffic Stats, Search Analysis, Audience and other. You can login to amazon site and review your favorite site as well. Alexa Sparky is a Amazon product.
It helps me in seeing a website's worth,… (Continue)
Simple Tags By Amaury Balmer was the culprit in crashing my blog on Save. Whenever I tried to save anything, I used to see blank page on Admin side after update to WordPress version 3.2.1. Simple tags plugin is for
adding Extended Tagging for WordPress 3.1 : Suggested Tags, Mass… (Continue)
I need to disable a WordPress plugin called Popularity Contest. It send post request on each page view to collect the popularity of a web page. The plugin uses JQuery code to do that.
jQuery.post("index.php",{ak_action:"api_record_view", ids: AKPC_IDS, type:"'.$type.'"}, false, "json");
With good number of visitors already visiting satya-weblog.com, this extra… (Continue)
This is another post regarding design patterns. This time it is observer design pattern which is helpful in developing system having plugin facility and subscription based services. I will present example in PHP for Observer design pattern which is taken from Aaron Saray's Professional PHP Design Patterns book on design… (Continue)
Writing smarty plugin is very easy. It is just like writing a custom function for Smarty. Only work you need to do is to name it differently. The plugin name is of the pattern:
function smarty_block_yourName($params, $content, &$smarty) {}
After creating a function like the above, just drop the file… (Continue)