| bio | website | jalf.dk/blog |
|---|---|---|
| location | Denmark | |
| age | ||
| visits | member for | 4 years, 6 months |
| seen | 6 hours ago | |
| stats | profile views | 10,505 |
Hi!
I'm on twitter. And I have a blog, as linked to elsewhere on this page.
|
11h |
answered | Efficiency of std::min(int) in c++ |
|
19h |
comment |
Can a C++ Compiler Eliminate a Volatile Local Var that is not Read The "inconsistent" behavior is simply that "if you don't tell the function that it is operating on volatile memory (by casting away volatile-ness), then it won't know that it is operating on volatile memory". Also, undefined behavior and evil casts. |
|
21h |
comment |
preventDefault not working for keydown in Safari 5.0.4 @jobzer Did you ever find a solution to this? |
|
1d |
awarded | Good Answer |
|
1d |
comment |
I want a library for droping all packet recived in network card on windows ... Wireshark ? |
|
May 22 |
awarded | Populist |
|
May 21 |
comment |
(Nearly) all garbage collections are full collections "I'm generating a lot of garbage. Why does the garbage collector seem to spend a lot of time collecting garbage?" Really? ;) If you want to minimize time spent GC'in, aim for few, long-lived allocations. The exact opposite of what you're doing now. :) |
|
May 21 |
comment |
Multi-process in WebKit It is possible to do that, yes, but you'll have to do it yourself. Qt doesn't do it for you. It provides functionality for creating windows with tabs, and for drawing a web page, but it doesn't provide any out of the box functionality for rendering each tab in a separate thread or process. |
|
May 21 |
comment |
Multi-process in WebKit Yeah, much. :) (I edited out most of the bold though, to make it easier to read. Just use code markup for actual code (including class names and function names), and write everything else as plain text. Use bold or italic for emphasis only, not to highlight all the nouns. ;)) |
|
May 21 |
revised |
Multi-process in WebKit deleted 71 characters in body |
|
May 20 |
comment |
Multi-process in WebKit In the future, your questions would be a lot more readable if you didn't completely randomly emphasize words or phrases. Why is the note formatted as a quote? Why is some of it bold? Why the word "tabs" formatted as code? It is really much easier to answer your question if you just write it out, in english. Use code markup for actual code, not just for "words which are relevant to programming". I don't actually understand the "note" part. "there really needs to be multi-threaded"? multi-threaded what? And "just something like this", but "this" what? |
|
May 20 |
answered | Multi-process in WebKit |
|
May 20 |
awarded | Enlightened |
|
May 19 |
awarded | Nice Answer |
|
May 19 |
revised |
Why is code compiled in g++ so significantly faste than in microsoft compiler? added 19 characters in body |
|
May 19 |
comment |
Templates from C++ in C @0x90 Include guards protect against the same code being included multiple times in the same source file (because it indirectly includes the same header multiple times). It does not protect against the same code being included into multiple source files. |
|
May 18 |
comment |
Templates from C++ in C @0x90 you realize that include guards wouldn't actually solve the problem, yes? |
|
May 18 |
comment |
Implement Iterators Even When Not Needed? C++ @user2303321: member functions certainly do not take up space in an object. But it's wonderful to see that you haven't even bothered to measure before deciding which solution is best, in what, according to you, is quite performance-sensitive code. Good to see the proudest traditions of computer science being upheld here... |
|
May 18 |
answered | Why is code compiled in g++ so significantly faste than in microsoft compiler? |
|
May 16 |
comment |
Unicode strings on a embedded software What do you need to do with your Unicode strings? Once you start looking at individual characters, things get tricky and you'll need a library with robust Unicode support to do all your string manipulation, but if you just need to store (and maybe concatenate) valid Unicode strings, then you should be fairly safe. |