User Rutger Nijlunsing - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T01:51:10Z http://stackoverflow.com/feeds/user/121191 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/723142/binary-serialization-of-silverlight-xaml-object/1451674#1451674 0 Answer by Rutger Nijlunsing for Binary serialization of Silverlight XAML object Rutger Nijlunsing 2009-09-20T18:32:23Z 2009-09-20T18:32:23Z <p>If parsing is really the problem, it might help to use pre-compiled XAMLs called 'BAML'. This is a binary representation of the XAML file. Since the binary format has a much much cheaper parser instead of the too generic XML, this helps a lot. BAML is also used internally by the .NET compiler to generate more compact files.</p> <p>For more information, see also <a href="http://stuff.seans.com/2008/07/13/hello-wpf-world-part-2-why-xaml/" rel="nofollow">http://stuff.seans.com/2008/07/13/hello-wpf-world-part-2-why-xaml/</a></p> http://stackoverflow.com/questions/1445155/jruby-how-can-i-make-a-field-transient-so-java-objects-dont-get-serialized-wh/1451602#1451602 0 Answer by Rutger Nijlunsing for [JRuby] How can I make a field transient, so Java objects don't get serialized when using marshal? Rutger Nijlunsing 2009-09-20T18:01:40Z 2009-09-20T18:01:40Z <p>You probably would have to write your own custom Marshal function to exclude the Java instance variable. For a very simple example, see <a href="http://www.linuxtopia.org/online%5Fbooks/programming%5Fbooks/ruby%5Ftutorial/Reflection%5FObjectSpace%5Fand%5FDistributed%5F%5FRuby%5FCustom%5FSerialization%5FStrategy.html" rel="nofollow">http://www.linuxtopia.org/online_books/programming_books/ruby_tutorial/Reflection_ObjectSpace_and_Distributed__Ruby_Custom_Serialization_Strategy.html</a></p> <p>You would need to change the code to custom Marshal all but the Java instance: there is no generic functionality to exclude, only define the whole marshal method on class level. You could use reflection to get a list of instance variables, remove your unwanted ones and marshal the remaining instance vars. Not that difficult, but not a one-liner any more.</p> http://stackoverflow.com/questions/1451539/reduce-xap-size-setting-whats-the-benefit/1451560#1451560 1 Answer by Rutger Nijlunsing for Reduce XAP Size Setting - What's the Benefit ? Rutger Nijlunsing 2009-09-20T17:48:01Z 2009-09-20T17:48:01Z <p>A browser caches by URL, so by splitting your application into a part which changes frequently and a part which will probably stay the same for a long time (the Linq part) and which might be shared between applications even, you save some download.</p> <p>But it depends on the exact situation (frequency of change, location of 'generic' DLLs, etc.) whether it really helps.</p> http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/988451#988451 9 Answer by Rutger Nijlunsing for What is your best programmer joke? Rutger Nijlunsing 2009-06-12T19:03:45Z 2009-08-11T17:49:57Z <p>Save the mallocs, free them all!</p> http://stackoverflow.com/questions/1208268/to-change-user-in-os-xs-terminal/1208282#1208282 2 Answer by Rutger Nijlunsing for To change $USER in OS X's terminal Rutger Nijlunsing 2009-07-30T18:03:05Z 2009-07-30T18:03:05Z <p>Normal Unix would do that with 'su' meaning 'super user'.</p> <p>Something like</p> <pre><code>su - otherusername </code></pre> <p>GUI applications might or might not work, I don't know on OSX...</p> http://stackoverflow.com/questions/1208161/to-get-the-current-user-in-latex/1208189#1208189 1 Answer by Rutger Nijlunsing for To get the current $USER in LaTeX Rutger Nijlunsing 2009-07-30T17:45:33Z 2009-07-30T17:45:33Z <p>use ~ for your homedirectory (which is probably /Users/$USER):</p> <pre><code>\includegraphics[width=13.0cm]{~/Dropbox/2_user_cases.png} </code></pre> http://stackoverflow.com/questions/1160057/how-do-i-do-cross-project-refactorings-with-ropemacs/1202929#1202929 2 Answer by Rutger Nijlunsing for How do I do cross-project refactorings with ropemacs? Rutger Nijlunsing 2009-07-29T20:45:32Z 2009-07-29T20:45:32Z <p>The documention on ropemacs and ropemode seems to be very sparse (the homepage <a href="http://rope.sourceforge.net/ropemacs.html" rel="nofollow">http://rope.sourceforge.net/ropemacs.html</a> only point to the mercurial repos, which I checked out and read through the code), but it seems you can give a specific .ropeproject to use, and it may be guess it (ropemode/interfaces.py:_guess_project) by searching up in the directory tree for a .ropeproject directory.</p> <p>So it should be fairly easy to hack around the issue by creating a (new) .ropeproject which covers both projects if you create a specific .ropeproject for project1/ and project2/ .</p> <p>Disadvantages that I see might be that you might have to move the orignal .ropeproject dirs out of the way, and it needs some extra scripting to manage ropeproject directories over more than 2 projects.</p> http://stackoverflow.com/questions/1158374/portable-compare-and-swap-atomic-operations-c-c-library/1202828#1202828 0 Answer by Rutger Nijlunsing for Portable Compare And Swap (atomic operations) C/C++ library? Rutger Nijlunsing 2009-07-29T20:28:11Z 2009-07-29T20:28:11Z <p>You could also look at libsync for inspiration from <a href="http://www.ioremap.net/node/224" rel="nofollow">http://www.ioremap.net/node/224</a> , which is quite new (maybe too new), but it is being used in the Elliptics Network so it does get (some?) testing.</p> <p>It also gives you higher level primitives next to CAS: RCU (Read Copy Update) for lockless synchronisation between threads.</p> <p>But it depends on what you mean by 'portable': it supports archtectures x86 and PPC, OSes Linux, FreeBSD, OpenBSD, Solaris and MacOSX but ... no Windows.</p> <p>And the license is GPL, which you can hate or love.</p> http://stackoverflow.com/questions/1201681/how-to-compute-ones-complement-using-rubys-bitwise-operators/1201951#1201951 1 Answer by Rutger Nijlunsing for How to compute one's complement using Ruby's bitwise operators ? Rutger Nijlunsing 2009-07-29T17:52:23Z 2009-07-29T17:52:23Z <p>Ruby just stores a (signed) number. The internal representation of this number is not relevant: it might be a FixNum, BigNum or something else. Therefore, the number of bits in a number is also undefined: it is just a number after all. This is contrary to for example C, where an int will probably be 32 bits (fixed).</p> <p>So what does the ~ operator do then? Wel, just something like:</p> <pre><code>class Numeric def ~ return -self - 1 end end </code></pre> <p>...since that's what '~' represents when looking at 2's complement numbers.</p> <p>So what is missing from your input statement is the number of bits you want to switch: a 32-bits ~ is different from a generic ~ like it is in Ruby.</p> <p>Now if you just want to bit-flip n-bits you can do something like:</p> <pre><code>class Numeric def ones_complement(bits) self ^ ((1 &lt;&lt; bits) - 1) end end </code></pre> <p>...but you do have to specify the number of bits to flip. And this won't affect the sign flag, since that one is outside your reach with XOR :)</p> http://stackoverflow.com/questions/1199394/openmp-for-linux/1199434#1199434 1 Answer by Rutger Nijlunsing for openmp for linux Rutger Nijlunsing 2009-07-29T11:00:24Z 2009-07-29T11:00:24Z <p>OpenMP is in the default gcc distribution for at least Debian, and probably on other also.</p> <p>See 'man gcc' and look for '-fopenmp'.</p> <p>For gcc 4.4, it appears you might need package libgomp1 on Debian (apt-get install libgomp1).</p> http://stackoverflow.com/questions/1199379/how-to-make-debian-to-look-for-updates-to-internet-only-not-to-dvd/1199395#1199395 3 Answer by Rutger Nijlunsing for How to make debian to look for updates to internet only, not to DVD? Rutger Nijlunsing 2009-07-29T10:52:38Z 2009-07-29T10:52:38Z <p>Edit /etc/apt/sources.list, and comment the DVD lines. Then run 'apt-get update' to get the cache in sync.</p> http://stackoverflow.com/questions/1199344/the-ultimate-oneliner/1199391#1199391 1 Answer by Rutger Nijlunsing for The Ultimate Oneliner Rutger Nijlunsing 2009-07-29T10:51:51Z 2009-07-29T10:51:51Z <p>Why is my hard drive full again?</p> <pre><code>du -m ~ | sort -n </code></pre> <p>...and start out from the last entry to the first and determine what to prune</p> http://stackoverflow.com/questions/1199312/number-of-commits-in-a-git-repository/1199366#1199366 1 Answer by Rutger Nijlunsing for Number of commits in a git repository Rutger Nijlunsing 2009-07-29T10:47:40Z 2009-07-29T10:47:40Z <p>Just run 'gitk'. It will also show the number of commits on the screen.</p> http://stackoverflow.com/questions/1199298/data-structure-to-store-billions-of-integers/1199338#1199338 3 Answer by Rutger Nijlunsing for Data Structure to store billions of integers Rutger Nijlunsing 2009-07-29T10:41:51Z 2009-07-29T10:41:51Z <p>Depends.</p> <p>Do you want to search on name or on integer?</p> <p>Are the names all about the same size?</p> <p>Are all the integers 32 bits, or some big number thingy?</p> <p>Are you sure it all fits into memory? If not then you're probably limited by disk I/O and memory (or disk usage) is no concern at all any more.</p> <p>Does the index (name or integer) have common prefixes or are they uniformly distributed? Only if they have common prefixes, a patricia tree is useful.</p> <p>Do you look up indexes in order (gang lookup), or randomly? If everything is uniform, random and no common prefixes, a hash is already as good as it gets (which is bad).</p> <p>If the index is the integer where gang lookup is used, you might look into radix trees.</p> http://stackoverflow.com/questions/1199017/interview-question/1199035#1199035 2 Answer by Rutger Nijlunsing for Interview Question Rutger Nijlunsing 2009-07-29T09:29:39Z 2009-07-29T09:29:39Z <p>The Truth. </p> http://stackoverflow.com/questions/1195531/listing-subclasses-doesnt-work-in-ruby-script-console/1195587#1195587 2 Answer by Rutger Nijlunsing for Listing subclasses doesn't work in Ruby script/console? Rutger Nijlunsing 2009-07-28T17:40:11Z 2009-07-28T17:40:11Z <p>subclasses is overridden and made protected in base.rb. See <a href="http://www.google.com/codesearch/p?hl=en&amp;sa=N&amp;cd=1&amp;ct=rc#m8Vht-lU3vE/vendor/rails/activerecord/lib/active_record/base.rb&amp;q=active_record/base.rb" rel="nofollow">http://www.google.com/codesearch/p?hl=en&amp;sa=N&amp;cd=1&amp;ct=rc#m8Vht-lU3vE/vendor/rails/activerecord/lib/active_record/base.rb&amp;q=active_record/base.rb</a> (line 1855 defines method subclasses, line 1757 makes it protected).</p> <p>You could do the same for User as you did for Foo: add a xyz() method.</p> http://stackoverflow.com/questions/1190383/how-to-delete-last-line-of-file-in-ruby/1190477#1190477 0 Answer by Rutger Nijlunsing for How to delete last line of file in Ruby? Rutger Nijlunsing 2009-07-27T20:39:39Z 2009-07-27T20:39:39Z <p>The easiest way is just to read the whole file, remove the '\n' at the end, and rewrite it all with your own content:</p> <pre><code>filename = "imcs2.xml" content = File.open(filename, "rb") { |io| io.read } File.open(filename, "wb") { |io| io.print content.chomp io.print "yourstuff" # Your Stuff Goes Here } </code></pre> <p>Alternatively, just io.seek() backwards over the last newline if any:</p> <pre><code>filename = "imcs2.xml" File.open(filename, "a") { |io| io.seek(-1, IO::SEEK_CUR) # -1 for Linux, -2 for Windows: \n or \r\n io.print "yourstuff" # Your Stuff Goes Here } </code></pre> http://stackoverflow.com/questions/1189911/non-relational-database-design/1189998#1189998 3 Answer by Rutger Nijlunsing for Non-Relational Database Design Rutger Nijlunsing 2009-07-27T19:05:09Z 2009-07-27T19:05:09Z <p>I'm answering this with CouchDB in the back of my mind, but I would presume most would be true for other DBs also. We looked at using CouchDB, but finally decided against it since our data access is not known beforehand and scalability is not the issue.</p> <p>Harder:</p> <ul> <li>Takes rethinking on conceptual level so it's 'harder' since it is just different. Since you have to know your data access patterns in advance, no automatic translation can be applied. You would need to add the access pattern at least.</li> <li>Consistency is not handled by the database but must be dealt with in the application. Less guarantees means easier migration, fail-over and better scalability at the cost of a more complicated application. An application has to deal with conflicts and inconsistencies.</li> <li>Links which cross documents (or key/value) have to be dealt with on application level also.</li> <li>SQL type of databases have IDEs which are much more mature. You get a lot of support libraries (although the layering of those libraries make things much more complex than needed for SQL).</li> </ul> <p>Easier:</p> <ul> <li>Faster if you know your data access patterns.</li> <li>Migration / Fail-over is easier for the database since no promises are made to you as an application programmer. Although you get eventual consistency. Probably. Finally. Some time.</li> <li>One key / value is much easier to understand than one row from a table. All the (tree) relations are already in, and complete objects can be recognized.</li> </ul> <p>The modeling should be about the same but you have to be careful about what you put in one document: UML can also be used for both OO modeling as well as DB modeling, which are two different beasts already.</p> <p>I would have liked to see a good open OO database nicely integrated with C# / Silverlight. Just to make the choice even more difficult. :)</p> http://stackoverflow.com/questions/1189832/hide-a-file-or-directory-using-the-windows-api-from-c/1189871#1189871 7 Answer by Rutger Nijlunsing for Hide a file or directory using the Windows API from C Rutger Nijlunsing 2009-07-27T18:41:32Z 2009-07-27T18:41:32Z <p>You can do it by calling SetFileAttributes and setting the FILE_ATTRIBUTE_HIDDEN flag. See <a href="http://msdn.microsoft.com/en-us/library/aa365535%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa365535%28VS.85%29.aspx</a></p> <p>This is not POSIX though. To create a 'hidden' file under a normal POSIX system like Linux, just start a filename with a dot (.).</p> http://stackoverflow.com/questions/1189687/solving-our-versioning-and-build-problems/1189741#1189741 2 Answer by Rutger Nijlunsing for Solving our versioning and build problems Rutger Nijlunsing 2009-07-27T18:13:48Z 2009-07-27T18:36:33Z <p>Git in itself is perfectly suited for having a multitude of branches of source code. However, the maintenance of those branches will always reside at the user and lies outside the scope of a given version control system.</p> <p>The only problem with Git is that it does not scale well for tracking compiled binary data over time. Binary data is mostly use-once and the diff/patch aspect which is important for source code is not important for compiled binary data. Instead, just create a .zip file for each source code version in Git containing a pre-compiled version of each DLL and put those .zip files on a network share.</p> <p>If you've done that, it sounds like you should invest time into your build system to be efficient. The version system can help here, but you're probably running into build problems anyways:</p> <ul> <li>Your Build System should only compile DLLs when the source has changed or the DLLs on which it depends has its interface changed. How tricky this is depends on the language used: C# DLLs have quite a strict interface which make this quite easy, while C has not an interface to speak of (just add one #define to a source file, and everything might have to be compiled)</li> <li>Your Build System should reuse pre-compiled DLLs which should be stored somewhere. Preferably not in the same way as the source code since Git is not optimized for this.</li> <li>Your Build System should cope branch changed OK. For example, Visual Studio leaves some files behind and does not always detect properly when a full rebuild has to be done.</li> <li>Your Build System might have to use a compiler from a fixed location instead of the compiler-of-the-day installed on your developpers PC. You might want to put it under version control also, or at least make this dependency explicit.</li> </ul> <p>In the end we rolled our own build system which was limited in speed by the time to do a stat() of all the files involved when nothing was changed. However, this took some time to build. Things to consider when building a system your own:</p> <ul> <li>First construct a dependency graph: DLLs depends on its source files and other DLLs.</li> <li>Use the modification times (mtime) of the files as a kind of 'version' of a file. Keep a cache of those mtimes, and consider a change in mtime a reason to update your cache.</li> <li>When one mtime of a file has changed, you have to rebuild the DLL it belongs to. After a rebuld of the DLL, check whether the interface has changed. If the interface has changed, rebuild all the DLLs which depend on this one. This takes a graph traversal to only process DLLs once.</li> <li>Bonus for making the compile run in parallel. Since you know your dependency graph, you also know which DLLs can be build in parallel.</li> </ul> <p>And the good thing is that this is all version control system independent, so it's not wasted time. It might even be that a simple approximation is enough to be able to do it &lt;30 minutes. It depends.</p> http://stackoverflow.com/questions/1165182/fastest-easiest-way-to-average-argb-color-ints/1165354#1165354 2 Answer by Rutger Nijlunsing for Fastest/easiest way to average ARGB color ints? Rutger Nijlunsing 2009-07-22T13:43:21Z 2009-07-22T13:43:21Z <p>When using x86 machines with at least SSE, and if you need to approximate only, you could use the assembly instruction PAVGB (Packed Average Byte), which averages bytes. See <a href="http://www.tommesani.com/SSEPrimer.html" rel="nofollow">http://www.tommesani.com/SSEPrimer.html</a> for explanation.</p> <p>Since you've got 5 values, you would need to be creative in calling PAVGB, since PAVGB will only do two values at a time.</p> http://stackoverflow.com/questions/1164623/inspect-with-limited-recursion/1164633#1164633 0 Answer by Rutger Nijlunsing for Inspect with limited recursion Rutger Nijlunsing 2009-07-22T11:29:08Z 2009-07-22T11:29:08Z <p>No, you might want to use either prettyprint module for a 'different' visualisation (require 'pp'; pp object) or write something yourself. To write a generic dumper is quite difficult since everyone has different needs (dump binary blobs? dump strings up to which length? dump graphs with cycles? dump up to which level? ...).</p> http://stackoverflow.com/questions/1163881/net-framework-inheritance-memory-managment-plz-help/1163897#1163897 1 Answer by Rutger Nijlunsing for .Net Framework Inheritance memory managment, Plz Help ? Rutger Nijlunsing 2009-07-22T08:41:01Z 2009-07-22T08:41:01Z <p>It goes only one way: System.IO.File will allocate base class of file + size of File itself, but not other descendants of the base class. So its not pretty heavy and your answer is correct.</p> <p>Also, initializing a class is only done once per class, while instantiating a class will take up space per instance. So the size per initialization does not matter that much (within bounds).</p> http://stackoverflow.com/questions/1155483/does-jit-performance-suffer-due-to-writeable-pages/1155616#1155616 1 Answer by Rutger Nijlunsing for Does JIT performance suffer due to writeable pages? Rutger Nijlunsing 2009-07-20T20:00:26Z 2009-07-20T20:00:26Z <p>The performance increase is not because of whether the pages are read only or not. The advantage is that read only pages can be shared between processes, so you use less memory which means less swapping (both to L1/L2/L3 caches as well as to disk in extreme cases).</p> <p>JIT tries to mitigate this by not needlessly JITting, but only JITting the hot functions. This will result in only a modest increase in memory since the number of hot functions are relatively small.</p> <p>A JIT compiler could also be smart and cache the result of the JITting so it could (theoretically) be shared. But I don't know whether this is done in practice.</p> http://stackoverflow.com/questions/1155534/enable-dropping-a-file-onto-a-ruby-script/1155550#1155550 2 Answer by Rutger Nijlunsing for Enable dropping a file onto a Ruby script Rutger Nijlunsing 2009-07-20T19:47:28Z 2009-07-20T19:53:16Z <p>The behavior of drag &amp; drop is dependent on the OS (and in case of Linux of the Window Manager), so no.</p> <p>In Windows, you get the behavior you want for free. Just put a .rb file on the Desktop, and the files dragged onto it will be arguments to your script.</p> <p>Another easy way for integrating with Windows is to write to registry entry HKLM\Software\Classes*.jpg\myhandler\command with the command you want to appear in the context menu of Windows Explorer (right click on a jpg file will popup a menu which will have your script in the menu).</p> <p>I don't use drag &amp; drop at all in Linux, so I wouldn't know how to do that there. I would expect it to have more security issues (permissions must be right, ...) but you could get there by creating a .desktop file, see <a href="http://standards.freedesktop.org/desktop-entry-spec/latest/" rel="nofollow">http://standards.freedesktop.org/desktop-entry-spec/latest/</a> for the complete standard, or read some examples from ~/Desktop/*.desktop .</p> http://stackoverflow.com/questions/1094690/parsing-a-string-in-ruby-regexp/1094728#1094728 8 Answer by Rutger Nijlunsing for Parsing a String in Ruby (Regexp?) Rutger Nijlunsing 2009-07-07T20:37:28Z 2009-07-07T20:37:28Z <p>You could do it with a regexp, or just do it in Ruby:</p> <pre><code>myarray = str.split(",").map { |el| type, id = el.split(" ") {:type =&gt; type, :id =&gt; id } } </code></pre> <p>Now you can address it like 'myarray[0][:type]'.</p> http://stackoverflow.com/questions/1094659/whats-the-insert-performance-like-for-the-wpf-toolkit-datagrid/1094707#1094707 0 Answer by Rutger Nijlunsing for What's the insert performance like for the WPF Toolkit DataGrid? Rutger Nijlunsing 2009-07-07T20:34:00Z 2009-07-07T20:34:00Z <p>WPF Toolkit DataGrid should do 'Virtualization', which is what in Microsoft speak is 'reusing WPF objects' (see for example <a href="http://www.ytechie.com/2008/09/disabling-wpf-datagrid-virtualization.html" rel="nofollow">http://www.ytechie.com/2008/09/disabling-wpf-datagrid-virtualization.html</a>).</p> http://stackoverflow.com/questions/1084482/how-to-find-out-what-processes-have-folder-or-file-locked/1084625#1084625 0 Answer by Rutger Nijlunsing for How to find out what processes have folder or file locked? Rutger Nijlunsing 2009-07-05T18:51:35Z 2009-07-05T18:51:35Z <p><a href="http://ccollomb.free.fr/unlocker/" rel="nofollow">http://ccollomb.free.fr/unlocker/</a> (freeware) has a special UI for exactly this situation.</p> http://stackoverflow.com/questions/1031450/are-there-any-undocumented-features-in-silverlight/1076427#1076427 19 Answer by Rutger Nijlunsing for Are there any "undocumented features" in Silverlight? Rutger Nijlunsing 2009-07-02T20:06:53Z 2009-07-02T20:06:53Z <p>Things we found out during Silverlight development (...and after googling for a long while). Whether those are features, or something else is left as an opinion for the reader:</p> <ul> <li>All the sizes and locations of UIElements are stored in a 32-bit integer of which 16-bit is the signed integer part, and of which 16-bit is the fractional part. Not funny since we had a very large WPF Canvas which broke without rewriting</li> <li>We needed fullscreen mode for data-entry our application. However, fullscreen disables user input from the keyboard (except for some keys) we found out! No data-entry in fullscreen (because of security concerns, it appears)!</li> <li>To subscribe to the left mouse button is easy. For the right mouse button you need some browser specific Javascripts hack to capture that and pass to the Silverlight app. No fun.</li> <li>You cannot subscribe to DataContext changed events. You need to create a new DependencyProperty attaching to changes in the original DataContext and during creation you can set your handler to react indirectly on DataContext changes.</li> <li>Don't use Firefox when debugging Silverlight. Using Internet Explorer makes debugging possible.</li> <li>If you cannot attach to your program (breakpoints show up as empty red circles in VS2008 instead of filled ones), do clear your Internet Explorer cache. This might help.</li> <li>You can edit XAML with intellisense in Visual Studio. However, the intellisense only works with the slow XAML preview window enabled (split view). But this slows down Visual Studio immensely.</li> <li>When porting an application from WPF to Silverlight as we did, throw out all XAML and start a new. Trust me. Especially if you're using Blend as an editor: this one throws in attributes for fun even when not used.</li> <li>Try to do as little in XAML as possible. XAML has no debugging capabilities when instantiated resulting in obscure exceptions during instantiation.</li> <li>This is also true for data Bindings: they tend not to give exceptions, but log to the Debug window of Visual Studio without a way to attach a debugger at that point.</li> <li>WPF/e object creation is <em>very</em> expensive. You should not create more than several hunderd WPF objects since this will make applications too slow. Instead, create your own WPF object cache to reuse WPF objects of the same type for different purposes.</li> </ul> http://stackoverflow.com/questions/1076257/returning-data-from-forked-processes/1076323#1076323 0 Answer by Rutger Nijlunsing for Returning data from forked processes Rutger Nijlunsing 2009-07-02T19:46:49Z 2009-07-02T19:46:49Z <p>The fork communication between two Unix processes is mainly the return code and nothing more. However, you could open a filedescriptor between the two processes and pass data between the processes over this filedescriptor: this is the normal Unix pipe way.</p> <p>If you would pass Marshal.dump() and Marshal.load() values, you could easily pass Ruby objects between those Ruby processes.</p> http://stackoverflow.com/questions/1208161/to-get-the-current-user-in-latex/1208189#1208189 Comment by Rutger Nijlunsing on To get the current $USER in LaTeX Rutger Nijlunsing 2009-07-30T18:44:58Z 2009-07-30T18:44:58Z Do you have permission to view the other ones file? http://stackoverflow.com/questions/1143270/how-to-concat-two-or-more-gzip-files-streams Comment by Rutger Nijlunsing on How to concat two or more gzip files/streams Rutger Nijlunsing 2009-07-29T20:11:53Z 2009-07-29T20:11:53Z gzjoin.c needs to decompress the second stream to keep in sync with the stream. Since a zlib stream does not contain an index, this is needed. In theory you could add the index when it is gzipped in advance, and modify gzjoin to use this index. But it's not for the faint of heart... http://stackoverflow.com/questions/1148820/surprising-software-vulnerabilities-or-exploits/1169211#1169211 Comment by Rutger Nijlunsing on Surprising software vulnerabilities or exploits? Rutger Nijlunsing 2009-07-24T17:41:54Z 2009-07-24T17:41:54Z On the MSX microcomputer you had a relais to enable / disable the cassette player. In BASIC, you could switch it on and off and have fun. When you knew assembly, you could switch it so fast that the relais could break. Always fun to run at a local RadioShack :) http://stackoverflow.com/questions/1163881/net-framework-inheritance-memory-managment-plz-help/1163897#1163897 Comment by Rutger Nijlunsing on .Net Framework Inheritance memory managment, Plz Help ? Rutger Nijlunsing 2009-07-22T11:27:21Z 2009-07-22T11:27:21Z If you have a hierarchy where a class has 100 parents up to root object Object, you got a problem with your own memory to be able to cope with that. I've never seen a hierarchy tree of depth 100. Also, only instance variables take space. A parent without instance variables don't take space. http://stackoverflow.com/questions/1163893/enable-l1-cache-as-ring-0 Comment by Rutger Nijlunsing on Enable L1 cache as Ring 0 Rutger Nijlunsing 2009-07-22T08:46:32Z 2009-07-22T08:46:32Z You might want to give a link to your previous question with the answer of DrJokepu so others might understand the question faster. http://stackoverflow.com/questions/1031450/are-there-any-undocumented-features-in-silverlight/1076427#1076427 Comment by Rutger Nijlunsing on Are there any "undocumented features" in Silverlight? Rutger Nijlunsing 2009-07-08T19:08:33Z 2009-07-08T19:08:33Z DataBindings are OK if they exactly fit. However, it is too easy to just databind every property one way and create converters in code to help you make the databinding possible. There are a lot of cases were the code alone (especially the one-way-bindings) is smaller, cleaner and easier to debug than the binding + custom converter combo. That's what I'm warning for. But a simple two-way binding to the database is probably more clean as a binding instead of code, that's true. http://stackoverflow.com/questions/980170/how-to-create-a-lightweight-c-code-sandbox/993420#993420 Comment by Rutger Nijlunsing on How to create a lightweight C code sandbox? Rutger Nijlunsing 2009-06-21T18:15:08Z 2009-06-21T18:15:08Z &quot;Ideally I would only check pointers when they are assigned or modified&quot;: A lot of pointers in C are constructed on-the-fly, like a[i] where i is a variable. Since those do appear in tight loops it is not going to gain you much. http://stackoverflow.com/questions/980170/how-to-create-a-lightweight-c-code-sandbox/993420#993420 Comment by Rutger Nijlunsing on How to create a lightweight C code sandbox? Rutger Nijlunsing 2009-06-21T18:13:47Z 2009-06-21T18:13:47Z If indeed gcc does not have it wrapped which I suspect, you might be able to 'transform' the generated assembly by substituting each pointer access to a function which does the check. But this is going to be expensive. That's why Google Native Client uses the segmentation of x86 CPUs to do this. http://stackoverflow.com/questions/980170/how-to-create-a-lightweight-c-code-sandbox/993420#993420 Comment by Rutger Nijlunsing on How to create a lightweight C code sandbox? Rutger Nijlunsing 2009-06-21T18:11:22Z 2009-06-21T18:11:22Z &quot;I was hoping to replace/hook that operation similar to what you describe with get_byte() being a sister function to safe_malloc() so pointers are always constrained to the module's allocation.&quot;: I think pointer access is too 'easy' to do in assembly (in contrast to malloc) which means that gcc will probably not have isolated this to be wrapped. http://stackoverflow.com/questions/747009/anyone-plotting-so-via-codeswarm/998401#998401 Comment by Rutger Nijlunsing on Anyone plotting SO via codeswarm? Rutger Nijlunsing 2009-06-19T15:31:32Z 2009-06-19T15:31:32Z I would guess you would have to take it up with the code_swarm authors to work something out with them. It seems code_swarm is not that scalable. An alternative would be to start plotting a subset and going from there. http://stackoverflow.com/questions/998429/opencv-accessing-and-taking-the-square-root-of-pixels/998478#998478 Comment by Rutger Nijlunsing on OpenCV: Accessing And Taking The Square Root Of Pixels Rutger Nijlunsing 2009-06-18T10:27:33Z 2009-06-18T10:27:33Z And I even don't know OpenCV at all :) http://stackoverflow.com/questions/997614/what-kind-of-memory-reclamation-algorithm-does-mri-ruby-1-8-use/997648#997648 Comment by Rutger Nijlunsing on What kind of memory reclamation algorithm does MRI Ruby 1.8 use? Rutger Nijlunsing 2009-06-16T17:38:45Z 2009-06-16T17:38:45Z YARV's GC (Ruby 1.9) does not differ that much from 1.8. I have not found any differences. http://stackoverflow.com/questions/995505/building-a-lexer-in-c Comment by Rutger Nijlunsing on Building a lexer in C Rutger Nijlunsing 2009-06-15T11:07:38Z 2009-06-15T11:07:38Z Which <a href="http://en.wikipedia.org/wiki/Dragon_book" rel="nofollow">en.wikipedia.org/wiki/Dragon_book</a> ? http://stackoverflow.com/questions/980170/how-to-create-a-lightweight-c-code-sandbox/984946#984946 Comment by Rutger Nijlunsing on How to create a lightweight C code sandbox? Rutger Nijlunsing 2009-06-14T17:50:52Z 2009-06-14T17:50:52Z &quot;Operating systems create these kinds of constrained environments using their Virtual Memory managers all day long, so you can readily do these things on modern OS's.&quot;: But OSes keep processes from biting each other and do not guarantee anything within a process. It becomes a kind of <a href="http://www.corewars.org/" rel="nofollow">corewars.org</a> . http://stackoverflow.com/questions/980170/how-to-create-a-lightweight-c-code-sandbox/984946#984946 Comment by Rutger Nijlunsing on How to create a lightweight C code sandbox? Rutger Nijlunsing 2009-06-14T17:48:26Z 2009-06-14T17:48:26Z &quot;Want to impose memory limits? Put a check in to malloc.&quot;: So you call sbr() [Unix] or VirtualAlloc() [Windows] yourself. And/or another library function which is already loaded and which needs to allocate memory.