Thursday, December 31, 2009

Buying flats in Goa, India

When buying a flat in Goa whether its from a reputed builder or otherwise. there are a lot of things that need to be checked like water proofing, painting, tiles, taps, electrical switches and wiring. its best that before taking possession of the flat verify that everything is done as per the agreement.

After i booked a flat from "Kurtarkar Real Estates", before making the final payment and then taking possession of the flat, i had to do a lot of running around with the site engineer and the workers to make sure that everything was done according to the sale agreement. This would not be expected from a reputed builder but once they get the money its all the same.

You need to make sure that
  • the taps are fitted properly and there are no leaks at the joints.
  • All the electrical points acutally work.
  • The wash basin and kitchen sinks have the outlet pipes fitted properly and water does not leak from the joints.
  • its best to look for a flat during hte monsoon season from june to september that way you can be sure if water proofing was done properly or you will see the water seepage on the walls.

Thursday, November 12, 2009

Textures performing in Bangalore, India on 5th Dec 2009

Textures, Dutch progressive metallers, are confirmed to perform at the Deccan Rock Festival, which will take place at the Palace Ground in Bangalore on the 5th December 2009. Co-headlining the festival will be with "Amon Amarth", Swedish dealth metallers.





Wednesday, October 28, 2009

Dojo 1.3.0 combobox autocomplete with dynamic population of data from database

In Dojo 1.3.0 to refesh an ItemFileReadStore attached to a combobox, we need to
  • set attributes urlPreventCache="true" clearOnClose="true" for the ItemFileReadStore
  • call the close() and fetch() methods of ItemFileReadStore

The below snippets of code have been tested in IE 6 and Firefox 3.5.3

Somefile.jsp


<html>
...
<head>
<script type="text/javascript">
function setComboValue(evt)
{
var comboId = dijit.byId('comboId');
if (comboId && comboId.item)
{
comboId.attr('abbreviation', comboId.item.abbreviation);
}

}
function searchForValue(evt)
{
if (evt.keyCode == 38 || evt.keyCode == 40 || evt.keyCode == 13) {
//do nothing if up arrow, down arrow or enter keys are pressed
}
else
{
var comboId = dijit.byId('comboId');
comboId.store.url = "<%=request.getContextPath()%>/searchChar.htm?myParam=" + evt.target.value;
comboId.store._jsonFileUrl = "<%=request.getContextPath()%>/searchChar.htm?myParam=" + evt.target.value;
stateStore.close();
stateStore.fetch();
}
}

var requestContents = {
override: dijit.byId("comboId").attr('abbreviation')
};

dojo.xhrPost({
url: "/someUrlTOPost.htm",
content: requestContents,
handleAs: "json",
load: function(response, args){
if(response.errors != null) {
console.log("error returned..." + response)

}
else {

console.log("add successful...");
console.log(response);
//do something useful
}
},
error: function(response, args){


}
});
</scrip>
</head>
...
<div dojoType="dojo.data.ItemFileReadStore" jsId="stateStore"
urlPreventCache="true" clearOnClose="true" id="stateStore"
url="<%=request.getContextPath()%>/searchChar.htm?myParam="></div>

<input id="comboId" dojoType="dijit.form.ComboBox"
store="stateStore" autocomplete="false" hasDownArrow="false"
searchAttr="name" onkeyup="searchForValue" searchDelay="500"
onblur="setComboValue" name="abbreviation" />
....
</html>



Json Array for data store ItemFileReadStore

{
identifier:"id",
label: "name",
items: [
{name:"Alabama", label:"Alabama",id:"0"},
{name:"Alaska", label:"Alaska",id:"1"},
{name:"American Samoa", label:"American Samoa",id:"2"},
{name:"Arizona", label:"Arizona",id:"3"},
{name:"Arkansas", label:"Arkansas",id:"4"}
]
}


Refeshing an ItemFileReadStore
by Gary Acord

This is a pretty common need with a pretty simple solution. How do you clear out the existing Data in a store, and populate it with new Data in Dojo 1.2?

The solution is pretty easy. Let’s assume you have an ItemFileReadStore (this works with ItemFileWriteStore as well) named myStore.

This creates an ItemFileRead store and assigns it to the global variable myStore.

Then you can force it to reload as such:

myStore.close();
myStore.fetch();

If you need to change the url of the store (as of Dojo 1.2.3) you can do it like this:

myStore.close();
myStore._jsonFileUrl = newurl;
myStore.fetch();

… and if you have a grid bound to the store, force it to reload

myStore.close();
myStore.fetch();
myGrid._refresh();

Tuesday, October 6, 2009

SKINDRED touring India in Oct 2009

Welsh ragga-metallers SKINDRED have announced their first-ever tour of India. The band will spend the last week of October playing four shows in the country. The details are as follows:

Oct. 25 - The Great India October Festival - Bangalore
Oct. 27 - Hard Rock Café - Mumbai
Oct. 29 - Hard Rock Café - Delhi
Oct. 30 - Hard Rock Café - Bangalore

(source:blabbermouth.net)

Wednesday, September 30, 2009

MR. BIG Japan Tour 2009 Set List

at Kousei Nenkin Hall, Sapporo, Japan
  • Daddy, Brother, Lover, Little Boy
  • Take Cover
  • Green-Tinted Sixties Mind
  • Alive And Kickin’
  • Next Time Around
  • Hold Your Head Up
  • Just Take My Heart
  • Temperamental
  • Classical cover of Holst by Billy, Paul, Pat
  • Pat Torpey Solo incl. The Long And Winding Road, Beatles cover
  • Price You Gotta Pay
  • Stay Together
  • Wild World (Acoustic)
  • Goin’ Where The Wind Blows (Acoustic)
  • Take A Walk (Acoustic – Electric)
  • Paul Gilbert Solo on the Doubleneck
  • Instrumental guitar/bass battle on the Doublenecks (Paul + Billy)
  • The Whole World’s Gonna Know
  • Promise Her The Moon
  • Rock & Roll Over
  • Billy Sheehan Solo
  • Addicted To That Rush

Encore
  • To Be With You
  • Colorado Bulldog
  • I Love You Japan
  • Baba O’ Riley

Tuesday, September 29, 2009

Mr.BIG to tour india in October 2009

Mr.Big - The sensational Rock Super Group of the 90’s as part of their reunion tour will be touring India in october 2009. The band comprises of legendary bassist Billy Sheehan, soulful Eric Martin on vocals, versatile Pat Torpey on drums and guitar virtuoso Paul Gilbert.

Venues:
10th Oct 2009 Bangalore, India Palace Ground (Freeway 19)
12th Oct 2009 Shillong, India Polo Ground
14th Oct 2009 Dimapur, India DDSC Stadium


Javascript - defining and using custom events

This site has a good article that explains the creation and firing of custom javascript events without the use of 3rd party libraries.

Class
var CustomEvent = function() {
 //name of the event
 this.eventName = arguments[0];
 var mEventName = this.eventName;

 //function to call on event fire
 var eventAction = null;

 //subscribe a function to the event
 this.subscribe = function(fn) {
  eventAction = fn;
 };

 //fire the event
 this.fire = function(sender, eventArgs) {
  this.eventName = eventName2;
  if(eventAction != null) {
   eventAction(sender, eventArgs);
  }
  else {
   alert('There was no function subscribed to the ' + mEventName + ' event!');
  }
 };

Register event handlervar myEvent = new CustomEvent("my event");
myEvent.subscribe(function(sender, eventArgs) {
 alert(eventArgs.message);
});

Fire custom event
myEvent.fire(null, {
 message: 'you just witnessed the firing of a custom event called ' + this.eventName + '!'
});

Monday, September 28, 2009

"LOST ANGELS" to perform in India in 2009

LOST ANGELS, featuring singer John Corabi , guitarist Eric Dover, bassist Muddy Stardust and drummer Troy Patrick Farrell , has scheduled the following dates in India:

Sep. 29 - DSSC Stadium - Dimapur, India
Oct. 03 - JN Stadium - Shillong, India

More details to follow.

Tuesday, September 8, 2009

Porcupine Tree gig in Mumbai on 21st Dec 2009

As per their website, 'Porcupine Tree' will be performing in Mumbai, India on 21st December 2009 at the Mood Indigo festival, IIT Bombay.

Check for updates at http://www.moodi.org/ or http://www.porcupinetree.com/

Thursday, June 11, 2009

Oasis set list in Curitiba, Brazil (10th May 2009)

  • Fuckin’ In The Bushes
  • Rock ‘n’ Roll Star
  • Lyla
  • The Shock Of The Lightning
  • Cigarettes & Alcohol
  • The Meaning Of Soul
  • To Be Where There’s Life
  • Waiting For The Rapture
  • The Masterplan
  • Songbird
  • Slide Away
  • Morning Glory
  • Ain’t Got Nothin’
  • The Importance Of Being Idle
  • I’m Outta Time
  • Wonderwall
  • Supersonic
  • Don’t Look Back In Anger
  • Falling Down
  • Champagne Supernova
  • I Am The Walrus

QUEENSRŸCHE set list in Washington 2009

  • Neue Regel
  • The Whisper
  • I Dream in Infared (Never been played live before)
  • Screaming in Digital
  • Walk in the Shadows
  • I Will Remember
  • Surgical Strike
  • Sliver
  • The Killer
  • If I Were King
  • Man Down
  • Dead Man’s Words
  • Home Again
  • The Voice
  • Best I Can
  • The Thin Line
  • One and Only (Never been played live before)
  • Hand on Heart
  • Silent Lucidity
  • Jet City Woman
  • Anybody Listening?

ENCORE:
  • Empire
  • Take Hold of the Flame

Wednesday, June 3, 2009

Sightseeing / Tourist attactions in Goa, India

Beaches in North Goa:
  • Arambol
  • Morjim
  • Chapora
  • Vagator
  • Anjuna
  • Baga
  • Calangute
  • Candolim
  • Sinquerim
  • Bambolim
  • Miramar
  • Dona Paula
  • Keri
  • Ashwem
  • Mandrem
  • Vainguinim
  • Siridao

North Goa Churches
  • Reis Magos Church, Reis Magos.
  • Church of Our lady of Miracles, Mapusa
  • Church of Our Lady of Immaculate Conception, Panaji.
  • Church of St. Ana, Talaulim
  • Church of Mae de Deus, Saligao
  • Church of Our Lady of Immaculate Conception, Moira.
  • Church of Our Lady of the Rock of France, Brittona.
  • Se Cathedral, Old Goa
  • Church of St Francis of Assisi, Old Goa
  • Chapel of St. Catherine, Old Goa
  • Ruins of the Church of St Augustine, Old Goa
  • Basilica of Bom Jesus, Old Goa
  • Church of Convent of St. Monica, Old Goa
  • Church of Our Lady of the Rosary, Old Goa
  • Church of St. Cajetan, Old Goa
  • Chapel of St. Anthony, Old Goa
  • Church of Our Lady of the Mount, Old Goa
  • Pilar Seminary, Pilar
  • Saligao Seminary, Saligao
North Goa Temples
  • Shree Saptakoteshwar Temple, Narve
  • Shree Mahalaxmi Temple, Panaji
  • Shree Kalikadevi, Kansarpal
  • Shree Hanuman Temple, Mapusa
  • Shree Dattatraya Temple, Mapusa
  • Shree Shantadurga Temple, Pernem
  • Shree Devi Shravani, Advopal
  • Shree Sapteshwar-Bhagwati Temple, Mandrem
  • Shree Mahadev Bhumika, Sal
  • Shree Vittal Mandir, Sanquelim
  • Shree Dattatraya Temple, Sanquelim
  • Shree Rudreshwar Temple, Arvalem
  • Brahma Temple, Carambolim
  • Shree Gomateshwar devasthan, Brahmapur
  • Shree Kamakshi Temple, Shiroda
  • Shree Gopal Ganapathi, Farmagudi
  • Shree Mhalasa Narayani Temple, Mardol
  • Shree Mangueshi Temple, Mangueshi-Priol
  • Shree Laxminarsimha Temple, Nagueshi
  • Shree Mahalaxmi Temple, Bandode
  • Shree Ramnathi Temple, Ramnathi
  • Shree Devkrishna-Ravalnath, Marcela
  • Shree Shantadurga Temple, Kavlem
  • Shree Morajaee Temple, Pernem
  • Shree Bhagwati Temple, Pernem
  • Shree Betal Temple, Pernem
  • Shree Sanusthan Goudpadacharya, Kavlem
  • Shree Navdurga Temple, Madkai
North Goa Masjids
  • Safa Shahouri Masjid, Ponda
  • Jama Masjid, Panaji
  • Aga Khan Jamatkhana, Panaji

North Goa Museums, Monuments, Landmarks, etc
  • Secretariat building, Panaji
  • Abbe Faria statue, Panaji
  • Institute Menezes Braganza and Central Library, Panaji
  • Goa State Museum, Patto, Panaji
  • Altinho, Panaji
  • Goa Medical College, Panaji
  • Viceroy's Arch, Old Goa
  • Archeological Museum and portrait gallery, Old Goa
  • Fort Aguada, Sinquerim
  • Reis Magos Fort, Reis Magos
  • Chapora Fort, Chapora
  • Corjuem Fort, Corjuem
  • Terekhol Fort, Terekhol
  • Divar Island
  • Fontainhas place
  • Dandeli National Park
  • Divar Island
  • Idalcao Palace
North Goa Wildlife Sanctuaries, misc..
  • Mayem lake, Mayem
  • Aravalem Falls, Aravalem
  • Bondla Wildlife Sanctuary, Bondla
  • Bhagwan Mahavir Wildlife Sanctuary, Molem
  • Salim Ali Bird Sanctuary, Chorao
  • Dudhsagar Waterfalls, Dudhsagar
  • Kesarval springs, Kesarval


Beaches in South Goa:
  • Bogmalo
  • Majorda
  • Utorda
  • Colva
  • Benaulim
  • Varca
  • Mobor-Cavelossim
  • Canaguinim
  • Agonda
  • Palolem
  • Consaulim
  • Hollant
  • Velsao
  • Arossim
  • Betalbatim
  • Fatrade
  • Betul
  • Canaguinim
  • Cola
  • Colomb
  • Patnem
  • Rajbaga
  • Galjibaga

South Goa Churches
  • Church of Holy Spirit, Margao
  • Church of St. Alex, Curtorim
  • Rachol Seminary, Rachol

South Goa Temples
  • Shree Damodar Temple, Zambaulim
  • Shree Chandranath Temple, Paroda
  • Shree Navdurga Temple, Borim
  • Shree Shantadurga Temple, Fatorpa
  • Shree Mahadeva Temple, Tambdi Surla
  • Shree Mallikarjun Temple, Canacona
  • Shree Sanusthan Parthagali, Parthagali
  • Shree Damodar Temple, Vasco Da Gama

South Goa Masjids
  • Jama Masjid, Sanguem
  • Madina Masjid, Vasco da Gama
South Goa Museums , Monuments, Landmarks, etc
  • Naval Aviation Museum, Dabolim
  • Buddhist caves, Rivona
  • Cabo de Rama
  • Ponda Spice plantations ( Sahakari Spice Farm, Abyss Spice Farm, Savoi Spice Plantation)

South Goa Wildlife Sanctuaries, Misc..

  • Cottigao Wildlife Sanctuary, Cottigao

further details can be obtained at these links
http://www.goacentral.com/Goatravel/sightseeing.htm
http://www.goaholidayhomes.com/places-to-visit-in-goa.php

Detailed image from Goa tourism site.

Monday, April 27, 2009

Legal documents when buying land in Goa

Documents required for lawyer in Goa to prepare search document / legal opinion document

1. Survey plan
2. Form I & XIV
3. Title document (Sale deed/Gift Deed, Inventory Proceedings, Will and Succession Deed, Agreement of Sale or Lease Deed)
4. Inscription of the property
5. Description of the property
6. Cadastral plan (properties only)
7. Construction plan (apartments & villas)
8. Construction license (apartments & villas)
9. Approved sub-division plan (plots)
10 Conversion Sanad (apartments & villas and plots)
11. NoC - (Town and Country, PWD, CRZ authority)
12. NoC - sub division of plots (Final Noc - Panchayat)
13. Occupancy Certificate (apartments & villas)
14. Electricty and Water bills (apartments & villas and old houses)
15. House tax receipt ((apartments & villas and old portuguese houses)
16. Some documents are requisitioned only after perusal of the documents which make reference to other documents for eg. court proceedigns, mutation records, acquisition records etc.

Note: The lawyer does not undertake search in the Archives for documents at serial no. 4, 5 & 6, but they have associates who do the same. The rest of the documents are to be provided by the clients.

Saturday, April 25, 2009

Bob Dylan's 2009 tour set list

1. Cat's In The Well
2. It's All Over Now, Baby Blue
3. Things Have Changed
4. Boots Of Spanish Leather
5. The Levee's Gonna Break
6. Sugar Baby
7. Tweedle Dee & Tweedle Dum
8. Po' Boy
9. It's Alright, Ma (I'm Only Bleeding)
10. Make You Feel My Love
11. Highway 61 Revisited
12. Love Sick
13. Thunder On The Mountain
14. Like A Rolling Stone

(encore)
15. All Along The Watchtower
16. Spirit On The Water
17. Blowin' In The Wind

Tuesday, March 31, 2009

Bruce Springsteen Set-List 2009

  • Outlaw Pete
  • My Lucky Day
  • Night
  • Out in the Street
  • Working On a Dream
  • Johnny 99?
  • I Ain’t Got No Home
  • Good Eye
  • Radio Nowhere
  • Candy’s Room
  • Because the Night
  • Mary’s Place
  • The Wrestler
  • This Life
  • Long Walk Home
  • Surprise, Surprise
  • Badlands
  • No Surrender

Encore:
  • Hard Times Come Again No More
  • Mustang Sally (w/ John Eddie)
  • Thunder Road
  • Born to Run
  • American Land
  • Seven Nights to Rock

Snow Patrol Set-List 2009

  • If theres a rocket
  • Chocolate
  • Hands Open
  • Spitting Games
  • How to be dead
  • Golden Floor
  • Run
  • The planets bend between us
  • You could be happy
  • Shut Your eyes
  • Chasing Cars
  • Set the Fire to the third bar
  • Crack the Shutters
  • Take back the City
  • Open your eyes

Encore
  • The Lightening Strike
  • You’re all I have

ZZ Top Set-List 2009

  • Got Me Under Pressure
  • Waitin’ for the Bus
  • Jesus Just Left Chicago
  • Chevrolet
  • Pincushion
  • Future Blues
  • Cheap Sunglasses
  • I Need You Tonight
  • Catfish Blues
  • Foxey Lady
  • Heard It On The X
  • Just Got Paid
  • Gimme All Your Lovin’
  • Sharp Dressed Man
  • Legs
  • Jailhouse Rock
  • La Grange
  • Sloppy Drunk/Bar-B-Q Medley
  • Tush

The Killers set list 2009

  • spacemail
  • losing touch
  • somebody
  • smile
  • this is your life
  • extended intro -- joyride
  • i cant stay
  • bling
  • shadowplay
  • reasons
  • ruby
  • neon tiger
  • human
  • sams town (acoustic)
  • read my mind
  • brightside
  • all these things

  • dustland
  • bones
  • jenny
  • when you were young

Billy Joel Set list 2009

  • Angry younge man
  • Movin out
  • Zanzibar
  • Always a woman
  • S. F. A. I. R.
  • River of dreams
  • We didint start the fire
  • Still rock and roll to me
  • Only the good die younge

AC/DC Black Ice Tour set list 2009

1. Rock ‘N Roll Train
2. Hell Ain’t A Bad Place To Be
3. Back In Black
4. Stiff Upper Lip
5. Dirty Deeds Done Dirt Cheap
6. Thunderstruck
7. Hard As A Rock
8. The Jack
9. Hells Bells
10. Shoot To Thrill
11. You Shook Me All Night Long
12. TNT
13. Whole Lotta Rosie
14. Let There Be Rock
15. Highway To Hell
16. For Those About To Rock
17. Anything Goes
18. Big Jack
19. War Machine
20. Black Ice
21. Bad Boy Boogie

Tuesday, February 17, 2009

Iron Maiden set list for "Somewhere Back in Time World Tour" Bangalore 2009

Iron Maiden set list for "Somewhere Back in Time World Tour" in Bangalore on 15th Feb 2009

  • Churchill's Speech
  • Aces High
  • Wrathchild
  • Children of the Damned
  • The Trooper
  • The Number of The Beast
  • Phantom of the Opera
  • Rime of the Ancient Mariner
  • Hallowed Be Thy Name
  • Run to the Hills
  • Fear of The Dark
  • Powerslave
  • 2 Minutes to Midnight
  • Wasted Years

  • Iron Maiden
  • Sanctuary

Wednesday, February 11, 2009

'This page contains both secure and nonsecure items' using Internet Explorer

when secure pages say 'This page contains both secure and nonsecure items' using Internet Explorer 6.0 then this message occurs when attempting to view a webpage using https that contains information linked using http.

a) for example if the line below is present in a webpage
< src="http://mydomain.com/images/image1234.jpg">, and this webpage is accessed using HTTPS then that line can cause that error message to be displayed.

b) if your webpage has any iframes in them then be sure to specify the src attribute. Try “#” or “javascript:void(0);” or "javascript:'<html></html>';"
This “javascript:void(0);” worked for me in IE 6.0.


For more info, please do refer
webpages with iframes
content mix in webapge

Tuesday, February 3, 2009

Iron Maiden setlist for "Somewhere Back in Time" tour in Mumbai 2008

This is the setlist which Iron Maiden have played for their "Somewhere Back in Time" tour of 2008 in Mumbai.

  • Churchill's Speech
  • Aces High
  • 2 Minutes to Midnight
  • Revelations
  • The Trooper
  • Wasted Years
  • The Number of The Beast
  • Can I Play with Madness
  • Rime of the Ancient Mariner
  • Powerslave
  • Heaven Can Wait
  • Run to the Hills
  • Fear of The Dark
  • Iron Maiden
  • Moonchild
  • The Clairvoyant
  • Hallowed Be Thy Name

Tuesday, January 27, 2009

OPETH's setlist at IIT Madras 2009

OPETH's setlist for their gig at IIT Madras on 25th Jan 2009.

1. Heir Apparent
2. The Grand Conjuration
3. Godhead's lament
4. The Lotus eater
5. Wreath
6. Bleak
7. Hope leaves ( an extended guitar solo )
8. Deliverance ( with a nice lil intro)
9. Night and the Silent water
10.Demon of the fall
11.Baying of the hounds
12.The Drapery Falls

I got this setlist from "vijaywins85" at http://www.ultimatemetal.com/forum/opeth/448454-opeth-india-3.htmlindia-3.html

Thnx dude \m/

Monday, January 12, 2009

UK based metal band, DE PROFUNDIS, will be opening up for "Iron Maiden" on 15th Feb 2009

According to DNA networks website, http://www.dnanetworks.com/rockinindia/, U.K.-based progressive doom metal band "DE PROFUNDIS" will be opening up for "Iron Maiden" on 15th Feb 2009.

The list of bands scheduled to perform at "Rock In India" gig are:

IRON MAIDEN
DE-PROFUNDIS
LAUREN HARRIS
CYANIDE SERENITY
Brandon Ashley & the Silver Bugs
PARIKRAMA
SYNAPS
PIN DROP VIOLENCE
KRYPTOS
CRI WINNER
VONAMOR BAND

Tickets are priced at Rs.1,600/- as of now...