Jump to content
xisto Community

varalu

Members
  • Content Count

    466
  • Joined

  • Last visited

Everything posted by varalu

  1. Hello Xisto members, I recently bought this GPS watch Plus, mobile application for my pda. Its just awesome. Its rich with features and the releases are just great. What are all the features present in the Application ? More about GPS watch... What is the latest update from GPS watch plus?? You must be happy to see their recent post in the community which says.. As it says... The product is from iNTERCHAIN solutions, a startup company which provides telematics and location based services.For more.. Visit the below link. http://forums.xisto.com/no_longer_exists/ That is not all... There is yet another social networking built upon this GPS watcher application called TRACKUT. Its still under BETA. So, you are welcome to give a try.
  2. I believe many must be aware of the mishap in Gmail last week, as few of the accounts got disabled due to some reason. One of my friend was also a victim of this... But Good that Google retrieved everything in a week and he is again among the happy customers of google... This is happening rarely in Gmail. Please make sure that you have backups of all your mails someplace to avoid any loss. https://support.google.com/mail/answer/7401?rd=1 http://forums.xisto.com/no_longer_exists/ Ways to avoid loss 1. Forward all your incoming mails to another Backup ID (Easier way). So if something bad happens you always have your contents. 2. Gmail offers POP. So, you can enable it in your settings and download all your mails to your email client (thunderbird, outlook etc). This is more comfortable and i have been using this... Its the best. 3. If you want more options... IMAP is also available in gmail. You can go for that to have your contents safe. You can use any of the above ways.... but make sure you have a backup is some way if thats your primary mail ID. Also, do not keep your gmail always open in firefox as there are some proven issues related to this. If you are not using your account for long, sign it out. Upgrade your firefox often. Also do not close the browser directly. Always sign out. And regarding having your contacts safe, export your contacts from time to time and have it safe in some place. Happy stay in Gmail. .
  3. If you are interested in having a universal chat client... visit the below link. http://www.pidgin.im/ You can sign into multiple accounts of various providers at the same time. Like more than 2 gmail, yahoo etc. All your chat contacts will get listed. Very convenient to have one application running rather than Gtalk, Y! messenger etc. Also, there are so many features. You have everything you want and can go for max customizations... Have been using this for the past one month. Its really nice. Its Open Source... So you know what can be done... Its available for all OS's. What else is available in Pidgin?? You are interested in contributing to Pidgin? Read the contents below... You are a developer?? You can contribute to pidgin. Visit the developer link in the site. Please visit the below link for downloading Pidgin. http://www.pidgin.im/download/
  4. Write an algorithm to print all the permutations of a string. Input: man Output: man mna amn anm nam nma Give solutions optimized for Speed. Optimize for Size too. What is a permutation? Here i have one possible solution from my friend.... (Pallavi) 1.Concat the input string with itself : manman 2. initialise the ptr to first element 3. Print it length of the string 4. Move the ptr by one position ( keep incrementing till length times) and perform step 3 5. reverse the whole string and repeat steps 2, 3, 4 Any better solutions? WELCOME !!!
  5. You have left me in a state of confusion by asking this. There is a big set of my favourite cars that i have to break down from.... I like almost all mid-sized cars... But i would like to mention a particular mid size car that took my attention when i was very young and that car actuallly made me look for other cars. I am not sure how many would have come across that car in real as it is a Local make in India by Maruti Udyog Ltd., It the Maruti Esteem. Here is the gallery from its site --> http://forums.xisto.com/no_longer_exists/
  6. Implement a Queue using a stack. No restriction on space complexity. One possible Solutions a costly procedure... 1. Use a temp stack 2. Insertion into queue - Push the element into the original stack 3. Deletion from queue - Pop all the elements from stack into a temp stack - pop out the first element from the temp stack - pop all the remaining elements back to the original stack What is a queue? for more... Follow the below link. http://forums.xisto.com/no_longer_exists/
  7. A binary tree having a loop is known as a threaded binary tree.Have a look at the attachment to have an idea of a threaded binary tree....A's right child is B and B's left child is A.Write an algorithm to find out whether the given tree is a threaded binary tree.Look for time and space complexity.
  8. Nice.Bill Gates must be very happy.
  9. Try to involve or engage yourself in something you like.That will help. else there is a better option move away from that place for goood.Also. if you really wanted to do something you can do it.
  10. If no internet.. i just cant imagine it now for i got addicted to many things in the web.But otherwise i will ave more time to spend on other things, play... etc.But what if i did not know www at all.. not a problem.Also if there is no internet, i will be assured that nothing is happening online.. so need not worry about it and will be happy.Willl be satisfied with pc games and missing all the online games.
  11. Sorry to all.... Saw this notice only recently. So my late reply here.Happy diwali to all here.
  12. I should say thanks for you for the article. All these are known, but it helps when someone explains or gives their personal touch. Also i have a site (http://www.computerkindness.org/) of my own which i am trying to boost for various reasons.Thanks again.
  13. BE CLEAN AND COOL.I don think there are any diseases because of this.Also i don think there are any STD's related to kissing.So... go ahead and have fun and stop posting such questions in the forum.May be there is one disease -- You get addicted to your girl .
  14. Construct an expression tree for the expression (a || && (c || d) After constructing the tree convert the tree to correspond to the associative property of the given expression. Eg: (1 + 2) * ( 3 + 4) = (1 * 3) + (1 * 4) + (2 * 3) + (2 * 4) Similar to that, from the constructed expression tree, construct a new expression tree such that inorder traversal of the new tree will be associative value of the given expression Inorder traversal of the new tree should be (a && c) || (a && d) || (b && c) || (b && d) Write a generic algorithm to convert the first tree to the second tree.. What is an Expression Tree?? Visit links below. http://www.brpreiss.com/books/opus5/html/page264.html http://www.cs.jhu.edu/~goodrich/dsa/05trees/Demo1/ Tree Traversals Visit the below links for knowing more about tree traversals. https://en.wikipedia.org/wiki/Tree_traversal http://www.brpreiss.com/books/opus4/html/page260.html
  15. Given an array of elements with many numbers occurring even number of times and two numbers occurring odd number of times. Find out the two numbers that occur odd number of times. example: Elements in array -- 14433446 The expected result is 1 and 6 One solution 1. Find max of the array 2. Hash Function : element/max value 3. Repeat to all elements... 4. Find frequency... yo will get the 2 elements with odd frequency. but this is not the optimal.... Do find more solutions to this and post it. Look for time and space complexity. Another Solution one more solution 1. Scan through the array 2. Insert the element into a BST if its already not there. If its already avl, delete it from BST. 3. Repeat for all the elements 4. Now, BST will have only the elements with odd occurrence. Time complexity : O(n*log n) Courtesy: Varun. (friend)
  16. Consider a string with any number of elements occurring any number of time. Rearrange the string in such a way that the alphabet with most occurrence occurs in the followed by the next most occurring alphabet and so on... It should also be seen that the alphabets should occur frequency number of times. Example: Input : abcdaeghzabcdbhb Output : bbbbaaaccddhhegz
  17. Given two singly linked lists with both of them merging at some point. Find the position at which they merge. Eg: 1->30->50->65->2->59 88->46->65->2->59 The above two linked lists merge at 65. Find this node where they merge.. Question Courtesy: Antony(Friend) One possible Answer A simple answer would be to find the length of both the linked lists and have two pointers, one for each linked list. Move (difference in lengths) steps in the longer linked lists and then start moving both the pointers by one every time until you have both the pointers pointing to the same node. time Complexity - O(2n) = O(n)
  18. I have been using Nokia 2100. ya... i know its a bit old....with all the phones rolling around... Have been using this for the past 4 years and my father had it for 2 years before that. its a nice one...hassle free.... Virtually unbreakable... i guess i have dropped it around 1000 time and its still up and running. Have got requests to change it for long... but i am going to have it atleast for an year or so... Below is the link for the phone from Nokia. http://www.nokia.com/en_int/about-us
  19. It has been many days since i have read a big book . I usually prefer reading short stories and stuffs like that. The book i read recently??Mein Kamph -- My Struggle graphy of Adolf Hitler.
  20. You should take a look at this. http://forums.xisto.com/topic/6147-posting-activity-rule-automated-hosting-script-know-about-how-this-system-works/
  21. I agree with both veg and non-veg. But i don like this argument. "Animals are brutally murdered"... Come on guys....there are thousands of killings taking place in all countries both by veggies and non-veggies. Try talking about that. Show humanity to humans first then we can make sense by humanitarian act towards animals. Here is one more point.... there is a scientific study proving that even plants have feelings. I don have to say about life in plants... When you cook you even kill them and do it brutally. So everyone has their own rights, wrongs and justifications for what they do. If you really think harming animals is the only thing that prevents you from becoming a non-veg, you are lying. Even plants gt hurt... there are many living beings dependent on the plants we depend... so no point. Better put it this way. "I like it... so i am having it" What am i? I am a veggie... but i eat everything.
  22. @AskAndrewD Thanks for the link. I find it interesting. Also i have a problem with that. Its blocked n my college . If that is the case is there any way that you can access through a proxy or something. Please let me know if you have ways to access, because everytime i have something to do i have to go outside... . @t3jem Thanks for the portal. I am getting addicted. . @house thanks for your link. I am playing them. Here are some more games that i have been playing for over the past week. The Pathfinder -- This is not a very addictive game but will help you relax from your all day work. http://ofg.me/ Hostile Skies -- This game is originally from miniclip and i have been playing for years. This can be downloaded diectly from miniclip.com, but the link i am providing here is from a different site. Enjoy. http://onlinegamesflash.com/game_action_36b.html Mountain Bike This game is real interesting. http://forums.xisto.com/no_longer_exists/
  23. I am using it in my college, so its legal only.Also if there is something that you can give credit for the popularity of the windows operating system, its the pirated copies. I believe that half of the users use only pirated copies. This i can say you... I am in hostel and the strength of the hostel is around 3500 and in that there are around 1000-1500 systems.I am sure that only 100-200 of these systems have legal copies, that too obtained during the purchase of system for free... All the remaining operating systems have pirated copies.I guess, if everyone starts using only the original copies and use them, no one can beat Bill Gates ever... He will be the richest person for the next 100 years for sure.
  24. Dogs are my favourite.... I like to have some 2-3 dogs...I had squirrel, fish and a dog in the past....Now i look myself in the mirror. Planning to have a dog soon... lets see how it turns out.I would also like to have some large cats....
  25. If gmail is configured in thunderbird will it import all the mails or only mails that comes from now on??i am asking this because i just wanet to take a backup of all the mails in my gmail??please help me on this... or is there anyother way that i can backup my entire gmail somewhere now??
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.