Archive for the ‘c++’ Category

C# on the Mac with Eclipse

Monday, April 20th, 2009

It looks like developing using c# and eclipse on the Mac is pretty easy, at least on first glance. Here's a good guide to get started. It only took about 2 minutes to go from "I think I'll give this a shot" to "sweet it compiled."

Turning to the Dark Side for a bit….

Friday, September 19th, 2008

For better or worse, I'll be doing c# development for a while. I've never been particularly fond of Windows, so we'll see how things go. I can say that I did manage to blue screen my box on day #2. If anyone has any good c# tutorials or books ...

External Libraries in XCode

Wednesday, February 6th, 2008

I need to compile something and use the MySQL C++ library. I have mysql and mysql++ already compiled, I won't go over how to do that now. I added the following code to the top of my source: #include <mysql++.h> I got an error /Users/jhaddad/dev/search_engine/main.cpp:4:21: error: mysql++.h: No such file or directory Not ...