utorak, 18. prosinca 2012.

Alternative for .NET reflector

As .Net reflector  went to commercial i was looking for an alternative for getting the .NET code out of exe or dll. Sometimes you just need it :)

Well there is usefull free alternative named ILSpy.

ILSpy is the open source.NET assembly browser and decompiler.

My recomendation is to try it if you need something like that for free.

Link to page:

http://ilspy.net/


Jquery Nggallery Cycle Wordpress plugin- rotating images

Jj-ngg-jquery-cycle wordpress plugin is plugin for linking to created nggallery in wordpress and showing it as
dinamically moving images.

Shortcode for plugin to use on page is:

[jj-ngg-jquery-cycle html_id="about-cycle" gallery="1" width="600" height="400" timeout="2000" speed="1000" fit="1" ]

and this assumes that you have created nggallery with id = 1 and put some images inside.

There is also a posibility to use onBefore callback of this plugin. It lets you do something before images changes.

If you look at your page source where you have put the plugin it will show you something like this:



  jQuery('div#about-cycle').jjcycle({timeout: 2000,speed: 1000,height: 400,fit: 1});


This is the code that plugin inserts into html of your page. To use onBefore Callback you can add to your page something like this

jQuery(document).ready(function(){
jQuery('div#about-cycle').jjcycle({before:onBefore});
});
function onBefore() { 
//do something here before image changes
}


Simple plugin yet creative.

You can read more about this plugin on 

 

ponedjeljak, 17. prosinca 2012.

Wordpress plugin for redirecting page review


PAGE LINK TO plugin is a wordpress plugin that allows you to as the title says link page to another page
(either worpress internal or external) .
The primary use of this pugin for me was that i have used it in navigational menus to link parent to specific sub page 
if parent doesnt contain any relevant content.

Simple and GREAT A++.

http://wordpress.org/extend/plugins/page-links-to/


So...

Lately i have been orienting to wordpress and i will have couple of interesting things to share with you

I will in some cases dive deep into wordpress and in some it will be just simple example of of using worpress plugins that i found useful