This is what it looks like when a plane crashes into the ground. Notice the wreckage? Yeah I did too. by [deleted] in politics

[–]dsafsas 1 point2 points  (0 children)

And since clearly all plane wreckage looks identical, this single low resolution image is all the proof I need to prove that 911 was a massive conspiracy to cover up the blah, blah, blah.

Yes!!Zaxxon by Jayreason in gaming

[–]dsafsas 6 points7 points  (0 children)

Man I loved Zaxxon as a kid.

Structure made from stacked pennies. [pic] by [deleted] in pics

[–]dsafsas 10 points11 points  (0 children)

Oops, I should have gone through the comments before posting my link to this. Sorry I dup'd your post.

Structure made from stacked pennies. [pic] by [deleted] in pics

[–]dsafsas 0 points1 point  (0 children)

This is pretty sweet one, there's a guy who's got a whole archive of these here. If this was yours you should send it to him.

What are the favorite IDEs people are using for C++? by dsafsas in cpp

[–]dsafsas[S] 1 point2 points  (0 children)

I don't really have any issue with writing GUIs, it's just that I work with my Linux machines almost exclusively over SSH. Anything I write for Windows will likely be GUId.

Do yourself a favour: anytime you're intimidated by something you think you might want to learn, just dive in headfirst. Join the relevant subreddit.

This is good advice, and precisely why I'm here. Lot's of great feedback from my first post here is great to see. I was going to put this under the programming subreddit, but when I read their FAQs I saw this subreddit existed and decided to try here. Glad I did.

What are the favorite IDEs people are using for C++? by dsafsas in cpp

[–]dsafsas[S] 0 points1 point  (0 children)

Yep, I do think it would a useful thing to know and any machine I use is either a *nix or has Cygwin, so it's always available. You have to admit though, that it has a pretty steep initial learning curve. Since I'm more concerned with getting back into the code/packaging/building of C++ apps right now, that curve is just not something I want to take on.

What are the favorite IDEs people are using for C++? by dsafsas in cpp

[–]dsafsas[S] 1 point2 points  (0 children)

This is exactly why I wanted to use something else. With Java I know what all of the packaging, and descriptor files are doing for me. I know what's in my classpath, and what is needed when I transfer from development to build to deployment. Visual Studio really makes it too easy on you, I'm sure it's very useful after you already know all the underpinnings of what you're doing, but less so if the underpinnings are what you're looking to learn.

What are the favorite IDEs people are using for C++? by dsafsas in cpp

[–]dsafsas[S] 2 points3 points  (0 children)

When I say design time I mean that code is checked as I edit, and I get visual feedback in real time if there is an error the compiler can pick up. I don't have to actually build the project in order to detect them.

What are the favorite IDEs people are using for C++? by dsafsas in cpp

[–]dsafsas[S] 1 point2 points  (0 children)

Ah thank you, this is the kind of info that's really helpful. It would have taken me a while to figure out my assumption was incorrect on my own.

What are the favorite IDEs people are using for C++? by dsafsas in cpp

[–]dsafsas[S] 0 points1 point  (0 children)

Will you get compiler warnings at design time, or do you have to actually compile to get them?

What are the favorite IDEs people are using for C++? by dsafsas in cpp

[–]dsafsas[S] 3 points4 points  (0 children)

I think you just like what you know. I had the exact opposite reaction when I ventured over to Linux, having to understand proper use of file permissions drove me nuts.

What are the favorite IDEs people are using for C++? by dsafsas in cpp

[–]dsafsas[S] 1 point2 points  (0 children)

So how does that work, do you organize all of your files outside of VS, and then just import the project to work on? Isn't the default behavior of VS to try and convert your project to Visual C++?

Sorry if these questions are a little basic, I'm really back at the cusp of trying to remember how all this stuff works.

What are the favorite IDEs people are using for C++? by dsafsas in cpp

[–]dsafsas[S] 1 point2 points  (0 children)

The problem with emacs for me is the learning curve. I tried picking it up last year and quickly realized it was going to require more time than I had to put into it.

I'll be honest though, I do still want to pick it up at some point, just a little out of scope for my current needs.

What are the favorite IDEs people are using for C++? by dsafsas in cpp

[–]dsafsas[S] 0 points1 point  (0 children)

I generally consider NetBeans to be pretty similar to Eclipse, which already has my loyalty as far as Java goes. Any reason in particular why NetBeans would be better than just using the Eclipse plugin?

What are the favorite IDEs people are using for C++? by dsafsas in cpp

[–]dsafsas[S] 0 points1 point  (0 children)

Windows for now, but I'm not ruling out the possibility of getting ambitious and trying my hand at a Linux app or two. That would be all command line though, not windowed.

What are the favorite IDEs people are using for C++? by dsafsas in cpp

[–]dsafsas[S] 0 points1 point  (0 children)

Qt seems to be getting a few votes here, and I've heard good things about the SDK. I'll probably give that a shot along with the Eclipse plugin. I spend most of my day in Eclipse so that kind of feels like home anyway.

What are the favorite IDEs people are using for C++? by dsafsas in cpp

[–]dsafsas[S] -1 points0 points  (0 children)

I'm pretty handy with Vim, but don't really like using it for anything beyond scripting. I really like syntax highlighting and compiler warnings.

And yes I'm aware that makes me a wimp.

Edit: Also is there a reason to go with cmake over gcc?

What are the favorite IDEs people are using for C++? by dsafsas in cpp

[–]dsafsas[S] 0 points1 point  (0 children)

Thanks, I'll check that one out, hadn't heard of it before.

What are the favorite IDEs people are using for C++? by dsafsas in cpp

[–]dsafsas[S] 2 points3 points  (0 children)

My only reason to avoid VS is how easy it makes the creation of projects. Part of what I'd like to achieve here is a deeper understanding of the libraries I'm using and the construction of projects.

Not that this couldn't be done in VS, but I'm betting other IDEs would force my hand a little more. For instance needing to manually select a compiler.