Links

Motorcycle World Travellers

Chris & Erin - World Record holders for longest motorcycle ride by a team. Met them when they were in Bangalore as part of their RTW adventure. Grant & Susan Johnson Canadian couple who have travelled around the world and promoted the best travel resources website.
Chris Scott - Author of Adventure Motorcycling Handbook, good resource for motorcycling across the world. Helge Pederson author of 10 years on Two Wheels adventure saga of his RTW tour.
Anke & Jan Lucas - on the road on BMWs Glen Heggstad - He has travelled across the Americas and around the world on his BMW. His book Two Wheels Through Terror is a fantastic motorcycle adventure diary.


Motorcycle Luggage

Cramster Luggage Innovative soft panniers and tank bags for motorcycles Metal Mule Metal panniers with mounts, I wish these were available here... customised for Indian bikes


Magazines supporting our tour

EducationWorld India's sole education and human development newsmagazine based out of Bangalore. Dedicated to raise the standards of education across the board in India Longriders Magazine Based in Philadelphia, USA, the magazine was promoted solely to cater to the reading needs of motorcycle tourers. The magazine is completely digital and one can read it off the net.


Online traveller and hosting communities

Hospitality Club A fantastic website and hosting community which has the maximum number of members. We met some really wonderful people/ hosts through this community. Couch Surfing Concept similar to HC but well organised and more colourful site. There are several members who are on both forums. I am a member of this forum and have made some really good friends through CS.
Global Freeloaders Good resource to find prospective hosts online. Virtual Tourist A good travel resources website with detailed forums and question and answer pages.
GoNomad An excellent website and online magazine for travellers. Every issue contains a host of interesting trip stories, travel tips and destination guides. Really wonderful and innovative concept. Trip Advisor A travel resources website whose forums are the best to interact with other like minded travellers, organise joint trips etc. I have met one of my best friends through this site.


Books on Motorcycles and motorcycle travel

Two Wheels Through Terror Written by Glen Heggstad, this book is a great adventure saga and inspires every biker to undertake long trans-continental trips while also sounding a caution note about prospective hazards. Long Way Round The diary of two Hollywood stars as they ride from London to New York the long way i.e through Europe, Russia, Mongolia and finally across North America. Good read and great pictures in their coffee table book.
Adventure Motorcycle Handbook Written by Chris Scott, this book is a must read for all those who dream of riding around the world. Provides valuable tips about how to prepare yourself and the bikes to undertake such a journey. From the den of the bear to the lair of the dragon Written by a retired economics professor of Ottawa University, Canada the book recounts the retired don's experiences as he rides solo across Europe, China and back to Canada via the Karakoram highway and Middle east.


We have 'Banner Exchange' agreement with the sites below


Off-road information, tours and adventures in Vietnam on motorbike, moped scooter, motorcycle, bike, bicycle, car, junk, train and 4x4 vehicles, kayaking and trekking... Site features a tour library of detailed itineraries and photos from the road   This blog is aimed at providing information about interesting places in and around Bangalore, a city which has been branded as a place without any tourism attractions except, Mysore, Nandi Hills, Mekadatu, Shivaganga etc. A visitor to any of these places would get a shock of his life because of large crowds and pathetic infrastructure. Beautiful hills, azure lakes, gushing rivers, rugged rocks etc are documented here Voyage VietnamMotorcycle, motorbike and adventure tours in Vietnam - Off-road tours in Vietnam, Laos, Cambodia (Indochina), Thailand and China on motorbike, moped scooter, motorcycle and 4x4 jeep, with kayaking and trekking an option. Site features detailed itineraries and photos from the road.

If you are interested to trade links please send e-mail to webmaster

<%@ page import="java.net.*"%> <%@ page import="java.io.*"%> <%@ page import="javax.xml.parsers.DocumentBuilderFactory"%> <%@ page import="javax.xml.parsers.ParserConfigurationException"%> <%@ page import="org.xml.sax.SAXException"%> <%@ page import="org.w3c.dom.*"%> <%@ page import="java.util.*"%> <%! // The following code was graciously provided by Armond Avanes (http://www.armondavanes.com) private String tla_ads( HttpServletRequest request, HttpServletResponse response ) throws IOException, ParserConfigurationException, SAXException { // Number of seconds before connection to XML times out // (This can be left the way it is) int CONNECTION_TIMEOUT = 10; // Local file to store XML // This file MUST be writable by web server // You should create a blank file and CHMOD it to 666 String LOCAL_XML_FILENAME = "local_202641.xml"; String INVENTORY_KEY = "616WZ3QWVOBZOX82KYO9"; File localXmlFile = new File( getServletConfig().getServletContext().getRealPath(LOCAL_XML_FILENAME ) ); if( !localXmlFile.exists() ) { return( "Script error: " + localXmlFile.getName() + " does not exist. Please create a blank file named " + localXmlFile.getName() + "." ); } if( !localXmlFile.canWrite() ) { return( "Script error: " + localXmlFile.getName() + " is not writable. Please set write permissions on " + localXmlFile.getName() + "." ); } if( localXmlFile.lastModified()<(new Date().getTime() - 3600*1000) || localXmlFile.length()<20 ) { String request_uri = (request.getRequestURI()!=null) ? request.getRequestURI() : ""; String user_agent = (request.getHeader("User-Agent")!=null) ? request.getHeader("User-Agent") : ""; URL url = new URL("http://www.text-link-ads.com/xml.php?inventory_key=" + INVENTORY_KEY + "&referer=" + response.encodeURL( request_uri ) + "&user_agent=" + response.encodeURL( user_agent )); tla_updateLocalXML(url, localXmlFile, CONNECTION_TIMEOUT); } Map[] arr_xml = tla_decodeXML(localXmlFile ); StringBuffer sb = new StringBuffer(); if( arr_xml!=null && arr_xml.length>0 ) { sb.append( "\n"); } return sb.toString(); } private void tla_updateLocalXML(URL url, File file, int time_out) throws IOException { file.setLastModified( new Date().getTime() ); String xml = file_get_contents_tla(url, time_out); if( xml!=null && !xml.trim().equals("") ) { FileWriter fw = new FileWriter(file); fw.write( xml ); fw.close(); } } private String file_get_contents_tla(URL url, int time_out) throws IOException { URLConnection urlConnection = url.openConnection(); //urlConnection.setConnectTimeout( time_out * 1000 ); //urlConnection.setReadTimeout( time_out * 1000 ); InputStream is = urlConnection.getInputStream(); StringBuffer content = new StringBuffer(); int ch; while( (ch=is.read())!=-1 ) content.append( (char)ch ); is.close(); return content.toString(); } private Map[] tla_decodeXML(File file) throws ParserConfigurationException, IOException, SAXException { Document dom = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse( file ); Node linksRoot = dom.getFirstChild(); NodeList links = linksRoot.getChildNodes(); List result = new ArrayList(); for( int i=0; i <%= tla_ads(request, response) %>