The yamas for a happy, better life :) Truthfulness Non-harming Non-stealing Greadlessness Sexual Responsibility source - http://spoiledyogi.blogspot.com/
Dealing with Tragedy - Really good, valuable blog post from Spoiled Yogi.(http://spoiledyogi.blogspot.com/) This teaches us many things about the life. I watched the news coverage in horror last week. Like most of the country, I was stunned and confused. How could anyone harm children as young as the victims in the school shooting in Connecticut? My mind raced as the ...
I had to install a magento extension using FTP recently. These 2 blog posts helped me immensely regarding that. http://www.aschroder.com/2010/05/installing-a-magento-extension-manually-via-ftp-or-ssh/ http://www.groovecommerce.com/ecommerce-blog/magento/developer-toolbox-a-guide-for-installing-magento-extensions/ If you refer these two blogs I am sure you would be able to manually install an extension manually even though you are not a hardcore magento guy. Magento extensions are normally developed to insta
Happiness is my birthright. I forgive myself for all of my mistakes--and celebrate the lessons they let me learn. I am enough. What other people think of me is none of my business. When in doubt, breathe. Source http://spoiledyogi.blogspot.com/
Magento is a powerful open-source ecommerce web application. Recently I hosted magento in a Godaddy. While setting up magento in godaddy I ran into various issues. Here are some of the issues I faced and How I resolved them 1.) When site is installed you get the message "No input file specified" To resolve that you should renam php.ini file ...
Extention method to convert list to a observable Collection public static class CollectionExtensions { public static ObservableCollection ToObservableCollection(this IEnumerable coll) { var c = new ObservableCollection(); foreach (var e in coll) c.Add(e); return c; } }
Some times we may need to implement reports which has the ability to pick multiple parameters. If no parameter is selected it should run for all the values. Let's see how this can be achieved using Telerik Reporting. As an example let's consider a system which has banks and branches. Banks have many branches (One to many relationship). In this ...
In Sri Lanka every engineering graduate has to under go six months of industrial training at an engineering firm in order to fulfill the requirements of the degree programe. I had the oppertunity of joining WSO2 which is a one of the leading software companies in Sri Lanka. They develop middleware for web services. Other thing about WSO2 is that ...
I have created a silverlight custom control which can be used to select date in a user friendly way. It is similar to date selector control available to set birth date in facebook registration. Standard date picker control in silverlight and WPF is not user friendly and user has to perform several clicks to select a date. This control is ...
BCS Post Graduate Diploma in IT has a IT project which student should complete. Below is the project report which my wife has done. This can be use as a reference to do the BCS project reportBCS Post Graduate Project Report
Some times we may need to implement reports which has the ability to pick multiple parameters. If no parameter is selected it should run for all the values. Let's see how this can be achieved using Telerik Reporting. As an example let's consider a system which has banks and branches. Banks have many branches (One to many relationship). In this ...
Observable Collections are heavily used in Silverlight, WPF Applications instead of Lists. Observable Collection works essentially like a regular collection but it implements INotifyCollectionChanged and INotifyPropertyChanged interfaces. Because of that you can get to know when Collection is changed. ObservableCollection are optimized for databinding purposes.Sometimes you will need to convert your list to an ObservableCollection. This Extension method enables that. ...
Happiness is my birthright.I forgive myself for all of my mistakes--and celebrate the lessons they let me learn.I am enough. What other people think of me is none of my business.When in doubt, breathe.Source http://spoiledyogi.blogspot.com/
Dealing with Tragedy - Really good, valuable blog post from Spoiled Yogi.(http://spoiledyogi.blogspot.com/) This teaches us many things about the life.I watched the news coverage in horror last week. Like most of the country, I was stunned and confused. How could anyone harm children as young as the victims in the school shooting in Connecticut? My mind raced as the reporters ...
I had to install a magento extension using FTP recently. These 2 blog posts helped me immensely regarding that.http://www.aschroder.com/2010/05/installing-a-magento-extension-manually-via-ftp-or-ssh/http://www.groovecommerce.com/ecommerce-blog/magento/developer-toolbox-a-guide-for-installing-magento-extensions/If you refer these two blogs I am sure you would be able to manually install an extension manually even though you are not a hardcore magento guy.Magento extensions are normally developed to install t
Magento is a powerful open-source ecommerce web application. Recently I hosted magento in a Godaddy. While setting up magento in godaddy I ran into various issues. Here are some of the issues I faced and How I resolved them 1.) When site is installed you get the message "No input file specified" To resolve that you should renam php.ini file ...
I have created a silverlight custom control which can be used to select date in a user friendly way. It is similar to date selector control available to set birth date in facebook registration. Standard date picker control in silverlight and WPF is not user friendly and user has to perform several clicks to select a date. This control is ...
I wanted to encrypt some sensitive data in a Silverlight application and decry pt that in the server. Sergey Barskiy's has written a good post about that. Here is the code. Encryption functionality using System; using System.Text; using System.Security.Cryptography; using System.IO; namespace Encryption { public static class EncryptionUtility { /// /// Encrypt the data /// /// String to encrypt /// ...