Hosam Aly
|
Registered User
|
I'm interested in developing top quality software, optimizing performance, refactoring code, and learning about core computer science topics. I am currently looking for a job in the EU, especially in UK. For more information about me, you can see my LinkedIn profile, or you can read my CV. |
|
Dec 16 |
awarded | ● Notable Question |
|
Dec 11 |
answered | How to get *internet* IP ? |
|
Dec 7 |
comment |
Nested Function in Python You're right Craig. Thank you. |
|
Dec 6 |
awarded | ● Mortarboard |
|
Dec 1 |
awarded | ● Notable Question |
|
Nov 28 |
awarded | ● Yearling |
|
Nov 18 |
comment |
SQL “Join” on null values I find no reason for this answer to have -1 after being edited, so +1. |
|
Nov 17 |
asked | Making Python Use Code in My Directory (not that in /usr/…) |
|
Nov 14 |
comment |
Is this (Lock-Free) Queue Implementation Thread-Safe? Thank you. I will check it out for more ideas. However, the ConcurrentLinkedQueue is too complex, as it supports many methods, while my queue is much simpler, which allows me to make more assumptions and try more optimizations. |
|
Nov 9 |
comment |
Rewriting multiple if-statements I think "Rewriting multiple if statements" may be a more descriptive title. |
|
Nov 9 |
comment |
How should a Java program handle an external mail server being down? If you want to handle crashes, then you shouldn't be writing to the same file, because a crash while writing may cause large portions of data to be lost. Using multiple files is probably safer. |
|
Nov 9 |
comment |
How do I iterate through each element in an n-dimensional matrix in MATLAB? May I ask what you need the iteration for? Maybe there is a "vectorized" way to do it instead... |
|
Nov 4 |
comment |
Is this (Lock-Free) Queue Implementation Thread-Safe? You're right. I had missed that totally! I fixed it now. Thank you! |
|
Nov 4 |
revised |
Is this (Lock-Free) Queue Implementation Thread-Safe? Fixed a NullPointerException issue in `getObject()` |
|
Nov 1 |
comment |
How can I calculate an md5 checksum of a directory? Note that checksums don't uniquely identify anything. |
|
Oct 28 |
comment |
Detect system architecture (x86/x64) while running @Levo: I have created an example. |
|
Oct 28 |
comment |
Detect system architecture (x86/x64) while running @Amit: Hmmm... I'm not sure. Maybe I'm wrong, or maybe your processor supports some form of 64-bit! |
|
Oct 28 |
revised |
Detect system architecture (x86/x64) while running Added an example on Windows |
|
Oct 28 |
comment |
Detect system architecture (x86/x64) while running @Amit: What's your 32-bit processor type? |
|
Oct 28 |
revised |
Can you explain the concept of streams? Fixed a grammar mistake |
|
Oct 28 |
comment |
Detect system architecture (x86/x64) while running @Amit: What about clflush size? |
|
Oct 28 |
answered | Detect system architecture (x86/x64) while running |
|
Oct 28 |
comment |
Is this (Lock-Free) Queue Implementation Thread-Safe? @Stephen: You're right. That's certainly true. Do you have any other suggestions or notes about the code? |
|
Oct 28 |
comment |
Is this (Lock-Free) Queue Implementation Thread-Safe? @Stephen C: Yes, it can, but this only delays processing of that element. I guess it depends on how we view it, whether the availability of an item in the queue is required immediately or can be received later on. I have fixed it anyway (I think), so thanks for pointing it out. |
|
Oct 28 |
comment |
Is there a tool for Java similar to Microsoft’s CHESS? I didn't know about it. I guess CHESS is more comprehensive, but thanks for the information! |
|
Oct 28 |
comment |
Is there a tool for Java similar to Microsoft’s CHESS? That's interesting; thanks for the suggestion. But is the Java memory model similar to that of .NET's? I'm worried that running Java code on .NET may cause different issues to emerge... |
|
Oct 28 |
comment |
Is this (Lock-Free) Queue Implementation Thread-Safe? Thanks for your help. I have updated my code to make next volatile, and renamed nextNode to valueNode in getObject() to make its purpose clearer. But I guess that reading a stale value in the reader thread doesn't make the code "not thread-safe"; it's just a performance issue, right? |
|
Oct 28 |
comment |
Is this (Lock-Free) Queue Implementation Thread-Safe? Thank you! I have fixed the memory leak issue, and made next volatile. But I don't yet understand why value needs to be volatile. Could you please explain further? |
|
Oct 28 |
revised |
Is this (Lock-Free) Queue Implementation Thread-Safe? Made `next` volatile, released the value pointed to by `head`, and renamed `nextNode` to `valueNode` in `getObject()` |
|
Oct 27 |
asked | Is there a tool for Java similar to Microsoft’s CHESS? |
|
Oct 27 |
asked | Is this (Lock-Free) Queue Implementation Thread-Safe? |
|
Oct 22 |
comment |
std::pair<int, int> vs struct with two int’s I believe you mean ACM ICPC. |
|
Oct 20 |
comment |
Unicode handling in ReportLab Thanks for your help, but that's not the issue. On Python 2.6.2, using the escape sequences above in a normal string yields the same output. |
|
Oct 20 |
revised |
Unicode handling in ReportLab Added an example that causes the error. |
|
Oct 20 |
asked | Unicode handling in ReportLab |
|
Oct 20 |
answered | Is it possible to ignore certain unit tests? |
|
Oct 20 |
comment |
Use sed to delete all leading/following blank spaces in a text file While @ghostdog74's answer is a good one, @mouviciel's answer is the correct one, according to your question. I upvoted both, but I believe @mouviciel deserves to be accepted as the correct answer. |
|
Oct 20 |
revised |
Problem with calling a run file from c# Application Improved formatting, and fixed a few grammar mistakes |
|
Oct 20 |
revised |
Nested Function in Python Added a link to the original code in which I found this example. |
|
Oct 20 |
comment |
Nested Function in Python I've added a link to the original code in a comment on my question. As you can see, mine is a simplified example, but it's still almost the same. |
|
Oct 20 |
comment |
Nested Function in Python Thanks, but as you can see in the snippet I posted, that's not the case here: the nested function is simply being called in the outer function. |
|
Oct 20 |
comment |
Nested Function in Python It's a simplified example. The actual code can be found here: bazaar.launchpad.net/%7Eopenerp/openobject-server/… |
|
Oct 19 |
asked | Nested Function in Python |
|
Oct 17 |
comment |
Finding Fibonacci sequence in C#. [Project Euler Exercise] I support @recursive's edit, and I'd add that you should check the values of Container throughout the loop. |
|
Oct 17 |
comment |
5 ways to use the static keyword in Java They are the same, but maybe the interviewer considers them different when used in an interface? |
|
Oct 16 |
awarded | ● Popular Question |
|
Oct 16 |
comment |
Why grouping in a subquery causes problems The point is that using exists is better than using in in this case, because you have to use an index then. |
|
Oct 16 |
comment |
Why grouping in a subquery causes problems You're welcome. :) I am curious how much improvement did it do... |
|
Oct 16 |
answered | Why grouping in a subquery causes problems |
|
Oct 16 |
revised |
Get the first few words(100 or 200) from a long summary(plain string or html) using c#? Made the HTML tags visible |
