Software / Technology Tips

Capturing Signature in Rhomobile Application

Introduction: In Rhomobile, we have the ability to capture signature using the Signature API. The signature API opens a full screen view where user draws its signature and then press the use bytton to store it. Description: First of all, on the controller, we need to call the take method ofSignatureCapture API to show the…

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

How to use Navigation Template in Windows store App using WinJs

Windows Store apps uses the single-page navigation model. where we use a single page for our app and load additional data into that page as needed. We still split our application into multiple files, but instead of moving from page to page, our app loads other documents into the main page. Because your app’s main…

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

Use MySQL DB for your rails Application ( Windows)

Here I am assuming ruby on rails setup + MySQL Database has been installed in your windows machine. We will follow couple of steps and will use MySQL Database for our rails application. Step -1: $ rails new mySQL_Example –database=mysql #by applying –database=mysql parameter, check your Gemfile, it must include gem ‘mysql2’. our procedure seems…

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

Cleaning Bombed Web Mail Account Using iMacros Automation

In one of my previous tips I did a review on Firefox extension iMacro, the download URL and other information can be found here. In this tip I will demonstrate how iMacro can be used to clean your bombed mail inbox. If you have already installed iMacro, fire up Mozilla Firefox (or Internet Explorerif you…

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

How To Use The State Property Of WinJS.Navigation

How to use the  WinJS.Navigation.navigate function state  property for transfering data from one page to other pages.Generally the WinJS.Navigation.navigate function can take the parameter of object Type like place and state.The palce to navigate to. Generally the place is a string containing the URL, but it may be anything.The state is a user-defined object that…

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

Use of PHP serializer in Python

2)Example:Method of serialization the data. >>> from phpserialize import * >>> obj = dumps(“Hello World”) >>> loads(obj) ‘Hello World’ Due to the fact that PHP doesn’t know the concept of lists, lists are serialized like hash-maps in PHP.  As a matter of fact the reverse value of a serialized list is a dict. >>> loads(dumps(range(2)))…

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

How to Apply Dynamic Themes In Silverlight

Instead of applying static styles at each and every control of a silverlight page, we can dynamically apply Themes at Application level using following steps.. 1. Create a Themes (or any other name) Folder inside your silverlight application. 2. Add Silverlight Resource Dictionary files like Blue.xaml, Gray.xaml inside that Folder. 3. Define your Styles inside…

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

Code Review Checklist

Control Flow Related: 1.Are all the conditional paths reachable? 2.Are all the individual conditions in a complex conditions separately evaluated? 3.If there is a nested IF statement, are the THEN and ELSE parts appropriately delimited? 4. In the case of a multi-way branch like SWITCH/CASE statement, is a default clause provided? Are the breaks after…

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

Adding Tooltip to Dynamically created Shape/Path in Silverlight

As per my client requirement I have to create dymanic shapes like Path in the Silverlight to show the different discount label  for the different sales data labels I can create theis dynamic paths in two ways. 1.By creating dynamic Xaml and  using the Xaml.Reader in the code behind . StringBuilder pathData = new StringBuilder();…

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

Add voice and legs to content : Transforming RSS feeds to Podcast

If you do a lot of reading on the Web, haven’t you felt the necessity of a service that could read the article out to you? In fact, wouldn’t it be cool if you could receive information and updates on specific topics even if you are on the move? And wouldn’t it be uber-cool if…

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