User Marius Kjeldahl - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T20:27:56Z http://stackoverflow.com/feeds/user/116879 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1194113/whats-the-difference-between-ignoring-a-signal-and-telling-it-to-do-nothing-in-p/1194157#1194157 0 Answer by Marius Kjeldahl for What's the difference between ignoring a signal and telling it to do nothing in Perl? Marius Kjeldahl 2009-07-28T13:38:03Z 2009-07-28T13:38:03Z <p>Not sure why it is not working as you expect, but normally when I try to accomplish similar things I also trap the TERM signal in addition to the INT signal.</p> http://stackoverflow.com/questions/1114199/missing-opengl-drivers-on-android-emulator/1114281#1114281 0 Answer by Marius Kjeldahl for Missing OpenGL drivers on Android emulator Marius Kjeldahl 2009-07-11T17:53:18Z 2009-07-11T17:53:18Z <p>In this link:</p> <p><a href="http://osdir.com/ml/android-porting/2009-06/msg00282.html" rel="nofollow">http://osdir.com/ml/android-porting/2009-06/msg00282.html</a></p> <p>it says:</p> <pre>libEGL.so and libGLESv2.so implements EGL and OpenGL ES through libhgl.so and libagl.so. That is, libhgl.so and libagl.so are dlopen()ed by libEGL.so. All EGL and OpenGL ES calls will finally call into libhgl.so and/or libagl.so.</pre> <p>and here:</p> <p><a href="http://osdir.com/ml/android-porting/2009-06/msg00288.html" rel="nofollow">http://osdir.com/ml/android-porting/2009-06/msg00288.html</a></p> <pre>libagl.so is an pure software impl. For your accelerated impl., you need to provide libhgl.so so that libEGL.so will be able to use it. It is expected that libhgl.so implements and exports both eglXXX and glXXX symbols.</pre> <p>I guess that indicates that the missing file will only exist on the device itself, but that the app should run with the software driver on the emulator. The numerous screenshots on the web of OpenGL apps on the Android emulator also indicates that OpenGL should work fine on the emulator. Any other possible reasons why you are not able to get OpenGL going?</p> http://stackoverflow.com/questions/1113214/c-development-for-linux-on-windows/1113225#1113225 5 Answer by Marius Kjeldahl for C++ development for Linux on Windows Marius Kjeldahl 2009-07-11T08:14:40Z 2009-07-11T08:14:40Z <p>Is it a GUI app? And do you have to target Linux specifically? If not, Qt (<a href="http://trolltech.com/" rel="nofollow">http://trolltech.com/</a>) may be something that you can use. It would allow you to more or less develop your whole application on Windows, and then spend a few hours on a linux machine getting the whole thing ported...</p> http://stackoverflow.com/questions/1111028/how-can-i-extract-the-values-after-in-my-string-with-perl/1111077#1111077 0 Answer by Marius Kjeldahl for How can I extract the values after = in my string with Perl? Marius Kjeldahl 2009-07-10T18:03:34Z 2009-07-10T18:03:34Z <p>Assuming your ordering was a typo:</p> <pre><code> #!/usr/bin/perl use strict; use warnings; my $str='a=1 b=2 c=abc'; my @v; while ($str =~ /=(\S+)/g) { push @v, $1; } print join (',', @v); </code></pre> http://stackoverflow.com/questions/1109517/why-do-the-and-lt-operators-return-different-results-in-perl/1109544#1109544 2 Answer by Marius Kjeldahl for Why do the '<' and 'lt' operators return different results in Perl? Marius Kjeldahl 2009-07-10T13:34:20Z 2009-07-10T13:34:20Z <p>Rationale? It's a string operator. From "perldoc perlop":</p> <p><code> Binary "lt" returns true if the left argument is stringwise less than the right argument. </code></p> <p>If that's not what you want, don't use it.</p> http://stackoverflow.com/questions/1103027/how-can-i-change-an-application-icon-programmatically-in-android/1103070#1103070 1 Answer by Marius Kjeldahl for How can i change an application icon programmatically in Android? Marius Kjeldahl 2009-07-09T10:25:27Z 2009-07-09T10:25:27Z <p>Assuming you mean changing the icon shown on the home screen, this could easily be done by creating a widget that does exactly this. Here's an article that demonstrate how that can be accomplished for a "new messages" type application similar to iPhone:</p> <p><a href="http://www.cnet.com/8301-19736_1-10278814-251.html" rel="nofollow">http://www.cnet.com/8301-19736_1-10278814-251.html</a></p> http://stackoverflow.com/questions/1100366/get-vs-post-does-it-really-really-matter/1100403#1100403 0 Answer by Marius Kjeldahl for GET vs. POST does it really really matter? Marius Kjeldahl 2009-07-08T20:32:47Z 2009-07-08T20:32:47Z <p>It depends on the software at the server end. Some libraries, like CGI.pm in perl handles both by default. But there are situations where you more or less have to use POST instead of GET, at least for pushing data to the server. Large amounts of data (where the corresponding GET url would become too long), binary data (to avoid lots of encoding/decoding trouble), multipart files, non-parsed headers (for continuous updates pre-AJAX style...) and similar.</p> http://stackoverflow.com/questions/1096704/how-can-i-extract-abbreviations-from-a-file-using-perl/1096739#1096739 2 Answer by Marius Kjeldahl for How can I extract abbreviations from a file using Perl? Marius Kjeldahl 2009-07-08T08:09:28Z 2009-07-08T08:47:56Z <p>Untested:<pre><code> my %abbr; open (my $input, "&lt;", "filename") || die "open: $!"; for ( &lt; $input > ) { while (s/([A-Z][A-Z]+)//) { $abbr{$1}++; } } </code></pre></p> <p>Modified it to look for at least two consecutive capital letters. </p> http://stackoverflow.com/questions/1096662/want-to-create-a-script-that-takes-backup-of-entire-database-and-downloads-it/1096672#1096672 0 Answer by Marius Kjeldahl for Want to create a script that takes backup of entire database and downloads it Marius Kjeldahl 2009-07-08T07:51:07Z 2009-07-08T07:51:07Z <p>If linux/unix, check out "man pg_dump". It basically dumps whole databases (with all tables and table definitions), e.g. "pg_dump mydb > db.sql"</p> http://stackoverflow.com/questions/1096449/c-string-reference-type/1096461#1096461 2 Answer by Marius Kjeldahl for C# string reference type? Marius Kjeldahl 2009-07-08T06:48:48Z 2009-07-08T06:48:48Z <p>Try:</p> <pre><code> public static void TestI(ref string test) { test = "after passing"; } </code></pre> http://stackoverflow.com/questions/1087843/run-a-script-over-multiple-files-in-unix/1087864#1087864 0 Answer by Marius Kjeldahl for Run a script over multiple files in unix Marius Kjeldahl 2009-07-06T16:14:42Z 2009-07-06T16:14:42Z <p>One liner:</p> <p><code> $ for file in filename1 filename2 filename3; do perl myscript $file; done </code></p> <p>Instead of the space separated list of filenames you can also use wildcards, for instance:</p> <p><code> $ for file in *.txt *.csv; do perl myscript $file; done </code></p> http://stackoverflow.com/questions/1080526/multi-platform-mobile-application/1080582#1080582 3 Answer by Marius Kjeldahl for Multi platform mobile application Marius Kjeldahl 2009-07-03T19:34:29Z 2009-07-03T19:34:29Z <p>You might want to look into PhoneGap (<a href="http://phonegap.com/" rel="nofollow">http://phonegap.com/</a>). From their own description page:</p> <blockquote> <p>PhoneGap is an open source development tool for building fast, easy mobile apps with JavaScript.</p> <p>If you’re a web developer who wants to build mobile applications in HTML and JavaScript while still taking advantage of the core features in the iPhone, Android and Blackberry SDKs, PhoneGap is for you.</p> </blockquote> <p>In addition to using JavaScript, it supports JavaScript acccess to native controls and features of the phones (GPS, accelerometers etc...).</p> http://stackoverflow.com/questions/1052765/linux-perl-mmap-performance 5 Linux/perl mmap performance Marius Kjeldahl 2009-06-27T12:37:08Z 2009-06-29T21:57:25Z <p>I'm trying to optimize handling of large datasets using mmap. A dataset is in the gigabyte range. The idea was to mmap the whole file into memory, allowing multiple processes to work on the dataset concurrently (read-only). It isn't working as expected though.</p> <p>As a simple test I simply mmap the file (using perl's Sys::Mmap module, using the "mmap" sub which I believe maps directly to the underlying C function) and have the process sleep. When doing this, the code spends more than a minute before it returns from the mmap call, despite this test doing nothing - not even a read - from the mmap'ed file.</p> <p>Guessing, I though maybe linux required the whole file to be read when first mmap'ed, so after the file had been mapped in the first process (while it was sleeping), I invoked a simple test in another process which tried to read the first few megabytes of the file.</p> <p>Suprisingly, it seems the second process also spends a lot of time before returning from the mmap call, about the same time as mmap'ing the file the first time.</p> <p>I've made sure that MAP_SHARED is being used and that the process that mapped the file the first time is still active (that it has not terminated, and that the mmap hasn't been unmapped).</p> <p>I expected a mmapped file would allow me to give multiple worker processes effective random access to the large file, but if every mmap call requires reading the whole file first, it's a bit harder. I haven't tested using long-running processes to see if access is fast after the first delay, but I expected using MAP_SHARED and another separate process would be sufficient.</p> <p>My theory was that mmap would return more or less immediately, and that linux would load the blocks more or less on-demand, but the behaviour I am seeing is the opposite, indicating it requires reading through the whole file on each call to mmap.</p> <p>Any idea what I'm doing wrong, or if I've completely misunderstood how mmap is supposed to work?</p> http://stackoverflow.com/questions/1052765/linux-perl-mmap-performance/1057690#1057690 0 Answer by Marius Kjeldahl for Linux/perl mmap performance Marius Kjeldahl 2009-06-29T10:52:18Z 2009-06-29T10:52:18Z <p>Ok, here's another update. Using Sys::Mmap or PerlIO's ":mmap" attribute both works fine in perl, but only up to 2 GB files (the magic 32 bit limit). Once the file is more than 2 GB, the following problems appear:</p> <p>Using Sys::Mmap and substr for accessing the file, it seems that substr only accepts a 32 bit int for the position parameter, even on systems where perl supports 64 bit. There's at least one bug posted about it:</p> <p><a href="http://rt.perl.org/rt3//Public/Bug/Display.html?id=62646" rel="nofollow">#62646: Maximum string length with substr</a></p> <p>Using <code>open(my $fh, "&lt;:mmap", "bigfile.bin")</code>, once the file is larger than 2 GB, it seems perl will either hang/or insist on reading the whole file on the first read (not sure which, I never ran it long enough to see if it completed), leading to dead slow performance.</p> <p>I haven't found any workaround to either of these, and I'm currently stuck with slow file (non mmap'ed) operations for working on these files. Unless I find a workaround I may have to implement the processing in C or another higher level language that supports mmap'ing huge files better.</p> http://stackoverflow.com/questions/1053549/learning-more-about-parsing/1053574#1053574 1 Answer by Marius Kjeldahl for Learning More About Parsing Marius Kjeldahl 2009-06-27T20:42:55Z 2009-06-27T20:42:55Z <p>In perl, the Parse::RecDescent modules is the first place to start. Add tutorial to the module name and Google should be able to find plenty of tutorials to get you started.</p> http://stackoverflow.com/questions/1052765/linux-perl-mmap-performance/1052980#1052980 6 Answer by Marius Kjeldahl for Linux/perl mmap performance Marius Kjeldahl 2009-06-27T15:02:13Z 2009-06-27T15:02:13Z <p>Ok, found the problem. As suspected, neither linux or perl were to blame. To open and access the file I do something like this:</p> <pre><code>#!/usr/bin/perl # Create 1 GB file if you do not have one: # dd if=/dev/urandom of=test.bin bs=1048576 count=1000 use strict; use warnings; use Sys::Mmap; open (my $fh, "&lt;test.bin") || die "open: $!"; my $t = time; print STDERR "mmapping.. "; mmap (my $mh, 0, PROT_READ, MAP_SHARED, $fh) || die "mmap: $!"; my $str = unpack ("A1024", substr ($mh, 0, 1024)); print STDERR " ", time-$t, " seconds\nsleeping.."; sleep (60*60); </code></pre> <p>If you test that code, there are no delays like those I found in my original code, and after creating the minimal sample (always do that, right!) the reason suddenly became obvious.</p> <p>The error was that I in my code treated the <code>$mh</code> scalar as a handle, something which is light weight and can be moved around easily (read: pass by value). Turns out, it's actually a GB long string, definitively not something you want to move around without creating an explicit reference (perl lingua for a "pointer"/handle value). So if you need to store in in a hash or similar, make sure you store <code>\$mh</code>, and deref it when you need to use it like <code>${$hash->{mh}}</code>, typically as the first parameter in a substr or similar.</p> http://stackoverflow.com/questions/953428/event-loop-vs-multithread-blocking-io/954649#954649 0 Answer by Marius Kjeldahl for Event Loop vs Multithread blocking IO Marius Kjeldahl 2009-06-05T07:28:00Z 2009-06-05T07:28:00Z <p>Not sure what you mean by "low activity", but I believe the major factor would be how much you actually need to do to handle each request. Assuming a single-threaded event-loop, no other clients would get their requests handled while you handled the current request. If you need to do a lot of stuff to handle each request ("lots" meaning something that takes significant CPU and/or time), and assuming your machine actually is able to multitask efficiently (that taking time does not mean waiting for a shared resource, like a single CPU machine or similar), you would get better performance by multitasking. Multitasking could be a multithreaded blocking model, but it could also be a single-tasking event loop collecting incoming requests, farming them out to a multithreaded worker factory that would handle those in turn (through multitasking) and sending you a response ASAP.</p> <p>I don't believe slow connections with the clients matter that much, as I would believe the OS would handle that efficiently outside of your app (assuming you do not block the event-loop for multiple roundtrips with the client that initially initiated the request), but I haven't tested this myself.</p> http://stackoverflow.com/questions/954087/sending-data-from-excel-to-a-website/954613#954613 0 Answer by Marius Kjeldahl for Sending Data from Excel to a Website Marius Kjeldahl 2009-06-05T07:14:06Z 2009-06-05T07:14:06Z <p>Although I can't give you an exact example in Excel, I'm pretty certain Excel has a function or two to lookup values from any website using a GET request. The difference between a GET and POST request is that in the former all data passed is part of the URL string. Assuming the HTTP support in Excel is basic, I suspect you will have better luck using a GET request, carefully building your URL with the data with simple string manipulation. Although I do not know the exact syntax, imagine a formula in a cell like =lookuphtml("http://some.url.com/send?var1="&amp;B2&amp;"&amp;var2="&amp;B3), where cells B2 and B3 would contain your variable values (the values you want to pass to the script). This assumes the receiving end is capable of receiving data through GET requests (not only POST requests). Most decent server-side libraries allow data passed through both GET and POST request, although YMMV.</p> http://stackoverflow.com/questions/932522/iphone-vs-android/947067#947067 0 Answer by Marius Kjeldahl for IPhone vs Android Marius Kjeldahl 2009-06-03T20:33:55Z 2009-06-03T20:33:55Z <p>There's another possibly important difference between the iPhone (+Symbian) and Android platform, namely compiling down to native code or not. As Nokia has demonstrated, device fragmentation (read binary platform fragmentation) is a real issue which will probably be a major factor for Nokia Apps never taking off like iPhone has, and Android may possibly do. Since Apple only has one device, this isn't a challenge for that platform yet, but when/if different apps needs to be compiled for each platform, it may become more challenging.</p> <p>Android on the other hand, runs something Java like on top of the OS and binary APIs, and hopefully it's good enough that it will support various devices without requiring massive recompilation.</p> <p>And finally, good people are working to creating cross platform toolkits which should work on many platforms. Nokia owns Qt which is one, but still compiles down to native code. However, Qt already support Javascript, so with some work I believe Nokia may be able to create a full app-platform in Javascript using Qt as the binary layer. But at the current stage, Nokia hasn't spoken about any such directions yet.</p> <p>Another project, Phonegap, tries to allow Javascript applications running on the native browser on the phones full access to the "native" part of the platform, like specific hardware (geo location) and UI controls.</p> <p>Personally I believe the devices are more than powerful enough to run most of their apps at a higher abstraction level than binary code, and assuming the vendors allow "binding" javascript and/or other more abstract languages full access to the platform, we will hopefully avoid another "Java everywhere" disaster which have hampered the phone platform for years (disallowing developers access to functions which would improve phone/communication facilities, only giving them a sandbox to show pretty pictures...).</p> http://stackoverflow.com/questions/1114199/missing-opengl-drivers-on-android-emulator/1114281#1114281 Comment by Marius Kjeldahl on Missing OpenGL drivers on Android emulator Marius Kjeldahl 2009-07-11T18:35:46Z 2009-07-11T18:35:46Z Yes, but from what I've seen on the web the fact that it doesn't find it shouldn't necessarily stop your program from running, assuming it can find the software implementation and resolve the missing functions to that library instead. I agree, it really shouldn't be looking if not necessary, but maybe that is just the way they implemented it? I.e. keep trying libs until symbol is resolved? http://stackoverflow.com/questions/1096704/how-can-i-extract-abbreviations-from-a-file-using-perl/1096739#1096739 Comment by Marius Kjeldahl on How can I extract abbreviations from a file using Perl? Marius Kjeldahl 2009-07-08T09:25:43Z 2009-07-08T09:25:43Z You're probably right, but the editor didn't allow it without the spaces. I suspect the &quot;lt dollar&quot; sequence got cut out without the spaces. http://stackoverflow.com/questions/1052765/linux-perl-mmap-performance/1060778#1060778 Comment by Marius Kjeldahl on Linux/perl mmap performance Marius Kjeldahl 2009-06-30T07:09:34Z 2009-06-30T07:09:34Z Here's a suggestion for a new very useful feature, based on my observation of perl described in this thread (memory mapped files only working up to 2 GB); if the user maps a file larger than 2 GB, use a segmented approach with a &quot;custom&quot; read function that automatically unmaps/maps as necessary. At least until the 2 GB perl &quot;bug&quot; is fixed.. http://stackoverflow.com/questions/1052765/linux-perl-mmap-performance/1057690#1057690 Comment by Marius Kjeldahl on Linux/perl mmap performance Marius Kjeldahl 2009-06-29T21:42:55Z 2009-06-29T21:42:55Z Did some benchmarking, confirming that dynamically map/unmapping using a segment size of 2 GB, and assuming that segment switches are fairly infrequent, speed is some 30-40% faster using mmap with unmap/mapping than straight file IO on a 3 GB file. On a 2 GB file the differences are less, but I suspect this is due to my laptop caching most of the file during the random accesses anyway. So at least I have a solution that works, although not as cleanly as I would have hoped. No need for further optimization at this stage though. http://stackoverflow.com/questions/1052765/linux-perl-mmap-performance/1057690#1057690 Comment by Marius Kjeldahl on Linux/perl mmap performance Marius Kjeldahl 2009-06-29T13:39:37Z 2009-06-29T13:39:37Z Thanks, that's certainly a workaround. It would necessitate keeping track of the pointer into the file and map/unmapping when necessary, which probably affects performance. But it's probably still faster than straight file IO. http://stackoverflow.com/questions/1052765/linux-perl-mmap-performance/1055606#1055606 Comment by Marius Kjeldahl on Linux/perl mmap performance Marius Kjeldahl 2009-06-29T11:08:27Z 2009-06-29T11:08:27Z What I am trying to do is random access by design from multiple processes, making sure only the parts of the file most often accessed remains in memory.at all times. What pattern would you suggest if random access from multiple processes and a huge file is required? http://stackoverflow.com/questions/1052765/linux-perl-mmap-performance/1055066#1055066 Comment by Marius Kjeldahl on Linux/perl mmap performance Marius Kjeldahl 2009-06-29T11:06:08Z 2009-06-29T11:06:08Z As I've posted in my other answer, even on 64 bit systems, there's still problems for larger files (&gt;2GB). Your answer is correct though. I'm already 64 bit on all my machines, even the laptop, so it's not an issue for me. http://stackoverflow.com/questions/1052765/linux-perl-mmap-performance/1052846#1052846 Comment by Marius Kjeldahl on Linux/perl mmap performance Marius Kjeldahl 2009-06-29T11:04:11Z 2009-06-29T11:04:11Z Make that problem solved up to 2GB. For larger files perl still has problems, see my other answer related to this. http://stackoverflow.com/questions/1052765/linux-perl-mmap-performance/1052846#1052846 Comment by Marius Kjeldahl on Linux/perl mmap performance Marius Kjeldahl 2009-06-27T15:12:03Z 2009-06-27T15:12:03Z Agree, the PerlIO mmap layer is probably preferrable as it would also allow the same code to run with/without mmap'ing by simply adding/removing the mmap attribute. Regardless, I found the problem, posted the code, problem solved. http://stackoverflow.com/questions/1052765/linux-perl-mmap-performance/1052839#1052839 Comment by Marius Kjeldahl on Linux/perl mmap performance Marius Kjeldahl 2009-06-27T14:36:09Z 2009-06-27T14:36:09Z I've looked at the perl OS interface, and it calls the C version more or less directly, but unless I figure it out I will probably test a C version as well. As for OS/perl version, I've tested on two system, both x86_64. One is Ubuntu 8.04.2 (linux 2.6.24-22, perl 5.8.8) and the other Ubuntu 9.04 (linux 2.6.28-13, perl 5.10.0). Same behaviour. The second system was a laptop, and I can definitively confirm that there is serious disk io involved when mmap is called from my tests.