- Strength to Increase Rep
- +12
- Strength to Decrease Rep
- -3
- Upvotes Received
- 69
- Posts with Upvotes
- 58
- Upvoting Members
- 31
- Downvotes Received
- 7
- Posts with Downvotes
- 6
- Downvoting Members
- 5
Student
- Interests
- Programming, sports, reading, writing, music (listening, playing, writing, attending), film, and being…
- PC Specs
- Processor: 8086 16 bit processor Minimum device size: 3.3um Clock Speed: 5MHz RAM: 64kB Operating System:…
| |
Re: >> a couple of McVitie Digestive biscuits You've mastered the urge not to eat the whole packet!? Wow! I'm drinking Barry's Tea (the only tea for an Irish man!), and eating an apple I picked from my garden. Thinking about making a sandwich though. I had an omelette earlier today … | |
Re: 3 :| I don't like scoring low in tests. I wanna take it again. I failed miserably :'( Anyone here give grinds??? | |
Re: [inlinecode]MessageBox(0,"Message body", "Message title", MB_OK );[/inlinecode] might be what you're looking for. [inlinecode]#include <windows.h>[/inlinecode] to use it. | |
Re: >> I fail to see why I should show up at school in my underwear unprepared for a test just because life is short. I always believed that ... fantasy lacked in body the full humiliation which a true nightmere should bring to the dreamer -- at least you had … | |
Re: I normally don't do it, but here's a solution:[code]#include <stdio.h> int main() { printf("1 5 7 11 13 17 19 23 25 29 31 35 37 41 43 47 49 53 55 59 61 65 67 71 73 77 79 83 85 89 91 95 97 "); return 0; }[/code] | |
Re: 796 I don't like counting down. I prefer the other one. Ye should'a' started at a million or something. | |
Re: I wasn't going to, but then I got bored so I did. These are the ones Grim got bored of answering. ... >> Why is it that people say they "slept like a baby" when babies wake up like every two hours? Babies can sleep anywhere; in cars, on people, … | |
Re: I think it was inspired by LOTR :) As in common tongue. Interesting idea. Kinda makes sense to have one though. | |
Re: Well in that simplistic argument you're probably right. However. What you're missing out on is that if God created mankind, and if they were created in his image to remain as his image one should live in his presence, and it would only be in continually living there that one … | |
Re: >> Some astronomers say that it might trigger a shift of the earth's magnetic poles, OK. Fields decay with 1/r^2 ... so ... 1/light-squared-years is very very small. | |
Re: >> and most people who do work for charities don't do it for free Being a poor student I tend to avoid people collecting for charity on the streets. Every now and then I can't and when they talk to me and ask for 20 quid a month I ask … | |
Re: aa is a pointer so you have to either dynamically allocate an instance of a, or set it to the address of an already instantiated instance, and call [inlinecode]aa->getAttribute();[/inlinecode]. Alternatively do[code]aa a; a.getAttribute();[/code] | |
Re: Well, this is going to be a long list. I like lots of different styles of music ... in no specific order (other than as they come to me) - Led Zeppelin (they probably are my fav band), Rodrigo y Gabriella, Dire Straits, Hendrix (sometimes), Damien Rice (not his recent … | |
Re: I'm assuming you don't want to use the cosine function either :) You could create a table of results and read the values off that instead of using the sine function. Alternatively you could use exponentials and imaginary numbers ... | |
Re: I really don't understand why I love this quote so much, but I do:[quote=Lady MacBeth]The Thane of Fife had a wife; where is she now? What, will these hands ne'er be clean? No more o' that, my lord, no more o' that: you mar all with this staring.[/quote] | |
Re: Also, 4 of your posts in the front page of the lounge have 'awesome', or 'amazing', in them :) That is pretty odd though. | |
Re: I once purposed to a lady friend and she said no ... broke me heart ... I still think about her. Sure we were like 7 but ... that's not the point. | |
Re: 117.67. Don't think it's a very good test. What it measures what you have watched. What you've read. What you've seen. etc. What does toy story say about how smart you are? In my opinion an IQ test should give you something (a picture, piece of text, etc), and ask … | |
Re: Well dictatorships have a horrible tradition of getting into wars and democracies have a horrible tradition of starting them ... I don't know which is better.* * don't take that too seriously. >> China swapped it to us for 99 years. We gave it back in 1997 And where's the … | |
Re: I only ever had a sega. Oh. I had a PS1 too, but didn't play it all that much. I loved my Sega. Knew all the cheats. All the shortcuts. Secrets to all my games :) I think I obsess easily ... might be one of my more psychopathic traits, … | |
Re: What would be more interesting would be if he measured the current from it. Getting the voltage is fine, but what will tell you how feasible it is to power your phone is not voltage, but current. The concept of getting voltage is fine, but the phone is a hoax, … | |
Re: Consider what happens if all the numbers in the array are negative. Then the [inlinecode]if(a[i]>max)[/inlinecode] will never return true. There are two ways you can do this. Either set max to INT_MIN or set max to a[0] and loop from 1 to n then. | |
Re: ALso a space isn't going to be a good method of word termination specification. Some people like to put two spaces after their full stops. Some people don't put spaces after comas etc. What you could use (though it probably is a bit overkill), is use strtok - [URL]http://www.cplusplus.com/reference/clibrary/cstring/strtok.html[/URL] It's … | |
Re: [CODE] void TWQ::getD(AnsiString carNo,Node DInQ[],int& size) { aQ=current->getDQ(); aQ.getElement(i+1,nameIn); DInQ[i].getName(); }[/CODE] Pseudo-code is pretty much a more readable way of printing real code. I find it kind of amusing that you can write the code but have difficulty in writing the psuedo-code :) Normally it's the other way around. I'm … |