Software / Technology Tips

Office 365 – SharePoint Online

What is Office 365 Office 365 is the online version of Microsoft Office Products and provides the Microsoft Online Services. It helps the users to access to emails,sharepoint sites, documents and calendars from anywhere so the user is always up to date. Office 365 nearly support any device (including PC, Mac, Windows Phone, iPhone, Android,…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Programmatically Changing an Asynchronous Eventhandler to Synchronous Eventhandler in Sharepoint 2010

This is a new feature in SP 2010. We can’t implement the same thing with the older versions. We know there are two type of event receivers in sharepoint Synchronous and Asynchronous. Synchronous event will work before the event is completed and Asynchronous event will work after the event is completed. Let’s see how Changing…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

How do I add jobs to cron under Linux or UNIX ?

What is Cron Cron is  a daemon process,that enables Linux/Unix users to execute commands or scripts (groups of commands) automatically at a specified time/date.which means it runs continuously in the background, waiting to run a specified operation at predefined times or when specific events occur.. Crontab crontab is a Unix command that creates or modifies…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Creating a 'Customer' record using SuiteScript in Netsuite

We can use the ‘nlapiCreateRecord’ Netsuite API to create any new Netsuite record via SuiteScript. This API seems very easy to use and understand for a Netsuite developer. But for some records we need to figure out why this API is not working or why is it throwing some error like ‘USER_ERROR’. While creating a…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

More about breakpoints

During debugging processes, breakpoints are used normally to halt execution at a particular point( most of the times, to see the values of the variable i.e. to check them if they are right ). But we can do something more to make our break points intelligent. If you are working on Visual studio, the following…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

ASP.Net Validators within Sharepoint

Most of the times we have requirements of adding different client side validations on the web pages and the easiest way to achieve this in ASP.Net is to use the existing set of validator controls. In SharePoint when we design custom webparts which takes some data as input, we might need to add some client…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Custom layout template in Magento

Magento as a complete e-commerce package contains “3column template, 2column with right bar, 2column with left bar, 1 column” page templates as default templates that can be applied to the store view pages. Some scenario will appear in which it requires either a completely new layout template for the page or the same template with…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

URL mapping for multiple zones in SharePoint

SharePoint helps us create multiple zones for a single website e.g. Intranet (accessed only within an organization), Extranet (accessed within an organization + few limited users over web), Internet (mainly for public users), etc. Every SharePoint website has its default start page set as default.aspx. Even if we have separate zones for a website but…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Converting integer values to the values which have comma delimiters

If we have an integer value say 123456789 to display the price of some commodity and we need to display it in the format like 123,456,789 then we can use NSNumberFormatter and then set its number style. NSNumberFormatter has the following number Styles: kCFNumberFormatterNoStyle, kCFNumberFormatterDecimalStyle, kCFNumberFormatterCurrencyStyle, kCFNumberFormatterPercentStyle, kCFNumberFormatterScientificStyle, kCFNumberFormatterSpellOutStyle. We can set the above number…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!

Adding Smileys (emotions) to Openfire WebChat

In my previous post I had described about the setup and run Live Chat with openfire webchat . Here is the tip to add the Smileys to the webchat . In my previous post we were adding Live Chat facility to our web application with the help of Openfire and WebChat. If you configure it…

read more
150 150 Burnignorance | Where Minds Meet And Sparks Fly!