| bio | website | |
|---|---|---|
| location | Greece | |
| age | ||
| visits | member for | 2 years, 6 months |
| seen | 9 hours ago | |
| stats | profile views | 1,240 |
A freelance Computer Engineer, with experience mainly on C, Java and all things Un*x...
|
May 4 |
comment |
Alternative to heap allocated strings in C (with long lifetimes) What is the problem with creating an API that returns char * pointers? Apart from the lack of protection w.r.t. write attempts, that is? |
|
Apr 21 |
comment |
Find all occurrences of a substring in Python @BlaXpirit: true, the output of range() is zero-based. Thanks... |
|
Mar 18 |
comment |
How can I provide Jasper Forest CPU in linux kernel @AmitSinghTomar: so you are using an embedded board... Which board is that? |
|
Mar 17 |
comment |
Why are int 32 bits? I would argue that even now most processors that are running Java code are 32-bit - unless there are mobile phones with 64-bit CPUs onboard... |
|
Mar 17 |
comment |
How can I provide Jasper Forest CPU in linux kernel Is there something that is not working for you? As far as I can tell your kernel version should support that CPU reasonably well - linux-3.4 was released almost two years after that processor... |
|
Mar 17 |
comment |
Sorting names according to last name in java @bali182: good enough, although I would also explain in a couple of sentences why it is a bad idea... -(-1) :-) |
|
Mar 17 |
comment |
Sorting names according to last name in java @HovercraftFullOfEels: I saw exactly this kind of "design" in a bit of credit-card processing code recently. It would break horribly (and I do mean horribly) when someone had a middle name... |
|
Mar 17 |
comment |
Sorting names according to last name in java I might let such an answer go if it was surrounded with a whole bunch of If-you-do-this-the-world-will-end disclaimers, but not like this... |
|
Mar 17 |
comment |
Sorting names according to last name in java @user1320030: are you going to post the exact messages or not? If not, you are wasting our time. From your last comment one realizes that there is a lot missing from your program - probably much more than we can reasonably help with here... |
|
Mar 17 |
comment |
Sorting names according to last name in java @bali182: 1. the OP created their own class, that is not the same as a single string. 2. Letting "solutions" like this go unpunished only helps them propagate to the ignorant. As a TA I saw enough of such "solutions" without having the students get ideas from SO... |
|
Mar 17 |
comment |
Sorting names according to last name in java @user1320030: what errors? Please edit your question and copy and paste the exact message. Do not describe the message! |
|
Mar 17 |
comment |
Sorting names according to last name in java Sigh, why-oh-why do people insist on deleting incorrect posts? Deletion is for spam, non-answers and such. If it is a bad answer just downvote the thing! -1, BTW. |
|
Mar 17 |
comment |
Sorting names according to last name in java @user1320030: Don't explain what it says. Post the whole d**n message and let us do the explaining for ourselves... |
|
Mar 17 |
comment |
a class method that can create an object @adrain: I would start with adding a constructor to each of those two classes... |
|
Mar 17 |
comment |
a class method that can create an object @planty182: BTW, please use StackOverflow mark-up for links etc. Also, signatures and taglines are not allowed. |
|
Mar 17 |
comment |
a class method that can create an object @planty182: it is customary for software classes to represent the relations of objects in Real Life. Having Subject inherit from Lecturer is as unintuitive a design as it can get. Mathematics should never belong to the same class as Mr. Jones the mathematician... |
|
Mar 17 |
comment |
Better understanding the LRU algorithm @user18490: Quite honestly I had something like Java's LinkedHashMap in mind. It's been some time since I last worked with C++, so I cannot tell if there is an equivalent structure in the STL. |
|
Mar 17 |
comment |
Better understanding the LRU algorithm +1 for providing actual code, although I would generally prefer a combined data structure that does not need a second look-up on entry replacement. |
|
Mar 15 |
comment |
Shuffle matrix in C Please post an SSCCE - I have not put your code through a compiler, but it does not seem as if it should compile as it is... I think I see a few errant parentheses and missing brackets in there... |
|
Mar 14 |
comment |
Why does fgetc function adds a carriage return Opening the input file as text would only make a difference on a Windows/DOS system. UNIX systems treat both modes the same... |