Isak Savo
|
Registered User
|
Developer from Sweden, mostly developing in .NET for a windows platform but has a background in C and Linux.
|
|
1h |
comment |
How can I know where the segment of memory is all Zero +1.. very clever |
|
17h |
comment |
Sqlite API boolean access You don't have to worry about performance problems though.. remember that everything is already text inside SQLite so you are just doing some of the work that (admittedly) sqlite should do itself. I don't know what your code structure is, but in an OOP design, i'd create a method or property to get the value and inside that method do the conversion. This would also shield you from future changes to the DB schema (if you decide to use ints later for example) |
|
18h |
comment |
How do I determine an open file’s size in Python? incrementing an integer is about the fastest thing a CPU can do, so probably no - this won't be inefficient :) |
|
18h |
comment |
WPF - how to know whether window was closed by “x” button? I think it would be helpful if you explain why you want to do this. To the user, it shouldn't matter whether its closed by the X or a menu item. Maybe then we can help you achieve what you really want to do instead |
|
18h |
answered | How do I determine an open file’s size in Python? |
|
18h |
accepted | Sqlite API boolean access |
|
18h |
comment |
Sqlite API boolean access But surely somewhere the value is used? Are the triggers using the column value? How about the #defined statements? If it's never used, then why is it there? ;-) |
|
18h |
answered | Sqlite API boolean access |
|
2d |
awarded | ● Mortarboard |
|
Dec 2 |
revised |
Regex - If contains ‘%’, can only contain ‘%20’ fix code according to comments |
|
Dec 2 |
comment |
Regex - If contains ‘%’, can only contain ‘%20’ About %200: I was under the impression that multi-octed characters (e.g. UTF-8 encoded characters) would be URL-encoded with a single '%' sign, but I may be wrong here. If so, then no need to check for subsequent digits |
|
Dec 2 |
comment |
Regex - If contains ‘%’, can only contain ‘%20’ Johannes: good point |
|
Dec 2 |
answered | Regex - If contains ‘%’, can only contain ‘%20’ |
|
Dec 2 |
answered | MS Surface animating an SVI along a straight line |
|
Nov 17 |
comment |
Improving the quick sort. +1 for suggesting something that may actually significantly improve performance. Great! |
|
Nov 17 |
comment |
I need high performance. Will there be a difference if I use C or C++? I'd even go so far as to argue there won't be any considerable performance differences even if he used virtual functions. :) |
|
Nov 17 |
answered | How to open an app main interface from the executable instead on the tray icon in c# |
|
Nov 10 |
comment |
How to make the default value of a type as Nothing? I agree. At first when they came they sounded really sweet but now I tend to almost never use them. It's a mess with all the .HasValue and typecasting that is needed. |
|
Nov 3 |
awarded | ● Notable Question |
|
Oct 27 |
comment |
Have iTunes inform me when I programmatically sync iphone using COM yes I can query and enumerate them. I can also enumerate the tracks in each playlist while the sync is in progress.. |
|
Oct 27 |
comment |
Have iTunes inform me when I programmatically sync iphone using COM No, unfortunately not. It makes itunes pop up a dialog asking the user if he really wants the ipod to be ejected during sync. During this time EjectIpod call is blocked. If I click "no", the sync continues and EjectIpod returns with no error message or return value (it's a void method) |
|
Oct 27 |
comment |
Have iTunes inform me when I programmatically sync iphone using COM Good suggestion, but unfortunately it didn't work. I tried both creating a playlist and a folder but I get "source isn't modifiable" exception (even after sync is completed). I guess it has to do with whether you use manual or automatic sync of music on the iphone (i.e. "Manually manage music and videos") |
|
Oct 27 |
answered | WPF Blurry fonts problem - Solutions |
|
Oct 27 |
answered | Find “edges” in 32 bits word bitpattern |
|
Oct 23 |
comment |
Generic type casting method (.Net) Do you want to type cast it to the type represented by the type variable?
How would you declare the castedObj? I.e what type would you give it? There's no point typecasting if you store it as an object anyway... |
|
Oct 22 |
awarded | ● Tumbleweed |
|
Oct 20 |
comment |
What happens in assembly language when you call a method/function? No, typically the stack pointer (which is usually just a CPU register) is simply restored to its initial value (so this is a single CPU instruction). I've updated my answer to clarify this |
|
Oct 20 |
revised |
What happens in assembly language when you call a method/function? clairify how stack clearing is done |
|
Oct 19 |
accepted | What happens in assembly language when you call a method/function? |
|
Oct 18 |
answered | c difference between malloc and calloc |
|
Oct 18 |
awarded | ● Nice Answer |
|
Oct 18 |
comment |
Array of pointers initialization. No, you are allocating the individual strings in the array. You must first make sure you have room for 16 pointers to the strings. Try what Lukas suggested and you'll see it works. Also remember you need to free each string + the entire array with 16 individual calls to free() |
|
Oct 18 |
comment |
How to handle execvp(…) errors after fork()? Good call Douglas, updated my response |
|
Oct 18 |
revised |
How to handle execvp(…) errors after fork()? suggest _exit instead of exit |
|
Oct 18 |
comment |
How to handle execvp(…) errors after fork()? Good suggestion about unusal status Jonathan. Will update my post to include this. Regarding SIGINT, you can (and SHOULD!) avoid that by using the WIFEXITED() macro. This evaluates to TRUE if the process died a normal death and FALSE otherwise (e.g. killed by a signal) |
|
Oct 18 |
answered | What happens in assembly language when you call a method/function? |
|
Oct 18 |
revised |
How to handle execvp(…) errors after fork()? add notice about sigaction and SIGCHLD |
|
Oct 18 |
comment |
How to handle execvp(…) errors after fork()? Yes it will, there's also a SIGCHLD signal that you can trap in your application. That will make the OS call your function whenever one of your child applications terminate. You can from there examine the return value. Use the signal or sigaction calls to listen to that signal (it's ignored by default) |
|
Oct 18 |
comment |
.NET movement of threads between cores It's more like "this thread has executed on this core, and will (due to things like CPU cache) probably execute faster if I schedule it on this core again". I haven't read the papers you cite so I can't comment on them. The scheduling algorithms in windows and other systems are more advanced than what I generalize them to, but the idea is the same. It's faster to run a thread on the same core, so the scheduler is more likely to put it there again. But no guarantees unless you manually set thread affinity. |
|
Oct 18 |
comment |
How to handle execvp(…) errors after fork()? It's just 8 bits of data. It doesn't matter whether you interpret them as signed of unsigned. (just be consistent) I'm not sure what the POSIX standard says, but it's quite common to return negative values from main() to indicate error |
|
Oct 18 |
answered | How to handle execvp(…) errors after fork()? |
|
Oct 16 |
comment |
Where are constant variables stored in C? ...or to a constant multiplication, where the 2 would be stored in the actual CPU instruction |
|
Oct 16 |
accepted | .NET movement of threads between cores |
|
Oct 16 |
awarded | ● Civic Duty |
|
Oct 16 |
answered | .NET movement of threads between cores |
|
Oct 16 |
comment |
OOP in C, inheritance, and bugs Fair enough, in an embedded system I agree it may be a bit overweight. Otherwise, using LGPL is pretty safe even for commercial applications from a legal perspective. |
|
Oct 16 |
answered | OOP in C, inheritance, and bugs |
|
Oct 16 |
revised |
Have iTunes inform me when I programmatically sync iphone using COM Add note about what I've tried already |
|
Oct 15 |
asked | Have iTunes inform me when I programmatically sync iphone using COM |
|
Oct 1 |
comment |
What is “strip” (GCC application) used for? While hard disk space is cheap, disk performance is not. The smaller the binaries are, the less disk I/O has to be performed when loading the application/library. |
