iGuest
Members-
Content Count
72,093 -
Joined
-
Last visited
-
Days Won
5
Everything posted by iGuest
-
Just a random guest giving you an idea 0 Make a Post ALREADY! 1-25 NEWBIE 26-100 Junior Member 101-250 Member 251- 500 Senior Member 501-750 Board Senior Member 751-1,000 Experienced Member 1,001-1,500 Experienced Board Member 1,501-2,000 Skilled Member 2,001-3,000 Advanced Member 3,001-5,000 Expert Member 5,001-7,500 Pro Member 7,501-10,000 Veteran Member 10,001-15,000 Legendary Member 15,000-25,000 Master Member 25,001-50,000 Elite Member 50,001-100,000 Elite Leader 100,001-250,000 Forum King 250,000-500,000 Forum God 500,001 -On "If I only had a Life" -reply by Guest
-
I've Been Singing Alot And Now My Throat Hurts.
iGuest replied to Mermaid711's topic in Health & Fitness
hurt vocal cordsI've Been Singing Alot And Now My Throat Hurts.I love music and I love singing but I just do it at home for fun but know I have strained my voice and I am just horrified. I don't know what to do and at first I didnt know that I had strained my voice so I kept on singing. And having fun and screaming and being my loud self now I am worried that I might have permanently strained my voice . How do I know if I permanently strained my voice? and how can I fix it if its not permanently strained? -reply by Sweets -
redirectingGmailWhen I try to login the window opens as a redirecting message. The message is that the URL is too long.When I look at the 'http' box' at the top of my screen it says : gmail.Com/accounts and then it continues with an undetermined amount of letters and numbers.I can't seem to open my gmail site.Help!-question by Eleanor Glovinsky
-
World Of Warcraft Addiction Your view on WoW addiction
iGuest replied to Picardim's topic in Science and Technology
husband addictWorld Of Warcraft Addictionhi my name is angel, I have a husband who also plays it alllll day everyday.. Everythime I talk to him he never listens and says he doesnt have a problem. but when I start to cry thats when he stops. (for a pl days) then its right back to normal. I get irritated because there are girl players on there who spend more time with him then I do during the day. We have 2 children and I get little help (sometimes) from him. I love him I do but it drives me nuts. He was wounded in iraq and says it takes his mind off it but he doesnt realize it takes his mind off of everything, me and his 2 kids. All day everyday is spent in this house. I tried "playing with him. Doesnt work he says hes to high of a lvl to help me I'm a lvl 8 because I play and take care of the kids hes a lvl 71??? wow is horrible. It started off that he was going to play sometimes when there was nothing else to do or right before bed but now its vice versa he spends time with me when hes not busy on wow. God I hate this game everytime I hope he is slowing down it back fires . I know what you are going through. Angel -
lots of laptops have express card slot. If I buy a tv tuner and put it in express card slot, will there still be a lag? people said me, that this tv tuners shouldn't be slow... -reply by ww_asef
-
Replying to varaluAnswer to your first questionApproch you have used is a "brute force" technique , a better way to do this is by "divide and conquer".First let knows what is inplace algos. It has a memory cost of O(f(and)) it requires extra memory which is of order of some function of and.Any algo using O(1) ie constant amount of memory is inplace algo.StepsI> Sort the array/sequence of numbers using a inplace sorting technique having O(and.Lgn) order . Eg quicksort , heapsort etcNote we can not use merge sort though it has order O(and.Lgn)as it is not inplace sorter ie. Requires auxillary memory of the order O(and).II>Keep two pointersA and BInitially A point to the first element in the array or the sequence of numbers given .B points to the second.III>Then from the element pointed by B to the nth element , do a binary search by moving the B pointer (in the first iteration it will be from 2nd to nth and in third iteration it will be from 3rd to nth element) .This binary search will take at max (approx.) O(lgn) to findAn element such thatSum of the element pointed by A and B is equal to the SUM given.IV>If no such element is found in the binary search move the pointer A to next element ie increment it.Now make the B pointer point to element just next to A pointer .Go to step III.This method is inplace algo and has worst case cost = O(and.Lgn)Answer to your first questionApproch you have used is a "brute force" technique , a better way to do this is by "divide and conquer".First let knows what is inplace algos. It has a memory cost of O(f(and)) ie requires extra memory which is of order of some function of and.Any algo using O(1) ie constant amount of memory is inplace algo.StepsI> Sort the array/sequence of numbers using a inplace sorting technique having O(and.Lgn) order . Eg quicksort , heapsort etcNote we can not use merge sort though it has order O(and.Lgn)as it is not inplace sorter ie. Requires auxillary memory of the order O(and).II>Keep two pointersA and BInitially A point to the first element in the array or the sequence of numbers given .B points to the second.III>Then from the element pointed by B to the nth element , do a binary search by moving the B pointer (in the first iteration it will be from 2nd to nth and in third iteration it will be from 3rd to nth element) .This binary search will take at max (approx.) O(lgn) to findAn element such thatSum of the element pointed by A and B is equal to the SUM given.IV>If no such element is found in the binary search move the pointer A to next element ie increment it.Now make the B pointer point to element just next to A pointer .Go to step III.This method is inplace algo and has worst case cost = O(and.Lgn)Answer to your first questionApproch you have used is a "brute force" technique , a better way to do this is by "divide and conquer".First let knows what is inplace algos. It has a memory cost of O(f(and)) ie requires extra memory which is of order of some function of and.Any algo using O(1) ie constant amount of memory is inplace algo.StepsI> Sort the array/sequence of numbers using a inplace sorting technique having O(and.Lgn) order . Eg quicksort , heapsort etcNote we can not use merge sort though it has order O(and.Lgn)as it is not inplace sorter ie. Requires auxillary memory of the order O(and).II>Keep two pointersA and BInitially A point to the first element in the array or the sequence of numbers given .B points to the second.III>Then from the element pointed by B to the nth element , do a binary search by moving the B pointer (in the first iteration it will be from 2nd to nth and in third iteration it will be from 3rd to nth element) .This binary search will take at max (approx.) O(lgn) to findAn element such thatSum of the element pointed by A and B is equal to the SUM given.IV>If no such element is found in the binary search move the pointer A to next element ie increment it.Now make the B pointer point to element just next to A pointer .Go to step III.This method is inplace algo and has worst case cost = O(and.Lgn)Answer to your first questionApproch you have used is a "brute force" technique , a better way to do this is by "divide and conquer".First let knows what is inplace algos. It has a memory cost of O(f(and)) ie requires extra memory which is of order of some function of and.Any algo using O(1) ie constant amount of memory is inplace algo.StepsI> Sort the array/sequence of numbers using a inplace sorting technique having O(and.Lgn) order . Eg quicksort , heapsort etcNote we can not use merge sort though it has order O(and.Lgn)as it is not inplace sorter ie. Requires auxillary memory of the order O(and).II>Keep two pointersA and BInitially A point to the first element in the array or the sequence of numbers given .B points to the second.III>Then from the element pointed by B to the nth element , do a binary search by moving the B pointer (in the first iteration it will be from 2nd to nth and in third iteration it will be from 3rd to nth element) .This binary search will take at max (approx.) O(lgn) to findAn element such thatSum of the element pointed by A and B is equal to the SUM given.IV>If no such element is found in the binary search move the pointer A to next element ie increment it.Now make the B pointer point to element just next to A pointer .Go to step III.This method is inplace algo and has worst case cost = O(and.Lgn)Answer to your first questionApproch you have used is a "brute force" technique , a better way to do this is by "divide and conquer".First let knows what is inplace algos. It has a memory cost of O(f(and)) ie requires extra memory which is of order of some function of and.Any algo using O(1) ie constant amount of memory is inplace algo.StepsI> Sort the array/sequence of numbers using a inplace sorting technique having O(and.Lgn) order . Eg quicksort , heapsort etcNote we can not use merge sort though it has order O(and.Lgn)as it is not inplace sorter ie. Requires auxillary memory of the order O(and).II>Keep two pointersA and BInitially A point to the first element in the array or the sequence of numbers given .B points to the second.III>Then from the element pointed by B to the nth element , do a binary search by moving the B pointer (in the first iteration it will be from 2nd to nth and in third iteration it will be from 3rd to nth element) .This binary search will take at max (approx.) O(lgn) to findAn element such thatSum of the element pointed by A and B is equal to the SUM given.IV>If no such element is found in the binary search move the pointer A to next element ie increment it.Now make the B pointer point to element just next to A pointer .Go to step III.This method is inplace algo and has worst case cost = O(and.Lgn)Answer to your first questionApproch you have used is a "brute force" technique , a better way to do this is by "divide and conquer".First let knows what is inplace algos. It has a memory cost of O(f(and)) ie requires extra memory which is of order of some function of and.Any algo using O(1) ie constant amount of memory is inplace algo.StepsI> Sort the array/sequence of numbers using a inplace sorting technique having O(and.Lgn) order . Eg quicksort , heapsort etcNote we can not use merge sort though it has order O(and.Lgn)as it is not inplace sorter ie. Requires auxillary memory of the order O(and).II>Keep two pointersA and BInitially A point to the first element in the array or the sequence of numbers given .B points to the second.III>Then from the element pointed by B to the nth element , do a binary search by moving the B pointer (in the first iteration it will be from 2nd to nth and in third iteration it will be from 3rd to nth element) .This binary search will take at max (approx.) O(lgn) to findAn element such thatSum of the element pointed by A and B is equal to the SUM given.IV>If no such element is found in the binary search move the pointer A to next element ie increment it.Now make the B pointer point to element just next to A pointer .Go to step III.This method is inplace algo and has worst case cost = O(and.Lgn)-reply by angad
-
There are other options peeps, not only Logic and ProToolsPro Tools Or Logic 8?Though Logic and ProTools are the best, in my opinion, there are other extremely powerful and affective options for a DAW (digital audio workstation) program. Such as MOTU's Digital Performer - I started out with this program, and it's pretty user friendly and very well set up. It works seamlessly with MOTU's 828mk3 interface. With these two items... You can do anything you can imagine. DP is made mostly for video to music work, but works beautifully with just recording. A decent, and affordable DAW for PC is Cakewalk. Most DAW's have like a try-it-for-30-days type thing, I believe, this would be the best route. Just try out each one. To fully utilize a DAW like Logic, you need a good interface. One that works perfectly with logic is Apogee's Ensemble, though it's very expensive at almost 2K, and works best on a Mac. But, there are plenty affordable interfaces out there in the low hundreds that work fine. This is not an interface related post, I apologize. A DAW mostly depends on what type of music you want to do. There are some specifically for electronic music, though they all can do about anything, but have many differences, obviously. Logic 9, which just came out, has some incredible guitar amp emulators that sound incredibly stunning. If you don't have much guitar hardware, and want to get some hot sounds, go with Logic 9. It's only $500. I use DP, Logic, and ProTools, and have separate interfaces for each program. I do recording in Logic, sometimes put some of those recorded tracks in DP to use some of its hot plug-ins and other nidbits, and then I always do some clean post-production work in ProTools - which I feel its best at. Just F around! Try it all! Go nuts! Learn everything you can get your hands on! - The best way to get good at stuff like this. Peace.
-
The bible tells us that the world could change as we know it. For all we know it could be a good thing like, a new technology or world peace. We will just have to wait till 2012 to find out for sure. -feedback by Liliane
-
I have a completely diffrent idea to where using dry ice (or diffrent liquid I cant rember ) and having a magnet which will make another magnet float up in the air, by fixing the things together with some controller magnets with engough power should float (to regulate the altitude) and for momentum I have treated hydrogen fuel less volitile so safer for use, fully rotatable so it can turn corners But the flaw is that I need some material to contain a magnetic field so that when a magnet interrupts the magnetic field it doesnt go haywire and drop like a stone (ALSO stabalizer hover canisters on each side of craft so it doesnt go into a spin
-
How To Make Your Own Counter Strike Source Dedicated Server!
iGuest replied to AbdurahmanL's topic in General Discussion
EasierHow To Make Your Own Counter Strike Source Dedicated Server!!Why don't you just download this patch from this link http://www.mininova.org/com/2570905 and then only choose the patch using Utorrent then open the patch and then install it then you will find Source Dedicated Server on your desktop but you have only one more thing to do before opening it which is if you have a router you will have to open ports and forwarding them from https://portforward.com/ then choose your router then choose counter strike then follow the instructions and now all you have to do is to open the Source Dedicated Server and create the server with your options thats all I hope I was useful -reply by Youssef -
Crazy Painful Itching All Over Body In Winter
iGuest replied to Waqas ahmed's topic in Health & Fitness
Crazy Painful Itching All Over Body In WinterCrazy Painful Itching All Over Body In WinterReplying to (G)Nitin AggarwalIt could be some transient thing... Or it could be this new disease that some are calling Morgellons... No-one knows what started it... Some people think it started from genetically modified insects.See http://www.morgellons-sanctum.org/ for more details.God Bless, Mark-reply by Mark -
A complete source code with screen shot and document for elearning projectServlet And Jsp ProjectA complete source code with screen shot and document for e-learning project in jsp is available for free download at the following site. Very useful for college students: http://a-complete-jsp-project.blogspot.com/ -reply by madhan
-
Best Laptop BrandLaptop ComputersI have an asus M60VP and it has 2x500GB hard drives and 4gb of RAM plus a free upgrade to windows 7 wen it comes out so when buying a laptop ASUS is the best. Plus type in dell quality on google and most of the reviews are bad.
-
bible is false stories The End Of The World By December 21, 2012who said that bible is truth its all false in the words of all sentences are made of lies lies lies lies all lies nobody can say future so please don't trust in bible words trust in our hands and minds ANTI-CHRIST- PURUSHOTH -reply by purushothaman
-
E107 is free to distribute, free to upload. E107 is one of the best content management website systems around, and it's free. Just upload the compressed file and use file manager in your cpanel to extract it. (faster that way). Create your mysql database, create user and pass for the database and then add the user to the database. Then go to your e107 installation page and add the database information. Easy as perverbial pie. I have my e107 site up check it out. http://forums.xisto.com/no_longer_exists/ I modified the theme and made the graphics myself.I host free servers and websites for clans for free so I always use e107, the best. Jack -reply by Jacknite3000
-
How To Acess Domain Control Panel.help Needed
iGuest replied to itssami's topic in Web Hosting Support
access accountHow To Acess Domain Control Panel.help NeededI pre paid the entire year for a web site with yahoo..How do I access this site to add more pictures..Getting frustrated..Please help...I'm a photographer and not a computer tech. -
Enabling Html At A Phpbb Cant get it going ...
iGuest replied to jlhaslip's topic in Web Hosting Support
How to embed the html file on a table according to links?Enabling Html At A PhpbbHi everyone! I'm a beginner user of Dreamweaver. I've made a table and put 10 buttons on left column. I want to put content html files on right of the each buttons. Here is a thing which I would like to do. When I click the button no.1, the content html file of the button no.1 should appear on right hand side column, similarly when I click the button no.2 the content of the button no.2 should appear on the same place where the button no.1 content html was appearing before. It should happen with every button. Could you anyone help me please. Sam -
This was a infuriating and fantastically challenging game. Quite unique in its operational subterfuge and tension. It is very atmospheric and covers a stimulating array of theatres of operation. Graphics are quite good (in excess of what is needed to enjoy the game buzz) sound could be better with greater incidental ambient sounds. All in all I'd give it 5/5 Really looking forward to the sequel, Death to Spies: Moment of Truth out Q3 2009 (Can't wait). Will be a welcome release from the nightmare bugs of STALKER, Clear Sky Like Sniper Elite this is a woefully overlooked game and shows just how far up the backsides of big game developers and distributors so called games reviewers will crawl to sully their compromised intellects. Crysis in journalistic ethics.
-
I just soooooo totally agree with the issue.Uninstall FirefoxReplying to snlildude87Actually this whole "****ing art form" of "fully uninstlling" and then reinstalling, only to find that nothing much more than the icons had been removed and then reinstalled with all the system files being in place- "Oh look golly - it's completely brand new fresh installation and it even comes with all my book marks, cookies, pass words - everything - Isn't that amazing!"Jezez those computer people are clever arn't they!"Oooooop's hang on wait a second! All the old faults and hanging and slow loading times are still there too!"This "****ing idiotic" practice from Microsoft and their "completely remove" which doesn't, has now carried over into Ubuntu...And who is the stupid **** that dreamed this up? Who is the ****ing moron who doesn't understand "completely remove" means all of it is gone- not just the desk top icons?Who can I bash senseless over this "No does not mean yes" bull****?-reply by Irate Shane
-
We don't need a single superpower...India.China,usa and eu everyone is becomeing super power and don't forget it is not 1909 it is 2009 and the world is run on business interst, so no one is taking risk to dominate other...We don't need any super power ,we want a peacefull planet...For every one...
-
I love SIMCitySim CityI've played all the SimCity games (Classic to Societies), and I've found that they always get better. I personally would recommend the WHOLE SimCity and The Sims series to anyone who loves Simulations. If you'd like to go even farther, try the whole SIM/SIMS series from Maxis/EA. They've done wonders! -reply by CHADB3LOIN
-
Review Of Marapets A review about marapets.com.
iGuest replied to ZacN's topic in Websites and Web Designing
Neopets vs other sites?Review Of MarapetsThere seem to be a trend with comparing Neopets to other sites lately..I?ve been on that site for over 9 years now, lurking, playing, observing..But the last 2 years I?ve actually become utterly bored, annoyed and actually a tad irritated at Neopets..Not at the site, the users or anything like that, but the lack of accountability and the fact that you cannot for your life make sure that their staff is adressing a glitch or even bothering when something is clearly wrecking havoc. It?s like it?s 200 miles between the users on the site and the staff. The only time the users can ask questions is through their so-called "newspaper", an in-game produced thing with members filing stories, comics and so on..There they have an editorial where users are supposedly able to turn with questions and then they get to hope that they get an answer. Thing is, the editorial looks the same, week after week. Nothing but small questions about what faeries come from, what?s their favourite pet, is this or that allowed and so on.. The asking about rules and situations, yes, I can understand that..But of all important questions there are, they never choose to answer something that actually helps the people playing. If a pet for example looses their clothes (items attached through the pet through so called painting, an act where a magical paintbrush gives the pet a new appearance) through a glitch on the site, the player is left to fix it by him or herself. Now, Paint brush clothes can, while they?re expensive, be replaced.. But then we have "special" colours that are obtained through something called The secret Laboratory. THOSE clothes can?t be replaced.Thing is, without the clothes the pet looks just regular, all that painting or zapping, as it?s called when the laboratory causes the colour-change, all has been for naught.The player has to then either choose to repaint his or her pet to another colour or keep zapping and hope for the best, unless there?s a helpful person willing to aid with missing clothes or other items. There are other glitches as well, not to mention the now half-insane language filter which censors words as it sees fit (since when is the word "back" in the meaning "mail me back" been a bad word?) and then there?s the moderators that sometimes go out on warning/suspension-sprees.. A friend of mine got warned because she had mentioned that she needed to leave the board so she could eat breakfast. The "no real world topics"-rule is also insane..While I understand that some topics shouldn?t be brought up, I also understand that if someone wants to talk to their friends about the weather or something, it?s no biggie.. The rule also don?t seem to cover things like Nickelodeon-characters, shows, incidents in shows and similar. I?d rather see the site write better rules on the topic, or be consistent..As it is now, no one really knows what is what, since one person gets a warning while another don?t for the same apparent breaking of rules. This confusion is also a ground for the growing rudeness generally seen on some boards. I would like to point out though that some people seem to think that other people are rude because they won?t give away one of those magic paint brushes or items of a high value for free so it?s a question of interpretation there.. As it is now, they have a "no namecalling" rule, which the more opportunist members of the community has chosen to interpret as "it?s against the rules to point out to me that I?m begging, because you?re then calling me a beggar, and that?s namecalling..So give me my stuff now!" I?m still on that site, but I keep to myself, my friends, my pets, I follow some events that show up annually and that?s it..The general atmosphere on the site isn?t inviting to interact with other people more than necessary anymore. Another quick notice is that the adverts have increased to an obscene amount since 2007. Some parts have a hard time loading now, with areas made over to be little animated hamlets or similar together with annoying banners and adverts loading all over the place. You can get rid of them with firefox, but if you?re stuck, like me, on the IE8..Then you?re bound to get problems. But all isn?t bad..There are a few bright lights among the users..It?s too bad that they feel they have to do the work that the site moderators and staff actually could and should do instead of them. -reply by Meep -
What Was Your Worst Heartbreak [true] Story?
iGuest replied to saitunes's topic in Dating And Relationships
I met him at work. And at that moment, I had no idea. One day, he added me to MSN, and since then, we talked all night , EVERY night .. And then eventually we started to see each other outside of work. I did like him, but for some reason I did not think I wanted to be with him. He was one year younger than I was, which I did think was a little wierd, so I think that had a lot to do with it. But we grew closer and closer, and we had a really good relationship.. But nothing was official. Here is the thing; I also liked another boy. I don't know how this could happen. I really liked them both. But I told the younger boy I didn't want to be with him anymore. I didn't tell him exactly why, but it was because I wanted to be with the other guy. What ended up happening was after I hung up the phone after telling him. I went blank, and one minute later I was crying my eyes out. I realized I really really did want to be with him. I may have even been in love. So I stopped talking to both of the guys, but all I really wanted to do was talk to the one. But he did not want anything to do with me. So time went by, and eventually we started talking again. I apologized thousands of times, and somehow it worked. We got back together, and it was soo perfect. We had the best relationship you could ask for. It was the first time I had been in love, and it was deep. So all was good... So I thought. On my birthday, I noticed something really wierd. It just seemed like he wanted to be somewhere else.. Nowhere in particular, but not with me. He got me a really beautiful heart/key diamond necklace, and it was really sweet.. But the way he was treating me wasn't. After that day, it got worse and worse. We talked less and less, and saw each other rarely. It eventually got to a point where he would not answer me at all. When I called, his parents would say he's not there, and when he was there, he said he was busy playing video games. One day, we got in an argument, and he told me that he only told his parents to say that, and only said he was playing games so that he didn't have to talk to me. Then he said he stopped talking to me because someone better liked him. And when I asked him why this all started on my birthday, he told me it was because he was bored. Everything just fell apart. It has been a very long time since that all happened, but I still think about it ALL the time. .. I really really loved him -
how do I do this on windowns vista home basic?
-
Michael Jackson Was An Alien? Michael jackson, theory, alien
iGuest replied to fermin25's topic in Science and Technology
my opinion on this...Michael Jackson Was An Alien?tho I will agree a do smoke pot a lot...I did have this crazy conspiracy for the king of pop. what if many lightyears away there was a planet, and in this planet everything was perfect. The planet was smart enough to see us from the great distance, and saw all the war and violents and stuff back in the 40's and 50's...And how our world was so cruel and different from ours. Then in the unknown alien race one brave alien volentered in a quest to bring peace to planet earth. the alien community liked the idea and morphed the alien in the form of a human child. Hence michael jackson was born. With his music he changed the world. He was in charity events, and loved everyone. But being in our polluted atmosphere for to long caused the alien physical changes hence the skin condition he had. Then the trail for child molestation...The poor alien found no harm in playing with children, as it was a normal custom in there alien world. As the decades passed by...Micheal has made different races unite,made children happy,healed the world and had a quest for a perfect earth. As time went on the alien could not adapt to our atmosphere. The hence Micheal Jackson died. all in a quest to make a world a better place. ISNT THAT CRAZY?!?!?! I thought that while I was stoned and it sounded insane! like the day the earth stood still mixed with E.T. And ****! lol...I'm actually a big michael jackson fan and he is definatly a musical prodigy! R.I.P. MJ -reply by drykilllogicfan102