- 1,325
- Posts
- 16
- Years
- Age 35
- Seen Jul 17, 2012
I am. I'm actually using it right now. It's been pretty great so far.Which reminds me, who is very anticipative of Windows 7?
I am. I'm actually using it right now. It's been pretty great so far.Which reminds me, who is very anticipative of Windows 7?
I am. I'm actually using it right now. It's been pretty great so far.
Yeah, that's enough. That's how much I have. I think Aero was hogging so much of my memory because of my crappy video card (Intel). It has to use some of my actual RAM for the video card. (Yuck! I'm not much of a gamer, though.)
I know what you mean. Aero kinda got on my nerves after a while. My computer came with Vista Home Premium on it. I've never actually seen what features aren't available in Basic, but if I had to buy Vista, that would be the version I'd want. For some reason, the engineering school here recommends Vista Ultimate, which I think is a complete waste. Wow, that is a limited amount of RAM. I'm amazed that you don't lag more than that.I find Aero itself completely hideous in an appearance standpoint. Vista Basic, which might as be Aero without the transparency and extra features like thumbnails and all of that available. It does just what it needs to do and still manages to maintain a beautiful appearance. It doesn't exactly drain my PC as much as it used to.
I have off days where my computer lags like crazy, but as far as that goes, it hasn't happened in a while and I haven't updated with anything since Service Pack 1. With that said, I reinstalled Vista a few weeks ago, and still haven't installed Service Pack 1. So, I really find no need to do so. Updates isn't really a concern with me to be honest. Regardless of what may happen.
This is coming from someone who runs a machine with a limited amount of RAM consisting of 510 MBs.
That can be a problem for gaming. Windows 7 works with all of the older apps that I use, but like I said, they're not games. I like messing with C/C++/PHP whenever I get really bored. That infinite popups thing sounds really fun (and evil).But I game too much. It's all Call of Duty with me when I'm boored.
And when i'm REEEALLY boored....I play with Visual Basic to come up with something that will serve as a good April Fools prank (besides infinite popups).
I know what you mean. Aero kinda got on my nerves after a while. My computer came with Vista Home Premium on it. I've never actually seen what features aren't available in Basic, but if I had to buy Vista, that would be the version I'd want. For some reason, the engineering school here recommends Vista Ultimate, which I think is a complete waste. Wow, that is a limited amount of RAM. I'm amazed that you don't lag more than that.
That can be a problem for gaming. Windows 7 works with all of the older apps that I use, but like I said, they're not games. I like messing with C/C++/PHP whenever I get really bored. That infinite popups thing sounds really fun (and evil).
C+ isn't a language. XDC and C++? I've been hearing a lot about those and I'm just wondering what the waffles is the difference between all these C, C+,C++,C#, and such languages.
C+ isn't a language. XD
C# is mainly a Microsoft-standard. It's also not machine-compiled like C and C++ are. C++ is an improved version of C (it even says so in its name: C++ means "add one to C"). There are syntax differences, new features, and some other things. It's better than C in my opinion, but I mostly write code in C.
It's quite possible, but the syntax of the two languages are very different. (I had Visual Basic in high school. I wanted to take Java, but was never able to!) One thing that will really get on your nerves is memory management. I think that was made a little easier in C++, but it's still a big pain.So If I am learning Visual Basic at the moment do you think I could make a drum tab program with C++ in under 6 months? :3
Aww. :(I really have no clue what you guys are talking about :D
But, you should visit the Leave/Absence thread.
Just letting everyone know I'm..You know.
<javascript>If {Booloan = True}
(Cry like there is no tomorrow on this)</javascript>
It's quite possible, but the syntax of the two languages are very different. (I had Visual Basic in high school. I wanted to take Java, but was never able to!) One thing that will really get on your nerves is memory management. I think that was made a little easier in C++, but it's still a big pain.
#include <stdio.h>
int main() {
int some_var;
if(some_var > 0) {
printf("Variable: %d\n", some_var);
}
return 0;
}
int some_var = 1;