As mentioned earlier we have launched our new product www.simplybus.com today i.e., on November 6th 2009 @12:14PM.
We also got the first ticket booked frmom Bangalore to Hyderabad.
Very happy to get this happen.
Hoping more and more tickets should be booked online.
Friday, November 6, 2009
Monday, October 12, 2009
About to launch Simplybus.com
Book Bus Tickets Online
We are developing a new product www.simplybus.com. This is mainly for the frequent travellers. Frequent travellers can get discounted tickets through out the life by booking on this website.
Here are the features.
Get your BUS tickets at discounted rate anytime, anywhere to all destinations on all operators...
Book online using credit, debit cards and net banking
Get confirmations by email and SMS
Book bus tickets online with over 500+ bus travel operators
Book bus tickets online for over 5000+ routes across India
Return bus tickets reservation
Stay Tuned.. We will release on November 6th 2009, 12:14 PM. (Auspicious Time. :))
We are developing a new product www.simplybus.com. This is mainly for the frequent travellers. Frequent travellers can get discounted tickets through out the life by booking on this website.
Here are the features.
Get your BUS tickets at discounted rate anytime, anywhere to all destinations on all operators...
Book online using credit, debit cards and net banking
Get confirmations by email and SMS
Book bus tickets online with over 500+ bus travel operators
Book bus tickets online for over 5000+ routes across India
Return bus tickets reservation
Stay Tuned.. We will release on November 6th 2009, 12:14 PM. (Auspicious Time. :))
Tuesday, June 30, 2009
BitlaSoft 2nd Year Anniversary
This year too we had a great celebrations in our office for Bitlasoft's 2nd year Anniversary. This year we had a dark blue Jacket with a logo on the front side and punch line on the back side.
We had party with our family too. Nice enjoyment with all the quiz, Tambola, some silly questions, silly games :) .
We discussed all the cool things about the company. We wish all the best to all of us for a bright future of bitlasoft.
We had party with our family too. Nice enjoyment with all the quiz, Tambola, some silly questions, silly games :) .
We discussed all the cool things about the company. We wish all the best to all of us for a bright future of bitlasoft.
Labels:
Bitla Software,
Bitlasoft,
mobee.in,
Naga Harish,
Rails,
Ruby,
ticketSimply,
travel management
Friday, May 22, 2009
REST Client - Simply Test REST APIs
Our company prepared a new tool for testing the REST API's.
Using this you can Test the REST APIs.
GET, POST, PUT, HEAD, DELETE methods are supported.
Its very easy. Give the URL and select the method ex. "GET" and want to pass any parameters, you can also pass them.
Thats it!!
You will get the response.
Visit this link for a test. http://www.bitlasoft.com/tools/rest_client/
If you have any doubts you can mail to info@bitlasoft.com
Using this you can Test the REST APIs.
GET, POST, PUT, HEAD, DELETE methods are supported.
Its very easy. Give the URL and select the method ex. "GET" and want to pass any parameters, you can also pass them.
Thats it!!
You will get the response.
Visit this link for a test. http://www.bitlasoft.com/tools/rest_client/
If you have any doubts you can mail to info@bitlasoft.com
Labels:
Bitla Software,
Bitlasoft,
Naga Harish,
Rails,
REST,
REST Client
Saturday, April 25, 2009
Ticket simply updates
I am very glad to say that we are increasing our customers for our lovely product ticketsimply(http://www.ticketsimply.com).
Right now these are list of customers for ticketsimply.
Seabird Tourists(http://www.seabirdtourists.com)
RoadLink India(http://www.roadlinkindia.com)
Sona Travels (http://sonatravels.in)
SR Konduskar(http://www.konduskarsr.com)
Manowj Travels(http://www.manowjtravels.com)
USL Bus(http://www.uslbus.com)
Shiva Express(http://www.shivaexpress.com)
Kiings Travels(http://www.kingstravels.in)
SRS Travels (http://www.srsbooking.com)
Hope we will be getting more and more customers.
Will update soon with some more customers list.
Right now these are list of customers for ticketsimply.
Seabird Tourists(http://www.seabirdtourists.com)
RoadLink India(http://www.roadlinkindia.com)
Sona Travels (http://sonatravels.in)
SR Konduskar(http://www.konduskarsr.com)
Manowj Travels(http://www.manowjtravels.com)
USL Bus(http://www.uslbus.com)
Shiva Express(http://www.shivaexpress.com)
Kiings Travels(http://www.kingstravels.in)
SRS Travels (http://www.srsbooking.com)
Hope we will be getting more and more customers.
Will update soon with some more customers list.
Clone in Ruby
Clone is help ful for the values changed in the object but not the complete object change.
Let me explain with an example.
take an array
arr1 = ["a", "b", "c", "d"]
let me initiliza arr1 to arr2
arr2 = arr1
puts arr2
=> ["a", "b", "c", "d"]
If I change arr1 values i.e.,
arr1[1] = "z"
puts arr1
=> ["a", "z", "c", "d"]
then see arr2
puts arr2
=> ["a", "z", "c", "d"]
#This wil get changed because the whole arr1 is pointed to one block of memory and the same arr2 is also pointing to the same block. You can check this.
arr1.id and arr2.id which will be same.
puts arr1.id
=> 40972250
puts arr2.id
=> 40972250
Suppose if you want arr2 as the previuos arr1 and arr1 should get changed?
Do this:
arr1 = ["a", "b", "c", "d"]
arr2 = arr1.clone
puts arr2
=> ["a", "b", "c", "d"]
arr1[1] = "z"
puts arr1
=> ["a", "z", "c", "d"]
puts arr2
=> ["a", "b", "c", "d"]
But if you change the whole arr1 to some other values then arr2 will not change.
Eg:
arr1 = ["a", "b", "c"]
arr2 = arr1
puts arr2
=> ["a", "b", "c"]
arr1 = ["z", "y", "x"]
puts arr2
=> ["a", "b", "c"]
arr2 will be same as old arr1 because arr1 memory locaton will be different after the new initilaization.
You can check this by arr1.id and arr2.id
In this case clone is not needed.
More about clone (copied from Ruby book(Dave Thomas, The Pragmatic Programmers))---
clone obj.clone -> anObject
Produces a shallow copy of obj---the instance variables of obj are copied, but not the objects they reference. Copies the frozen and tainted state of obj. See also the discussion under Object#dup .
class Klass
attr_accessor :str
end
s1 = Klass.new » #
s1.str = "Hello" » "Hello"
s2 = s1.clone » #
s2.str[1,4] = "i" » "i"
s1.inspect » "#"
s2.inspect » "#"
Let me explain with an example.
take an array
arr1 = ["a", "b", "c", "d"]
let me initiliza arr1 to arr2
arr2 = arr1
puts arr2
=> ["a", "b", "c", "d"]
If I change arr1 values i.e.,
arr1[1] = "z"
puts arr1
=> ["a", "z", "c", "d"]
then see arr2
puts arr2
=> ["a", "z", "c", "d"]
#This wil get changed because the whole arr1 is pointed to one block of memory and the same arr2 is also pointing to the same block. You can check this.
arr1.id and arr2.id which will be same.
puts arr1.id
=> 40972250
puts arr2.id
=> 40972250
Suppose if you want arr2 as the previuos arr1 and arr1 should get changed?
Do this:
arr1 = ["a", "b", "c", "d"]
arr2 = arr1.clone
puts arr2
=> ["a", "b", "c", "d"]
arr1[1] = "z"
puts arr1
=> ["a", "z", "c", "d"]
puts arr2
=> ["a", "b", "c", "d"]
But if you change the whole arr1 to some other values then arr2 will not change.
Eg:
arr1 = ["a", "b", "c"]
arr2 = arr1
puts arr2
=> ["a", "b", "c"]
arr1 = ["z", "y", "x"]
puts arr2
=> ["a", "b", "c"]
arr2 will be same as old arr1 because arr1 memory locaton will be different after the new initilaization.
You can check this by arr1.id and arr2.id
In this case clone is not needed.
More about clone (copied from Ruby book(Dave Thomas, The Pragmatic Programmers))---
clone obj.clone -> anObject
Produces a shallow copy of obj---the instance variables of obj are copied, but not the objects they reference. Copies the frozen and tainted state of obj. See also the discussion under Object#dup .
class Klass
attr_accessor :str
end
s1 = Klass.new » #
s1.str = "Hello" » "Hello"
s2 = s1.clone » #
s2.str[1,4] = "i" » "i"
s1.inspect » "#
s2.inspect » "#
Tuesday, March 3, 2009
Mobee.in entered Press
This is really a good news for me at the time of my marriage. Mobee.in entered into press. Our CEO Dashratham Bitla has been interviewed for the press.
These are some of the links related to the press.
http://www.indiaprwire.com/print/?type=pressrelease&id=2009021119556
http://muralilistening.blogspot.com/2009/02/dasharatham-bitla.html
These are some of the links related to the press.
http://www.indiaprwire.com/print/?type=pressrelease&id=2009021119556
http://muralilistening.blogspot.com/2009/02/dasharatham-bitla.html
Labels:
Bitla Software,
Bitlasoft,
get emails on your mobile,
mobee,
mobee.in,
Naga Harish
Saturday, February 21, 2009
My mariage Invitation
I have developed a website for my marriage. Its http://harishwedslavanya.info
I tried to post all teh details there it self also I tried to post an individual email to every one. Every one is invited to my marriage. The following is the invitation.
"Marriage is the union of two unknown souls, written at Heart
settled in Heaven and celebrated on Earth,
on moving wheels of life"
Solicit your esteemed presence with family and friends on the occasion of my marriage with
Lavanya
On Sunday the 1st March, 2009 @ 7:30 a.m.
at Sri Gokul Kalyana Mandapam A.C,
Eluru
Reception & Lunch
starts by 12 noon.
http://harishwedslavanya.info
Regards,
Harish
I tried to post all teh details there it self also I tried to post an individual email to every one. Every one is invited to my marriage. The following is the invitation.
"Marriage is the union of two unknown souls, written at Heart
settled in Heaven and celebrated on Earth,
on moving wheels of life"
Solicit your esteemed presence with family and friends on the occasion of my marriage with
Lavanya
On Sunday the 1st March, 2009 @ 7:30 a.m.
at Sri Gokul Kalyana Mandapam A.C,
Eluru
Reception & Lunch
starts by 12 noon.
http://harishwedslavanya.info
Regards,
Harish
Subscribe to:
Posts (Atom)