varalu
Members-
Content Count
466 -
Joined
-
Last visited
Everything posted by varalu
-
@serverph Thanks for the solution you gave. It works perfectly. But i thought i will share what i do. For all the people here... Yes guys. It can be done. In my way ...i would say..very easily. This is what i do when i need to embed an image in my mail. I use Blogger Step by Step Many must be aware that you can embed images in your blogs. So...just use that feature to send mail So..simple. 1. Go to your blog --> Settings tab 2. Under settings tab goto --> Email tab 3. There will be "BlogSend Address" and in that text box enter your email Address. 4. save changes and come out of it. Mailing procedure 1. Draft the mail that you have to send as a post in your blog. attach images or do whatever you want. 2. Publish the post once you have finished it. 3. This will be sent as mail to the inbox of the mail ID supplied by you... 4. You can use this mail...the image will e embedded in that. And i guess the blog post will be a waste...so you can go ahead and delete that post of yours... So simple... isn't it??
-
Thanks for the very useful information. Hoping that i will not be put under that situation.My first reaction will be to run from that place. NOw i wont do that.
-
Making money online is so easy.... Heard of payperpost?? In payperpost.com you get paid for blogging. We can write about web sites, products, services, and companies and earn cash for providing our opinion and valuable feedback to advertisers. Ofcourse there are certain things as agreement that you have to follow. First you sign up and register your blog and this gets approved then you start posting for advertisers... then you get paid... No that easy...huh... but nothing is easy. There are more services like this coming up online. Two more new services that are similar to the PayPerPost (pay for blog posts) have announced their launch recently. They are ReviewMe and CreamAid. Review me is very similar to that of payperpost. If you are already in payperpost you wont find it difficult to use reviewme. But CreamAid is a bit different. There is no signup required here.. there are conversations that are present in their home page... you can involve yourself in conversations and start blogging about that particular topic and submit that post of yours to the widget that has all the reviews. If your post gets selected you will be paid some royalty points via Paypal. CreamAid also has some referral points if posts are submitted via your widget. Easy stuff.. Links: https://payperpost.com/ https://www.matomyseo.com/ http://www.creamaid.com/
-
Desktop Resolution What desktop resolution are you using?
varalu replied to flash4satheesh's topic in Hardware Workshop
I am using a desktop.. i have 1024 X 768.I like it... its best for many things. Helps my eyes . -
I think yours is a very generic question... not that easy to answer.What do you mean by that question by the way... also...Both the countries are not one on the same. There are so many differences among them.So please be specific in your question.
-
Data Structures -- String -- Palindrome Check if a string is a palindrome...
varalu replied to varalu's topic in Programming
Thats an very good algorithm. And your perl thing is good. More solutions: The Solution to this problem is using a tree called Suffix tree. Using the suffix tree most of the string related problems can be solved. The following problems can be solved using suffix tree in O(n) . 1. Longest Repeated Substring 2. Longest Common Substring 3. Palindromes. go through this link http://www.allisons.org/ll/AlgDS/Tree/Suffix/ Im not able to understand the Suffix tree construction part. If someone can explain me it ll be useful. -
Data Structures -- Linked List -- Reverse Reverse a linked list
varalu posted a topic in Programming
Give an algorithm to reverse a linked list with a time complexity of O(n) and minimal space complexity. What is a linked list? Search Xisto.com. i Have already answered this question in one of my older questions. Solution 1 Here is one simple solution... Void ReverseList(node* head){ node *temp,*current,*result; temp=null; result=null; current=head; while(current!=null) { temp=current->next; current->next=result; result=current; current=temp; } head=result; The above was suggested by my friend. But i guess we still have some problems in the above code and can be refined more. Do post back with better ideas and solutions. -
Hi Pointybirds... Your solution works for trees that are exactly the same. But structurally same also means that the sub-tree can also be the same... So we have to do some changes in your algorithm...may be instead of passing the root to both the trees...the node which has the probability of becoming a structurally sam ecan be passed. Here is one solution suggested by one of my friends. bool checksimilarity(node *p1, node *p2){ if (checkequal (p1, p2)) return true; if (checksimilarity(p1->left, p2)) return true; if (checksimilarity(p1->right, p2)) return true; return false;} bool checkequal(node *p1, node *p2){ //checks whether the two nodes are pointing to null if (p1 == null && p2 == null) return true; //checks whether the two nodes in the trees are not pointing to another node. //If they are not pointing, then the similarity of the tree goes wrong. so, return false. if ((p1 == null && p2 != null) || (p1 != null && p2 == null) return false; //The trees are similar till this node, so check for their left and right subtrees. return (checkequal(p1->left, p2->left) && checkequal(p1->right, p2->right));} No additional space required. Time complexity O(nlogn). This piece of code works good in all case... do post your comments.
-
Your Views On Spirituality Spiritual inner souls
varalu replied to anwiii's topic in Health & Fitness
Spirutuality??i cannot show way to the place --> i do not know or --> i do not understand or --> do not exist...please help me... -
Yep... yes to your question.I get many spam to my mail.. NO denying on that. but i know the reason why...Because i have been using gmail for over the past 4 years as my primary mail account and its there everywhere....But also i don get any spam to my inbox...its all there ready to delete on a single click inside the "Spam label"...so why do you think you have to worry about that if its in the proper place...And in the first place gmail or any provider cannot prevent spam. They are not spammers i believe.Also almost all (99.99%) of all the spams are filtered properly. Only in the last few months i have been receiving one or 2 spam mails to my inbox. I guess that will too vanish in the future. Gmail is a very good service.
-
What Is The Best Place To Create Website At?
varalu replied to sabrina clark's topic in Business Forum
Absolutely no second word from me.. I go with rvalkass. I have been using Xisto for over the past 1 month. i like their service and they are good. I would strongly recommend them. -
But ZAMO... my mention was regarding the memory usage. Please go to task manager and see the memory occupied by both IE and Firefox. Then you will know the difference. Some other processes may starve memory because of this behaviour though i do not have any proofs for this. But definitely firefox consumes so much of memory....whenever firefox runs that will be the process consuming so much of memory.
-
I guess i said that i will be posting the portable version of opera here.... found it atlast... not much review from my side. I used it only for some time and got satisfied with firefox portable version. So below is the link. http://www.opera-usb.com/
-
Given two binary trees, find out whether a tree is structurally same to the other. Structurally same means that the two trees look alike or a tree looks alike a subtree of the other tree. Look for time and space complexity. Some more for readers What is a binary tree? For more about binary trees... Please follow the below links:https://en.wikipedia.org/wiki/Binary_tree http://cslibrary.stanford.edu/110/BinaryTrees.html https://xlinux.nist.gov/dads//HTML/binarytree.html
-
I have been using Avg for over the past 4 years and iam satisfied with its performance. I do regular updates, so i don have any problems. For more about AVG ... http://www.avg.com/de-de/homepage
-
Come on guys... Do not blame others.Life is always what you make it.. that suits Xisto too...If you don't find something interesting...you should take charge and create something interesting.Question yourself...What have you done to create good topics??why are you expecting others to post good topics??why am i not creating any good topics??Every good topic that you create is going to make some difference here... Also there are always people present to help good things happen... so go ahead and so something rather than blaming others and yourself...
-
Data Structures -- Linked List Find the nth last element in linked list.
varalu replied to varalu's topic in Programming
@sanjay0828Good one... the expected solution.Again... i want a simpler solution. What will be the basic answer that comes to your mind if i give this problem.??Very basic.. ..If no answer i will be posting it in my next post. -
yep... Adblock is really a nice piece of addon. Makes you happy when you are online by blocking all unwanted ads. Though i have never used foxmarks... it seems interesting. Going to use from now on.... lets see how it turns out to be... will post more about foxmarks soon... Link for foxmarks: http://www.xmarks.com/
-
Blog Action Day Blogging for a common cause...
varalu replied to varalu's topic in General Discussion
ZAMO and OneMinuute...Do you guys have a blog?? just asking out of curiosity....what kind of blogs and what do the contents that you usually post in your blogs....Have you guys registered for the next blog action day??Spread the word... we will do our job... -
Data Structures -- Linked List Find the nth last element in linked list.
varalu replied to varalu's topic in Programming
yours is a nice solution... Better in usage of memory also. This circular buffer thing is very good. What is i am giving you a constraint of 1. "NO EXTRA MEMORY" 2. No additional Data structures. Give a solution with the above constraints. Small Hint: Do not make it complex...think very simple. --> for a simple solution. -
The above content was already posted by me in Xisto. But i started to come across many flash games online. So i thought i will start a separate topic on that, so that other members can also post new flash game links here. Here is a game that i recently came across. A word of caution: its very addictive. http://www.mazefrenzy.com/ Yet another ball game here... http://www.shockwave.com/content/shuffle/sis/shuffle.swf Do post flash game link that you come across... These are best online time killers. Note: Also note that you should not post gaming sites just like that. Example do not give links like the below... http://www.flash-game.net/ http://www.flashgames247.com/ http://www.flasharcade.com/ http://www.2flashgames.com/ http://www.ababasoft.com/flash_games/ All the above links will be easily available in google searches. So post only very good specific game links that you feel are worth. Also Feedbacks about the games are welcome. !!!
-
Google is my alltime favourite...I started my searches in google.. usinggoogle now...will probably end with google... its super fast and very effective in giving what you want.