User D.J. Capelis - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T06:24:19Z http://stackoverflow.com/feeds/user/10943 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1714372/need-atomic-addition-operation-code-on-solarissparc-architecture/1714478#1714478 1 Answer by D.J. Capelis for Need atomic addition operation code on Solaris(sparc architecture) D.J. Capelis 2009-11-11T11:02:50Z 2009-11-11T11:02:50Z <p>This article should answer all of your questions in depth and even provides code: <a href="http://developers.sun.com/solaris/articles/atomic%5Fsparc/" rel="nofollow">http://developers.sun.com/solaris/articles/atomic%5Fsparc/</a></p> <p>You may need to re-format it a little in terms of inline assembly, but other than that, should be good to go.</p> http://stackoverflow.com/questions/1709970/possible-to-detect-isps-that-give-user-different-ip-address-on-every-page-request/1714410#1714410 2 Answer by D.J. Capelis for possible to detect ISPs that give user different IP address on every page request for login security? D.J. Capelis 2009-11-11T10:46:40Z 2009-11-11T10:46:40Z <p>I would set a timer so that you record not only which IP address they came from, but when they last came from it. After a user comes from the same IP address for a certain number of pageviews, say three, then go ahead and push down basically a lock_ip cookie to the user or make a note of it in your session variables on your side. Then use that to indicate that the session should be locked to the IP. If you use the cookie approach, you'll want to make sure you record this in a database on your side somewhere as well so that an attacker can't simply show up with the older cookie or without an extra lock_ip cookie, depending on how you implement it..</p> http://stackoverflow.com/questions/1332107/how-does-dht-in-torrents-work/1714357#1714357 0 Answer by D.J. Capelis for How does DHT in torrents work? D.J. Capelis 2009-11-11T10:36:44Z 2009-11-11T10:36:44Z <p>What happens with bittorrent and a DHT is that at the beginning bittorrent uses information embedded in the torrent file to go to either a tracker or one of a set of nodes from the DHT. Then once it finds one node, it can continue to find others and persist using the DHT without needing a centralized tracker to maintain it.</p> <p>The original information bootstraps the later use of the DHT.</p> http://stackoverflow.com/questions/360887/using-version-control-for-home-development/361960#361960 4 Answer by D.J. Capelis for Using Version Control for Home Development? D.J. Capelis 2008-12-12T05:22:15Z 2008-12-12T05:22:15Z <p>Not only should you never leave home without it, you should always have it at home.</p> <p>I think one of the more extreme examples of this was actually given by Linus at the Linux Plumber's Conference this year when he mentioned that he puts <em>everything</em> he works on into git. He downloads a tarball off the internet and the first thing he does is runs git init so he can use things like git grep and other types of tools he's used to. For him, SCM is part of his <em>workflow</em>.</p> <p>I've also seen this with trac as well. I often will put projects into an SCM system just to allow them to use good integrated tracking tools like that. I try and do this with most of my work.</p> http://stackoverflow.com/questions/361943/why-does-rtp-use-udp-instead-of-tcp/361949#361949 3 Answer by D.J. Capelis for Why Does RTP use UDP instead of TCP? D.J. Capelis 2008-12-12T05:14:14Z 2008-12-12T05:14:14Z <p>UDP is often used for various types of realtime traffic that doesn't need strict ordering to be useful. This is because TCP enforces an ordering before passing data to an application (by default, you can get around this by setting the URG pointer, but no one seems to ever do this) and that can be highly undesirable in an environment where you'd rather get current realtime data than get old data reliably.</p> http://stackoverflow.com/questions/70402/why-is-quicksort-better-than-mergesort/70440#70440 0 Answer by D.J. Capelis for Why is quicksort better than mergesort? D.J. Capelis 2008-09-16T08:44:17Z 2008-09-16T08:44:17Z <p>While they're both in the same complexity class, that doesn't mean they both have the same runtime. Quicksort is usually faster than mergesort, just because it's easier to code a tight implementation and the operations it does can go faster. It's because that quicksort is generally faster that people use it instead of mergesort.</p> <p>However! I personally often will use mergesort or a quicksort variant that degrades to mergesort when quicksort does poorly. Remember. Quicksort is only O(n log n) on <em>average</em>. It's worst case is O(n^2)! Mergesort is always O(n log n). In cases where realtime performance or responsiveness is a must and your input data could be coming from a malicious source, <strong>you should not use plain quicksort.</strong></p> http://stackoverflow.com/questions/70169/how-to-highlight-source-code-in-html/70185#70185 0 Answer by D.J. Capelis for How to highlight source code in HTML? D.J. Capelis 2008-09-16T07:50:53Z 2008-09-16T07:50:53Z <p>Just run it through a tool like: <a href="http://www.gnu.org/software/src-highlite/" rel="nofollow">http://www.gnu.org/software/src-highlite/</a></p> http://stackoverflow.com/questions/70013/how-to-detect-if-im-compiling-code-under-visual-studio-8/70028#70028 2 Answer by D.J. Capelis for how to detect if I'm compiling code under visual studio 8? D.J. Capelis 2008-09-16T07:19:50Z 2008-09-16T07:19:50Z <p>_MSC_VER should be defined to a specific version number. You can either #ifdef on it, or you can use the actual define and do a runtime test. (If for some reason you wanted to run different code based on what compiler it was compiled with? Yeah, probably you were looking for the #ifdef. :))</p> http://stackoverflow.com/questions/69979/can-i-implement-a-web-user-authentication-system-in-python-without-post/69995#69995 5 Answer by D.J. Capelis for Can I implement a web user authentication system in python without POST? D.J. Capelis 2008-09-16T07:10:40Z 2008-09-16T07:10:40Z <p>You can actually do it all with GET methods. However, you'll want to use a full challenge response protocol for the logins. (You can hash on the client side using javascript. You just need to send out a unique challenge each time.) You'll also want to use SSL to ensure that no one can see the strings as they go across.</p> <p>In some senses there's no real security difference between GET and POST requests as they both go across in plaintext, in other senses and in practice... GET is are a hell of a lot easier to intercept and is all over most people's logs and your web browser's history. :)</p> <p>(Or as suggested by the other posters, use a different method entirely like HTTP auth, digest auth or some higher level authentication scheme like AD, LDAP, kerberos or shib. However I kinda assumed that if you didn't have POST you wouldn't have these either.)</p> http://stackoverflow.com/questions/69859/how-could-i-intercept-linux-sys-calls/69972#69972 2 Answer by D.J. Capelis for how could I intercept linux sys calls? D.J. Capelis 2008-09-16T07:05:04Z 2008-09-16T07:05:04Z <p>I don't have the syntax to do this gracefully with an LKM offhand, but this article provides a good overview of what you'd need to do: <a href="http://www.linuxjournal.com/article/4378" rel="nofollow">http://www.linuxjournal.com/article/4378</a></p> <p>You could also just patch the sys_open function. It starts on line 1084 of file/open.c as of linux-2.6.26.</p> <p>You might also see if you can't use inotify, systemtap or SELinux to do all this logging for you without you having to build a new system.</p> http://stackoverflow.com/questions/69859/how-could-i-intercept-linux-sys-calls/69884#69884 2 Answer by D.J. Capelis for how could I intercept linux sys calls? D.J. Capelis 2008-09-16T06:45:24Z 2008-09-16T06:51:34Z <p>Why can't you / don't want to use the LD_PRELOAD trick?</p> <p>Example code here:</p> <pre><code>/* * File: soft_atimes.c * Author: D.J. Capelis * * Compile: * gcc -fPIC -c -o soft_atimes.o soft_atimes.c * gcc -shared -o soft_atimes.so soft_atimes.o -ldl * * Use: * LD_PRELOAD="./soft_atimes.so" command * * Copyright 2007 Regents of the University of California */ #define _GNU_SOURCE #include &lt;dlfcn.h&gt; #define _FCNTL_H #include &lt;bits/fcntl.h&gt; extern int errorno; int (*_open)(const char * pathname, int flags, ...); int (*_open64)(const char * pathname, int flags, ...); int open(const char * pathname, int flags, mode_t mode) { _open = (int (*)(const char * pathname, int flags, ...)) dlsym(RTLD_NEXT, "open"); if(flags &amp; O_CREAT) return _open(pathname, flags | O_NOATIME, mode); else return _open(pathname, flags | O_NOATIME, 0); } int open64(const char * pathname, int flags, mode_t mode) { _open64 = (int (*)(const char * pathname, int flags, ...)) dlsym(RTLD_NEXT, "open64"); if(flags &amp; O_CREAT) return _open64(pathname, flags | O_NOATIME, mode); else return _open64(pathname, flags | O_NOATIME, 0); } </code></pre> <p>From what I understand... it is pretty much the LD_PRELOAD trick or a kernel module. There's not a whole lot of middle ground unless you want to run it under an emulator which can trap out to your function or do code re-writing on the actual binary to trap out to your function.</p> <p>Assuming you can't modify the program and can't (or don't want to) modify the kernel, the LD_PRELOAD approach is the best one, assuming your application is fairly standard and isn't actually one that's maliciously trying to get past your interception. (In which case you will need one of the other techniques.)</p> http://stackoverflow.com/questions/69871/vim-vi-survival-guide/69895#69895 0 Answer by D.J. Capelis for Vim / vi Survival Guide D.J. Capelis 2008-09-16T06:47:54Z 2008-09-16T06:47:54Z <p>How to switch between modes (i to enter insert mode (one of many ways), esc to exit insert mode, colon for command mode) and how to save and exit. (:wq)</p> http://stackoverflow.com/questions/69254/how-do-i-figure-out-which-dev-is-a-usb-device/69348#69348 0 Answer by D.J. Capelis for How do I figure out which /dev is a USB device? D.J. Capelis 2008-09-16T04:18:39Z 2008-09-16T04:18:39Z <p>ls -l /dev/disk/by-id/usb*</p> <p>Under the default udev rules, that will show you most usb devices and it will show you the symlink to their block-device name on the system.</p> <p>If that doesn't work, look at /dev/disk/by-id/ directly.</p> http://stackoverflow.com/questions/31834/generating-random-terrain-in-blender3d/69329#69329 0 Answer by D.J. Capelis for Generating random terrain in Blender3D D.J. Capelis 2008-09-16T04:12:00Z 2008-09-16T04:12:00Z <p>You should be able to reprogram most of the python scripts available to generate terrain for rendering to generate terrain for your game... is there a specific thing you <em>need</em> from the script to make it suitable for realtime gameplay instead of a static render?</p> http://stackoverflow.com/questions/69209/deleting-a-middle-node-from-a-single-linked-list-when-pointer-to-the-previous-nod/69247#69247 0 Answer by D.J. Capelis for Deleting a middle node from a single linked list when pointer to the previous node is not available D.J. Capelis 2008-09-16T03:50:57Z 2008-09-16T03:50:57Z <p>You could do delayed delinking where you set nodes to be delinked out of the list with a flag and then delete them on the next proper traversal. Nodes set to be delinked would need to be properly handled by the code that crawls the list.</p> <p>I suppose you could also just traverse the list again from the beginning until you find the thing that points to your item in the list. Hardly optimal, but at least a much better idea than delayed delinking.</p> <p>In general, you should know the pointer to the item you just came from and you should be passing that around.</p> <p>(Edit: Ick, with the time it took me to type out a fullish answer three gazillion people covered almost all the points I was going to mention. :()</p> http://stackoverflow.com/questions/70197/vb6-to-vb-net-declaration Comment by D.J. Capelis on vb6 to vb.net declaration D.J. Capelis 2008-09-16T07:54:35Z 2008-09-16T07:54:35Z The same way you holy cow learn to use a shift key? I'd edit it, but not enough privs yet... want to go ahead and edit your answer to make it a bit more readable? :) Thanks :) http://stackoverflow.com/questions/69209/deleting-a-middle-node-from-a-single-linked-list-when-pointer-to-the-previous-nod/69232#69232 Comment by D.J. Capelis on Deleting a middle node from a single linked list when pointer to the previous node is not available D.J. Capelis 2008-09-16T07:24:03Z 2008-09-16T07:24:03Z A skiplist would make this problem worse, not better.