Software / Technology Tips

Remove scrolling of html content in WebView in Titanium.

We are generally using WebView to display our html content to our apps. For iPhone app, if we add any html content to a webView it works fine as we expected, but for android the UI get distorted little bit. Horizontal and vertical scrollbar appears to that view. To fix that all those issue use…

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

Retrieving symbol information from crash dump on Mac OS X

Whenever any application crashes the system’s crash reporter(/System/Library/CoreServices/Crash Reporter.app) creates a crash dump.A crash dump is the image of the state of the kernel that was in physical memory when the system failed. The crash log contains a stack trace with whatever program symbol information found in the application.And if the application has stripped of…

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

How to create a custom webservice in SharePoint?

There are numbers of out of the box web services present in SharePoint that will do most of the common tasks like methods for working with list ,sites and sub sites, users and groups etc. For using these web services you need to add the reference of the web service . But if your requirement…

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

Workflow to send Email

If we want to alert user when a new item is created or uploaded in a particular list or document library, we can do this by using workflow. First, we have to create a new project in Visual Studio 2008 by click on File–>New–>Project. Then, select Visual C#–>Office–>2007–>SharePoint 2007 Sequential Workflow. Now, give a name…

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

Restrict Triggering User Event script from Scheduled script in Netsuite

Have you ever noticed your User Event script gets executed automatically. If yes and you don’t want this to be happened, then this will help you. You may not have noticed that in netsuite, when a scheduled script runs it also triggers the User Event script. Even I had never noticed before. Some days before…

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

Embed good looking charts/graphs into your PDF

While working with chart/graphing solutions for creating good looking graphs, we face difficulty to embed the graphs into PDF reports. Charting solutions allow us to create HTML versions of charts and most of the good looking charts consist of basically javascript and flash content, which is normally difficult to embed into the PDFs. I would…

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

How to upload skin package in DNN site/ application

Skinning your is the most honored aspect of the administrative process. A skin is a collection of physical files (HTML, CSS etc) which decide the look and feel of your site. Admin or host of the site can be upload any skin package. Before I describe the process of how to upload skin package in…

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

Conversion of several document types to pdf

Recently i came across a requirement to convert a wide range of file formats (.doc, docx, .xls, .rtf , .odt, .ods, .ppt etc.) to pdf file in PHP. I found a very good utility to do this, which i would like to share with you all. Note: You need to have OpenOffice and unoconv installed…

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

How to run background(child) process in PHP without blocking the usual flow of parent process on Linux server

Using Shell command we can run a PHP script known as child process inside another PHP script known as Parent process without allowing the parent process to wait for the completion of the child process. This is mostly useful for running  crons in background  where the parent process calling the cron  will not wait for…

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

Auto Code Snippets in Visual Studio 2008

Background: Visual Studio 2008 makes life very easy for a developer. We can have complete code blocks created automatically. This is at a very advanced level for VB.NET and is still evolving for C#. More Details: Right Click and select “Insert Snippet” from the context menu use Ctrl + K + X and you will…

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