1
vote
2answers
390 views
What do I need to compile the kernel on Ubuntu Eeee?
I'm trying follow a tutorial to create a custom USB driver in Linux and I hope to develop this thing on my Eee PC with Ubuntu Eee using g++. Unfortunately to follow the tutorial I need the linux/m …
2
votes
9answers
591 views
How can you do C++ when your embedded compiler doesn’t have operator new or STL support?
I am working on a group senior project for my university and I have run into a major hurdle in trying to get my code to work.
The compiler that we have for our 8 bit Atmel microcontroller d …
9
votes
9answers
438 views
Leveraging hobby experience to get a job
Like many other's I began programming at an early age. I started when I was 11 and I learned C when I was 14 (now 26). While most of what I did were games just to entertain myself I did everythin …
1
vote
What is a performant string hashing function that results in a 32 bit integer with low collision rates?
Why don't you just use Boost libraries? Their hashing function is simple to use and most of the stuff i …
4
votes
Get/Set in the c++ world, faux-pas?
Encapsulation is an OOP concept and it applies to all OOP languages. Public data members would break encapsulation. This may be fine if you have a very simple object which does not need encapsulat …
1
vote
What’s wrong with C++ compared to other languages?
The greatest pitfall of C++ is the all C++ code that has been written incorrectly. C++ is incredibly complicated and it doesn't offer much of a buffer from the complexity of writing code. Many th …
