Rutger Nijlunsing

2,641
Reputation
114 views

Registered User

Name Rutger Nijlunsing
Member for 5 months
Seen Nov 12 at 19:16
Website
Location The Netherlands
Age
Sep
20
answered Binary serialization of Silverlight XAML object
Sep
20
answered [JRuby] How can I make a field transient, so Java objects don’t get serialized when using marshal?
Sep
20
answered Reduce XAP Size Setting - What’s the Benefit ?
Aug
16
awarded  Necromancer
Aug
8
accepted Hide a file or directory using the Windows API from C
Jul
30
comment To get the current $USER in LaTeX
Do you have permission to view the other ones file?
Jul
30
accepted To change $USER in OS X’s terminal
Jul
30
answered To change $USER in OS X’s terminal
Jul
30
answered To get the current $USER in LaTeX
Jul
29
answered How do I do cross-project refactorings with ropemacs?
Jul
29
answered Portable Compare And Swap (atomic operations) C/C++ library?
Jul
29
comment How to concat two or more gzip files/streams
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...
Jul
29
answered How to compute one’s complement using Ruby’s bitwise operators ?
Jul
29
answered openmp for linux
Jul
29
accepted How to make debian to look for updates to internet only, not to DVD?
Jul
29
answered How to make debian to look for updates to internet only, not to DVD?
Jul
29
answered The Ultimate Oneliner
Jul
29
answered Number of commits in a git repository
Jul
29
answered Data Structure to store billions of integers
Jul
29
revised Why does my C# debugger skips the break points?
edited title
Jul
29
answered Interview Question
Jul
28
accepted Listing subclasses doesn’t work in Ruby script/console?
Jul
28
answered Listing subclasses doesn’t work in Ruby script/console?
Jul
27
answered How to delete last line of file in Ruby?
Jul
27
answered Non-Relational Database Design
Jul
27
answered Hide a file or directory using the Windows API from C
Jul
27
revised Solving our versioning and build problems
added 645 characters in body
Jul
27
revised Solving our versioning and build problems
added 1032 characters in body
Jul
27
answered Solving our versioning and build problems
Jul
24
comment Surprising software vulnerabilities or exploits?
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 :)
Jul
22
answered Fastest/easiest way to average ARGB color ints?
Jul
22
accepted Inspect with limited recursion
Jul
22
answered Inspect with limited recursion
Jul
22
comment .Net Framework Inheritance memory managment, Plz Help ?
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.
Jul
22
comment Enable L1 cache as Ring 0
You might want to give a link to your previous question with the answer of DrJokepu so others might understand the question faster.
Jul
22
answered .Net Framework Inheritance memory managment, Plz Help ?
Jul
20
answered Does JIT performance suffer due to writeable pages?
Jul
20
accepted Enable dropping a file onto a Ruby script
Jul
20
revised Enable dropping a file onto a Ruby script
added 358 characters in body
Jul
20
answered Enable dropping a file onto a Ruby script
Jul
8
comment Are there any “undocumented features” in Silverlight?
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.
Jul
7
accepted Parsing a String in Ruby (Regexp?)
Jul
7
answered Parsing a String in Ruby (Regexp?)
Jul
7
answered What’s the insert performance like for the WPF Toolkit DataGrid?
Jul
7
awarded  Nice Answer
Jul
5
answered How to find out what processes have folder or file locked?
Jul
2
answered Are there any “undocumented features” in Silverlight?
Jul
2
answered Returning data from forked processes
Jun
21
comment How to create a lightweight C code sandbox?
"Ideally I would only check pointers when they are assigned or modified": 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.
Jun
21
comment How to create a lightweight C code sandbox?
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.