User Carl Russmann - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T08:58:59Zhttp://stackoverflow.com/feeds/user/1347http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/885439/capicom-decryption-in-linux/1447156#14471561Answer by Carl Russmann for Capicom Decryption in Linux.Carl Russmann2009-09-18T22:54:21Z2009-09-18T22:54:21Z<p>CAPICOM uses standard encryption algorithms such as 3DES. If you parse the encrypted buffers yourself, you should be able to decode them using any language.</p>
<p>For details on CAPICOM buffers, start here:
<a href="http://www.jensign.com/JavaScience/dotnet/DeriveBytes/index.html" rel="nofollow">http://www.jensign.com/JavaScience/dotnet/DeriveBytes/index.html</a></p>
<p>If you're dealing with data from a single source using only one crypto algorithm, you should be able to simplify your buffer parsing code significantly.</p>
http://stackoverflow.com/questions/1422618/how-does-facebook-do-it/1422795#14227953Answer by Carl Russmann for How does Facebook do it? Carl Russmann2009-09-14T17:04:25Z2009-09-14T17:04:25Z<p>Facebook uses <a href="http://incubator.apache.org/cassandra/" rel="nofollow">Cassandra</a>, a NoSQL database for at least some things. Here's a more detailed discussion of what some of the bigger social media sites do to solve these problems:</p>
<p><a href="http://www.25hoursaday.com/weblog/2009/09/10/BuildingScalableDatabasesDenormalizationTheNoSQLMovementAndDigg.aspx" rel="nofollow">http://www.25hoursaday.com/weblog/2009/09/10/BuildingScalableDatabasesDenormalizationTheNoSQLMovementAndDigg.aspx</a></p>
<p>Lots of interesting reading in there if you follow the links from it to the Digg blog post, etc.</p>
http://stackoverflow.com/questions/166802/windows-form-designer-could-not-load-file-or-assembly/1309364#13093640Answer by Carl Russmann for Windows Form Designer: Could not load file or assembly...Carl Russmann2009-08-20T23:19:47Z2009-08-20T23:19:47Z<p>I've seen this happen in VS2005 for Window Forms, ASP.NET, and Compact Framework projects. The project I'm building has a dependency on another assembly in my solution, but complains that it can't load it when trying to generate the designer file.</p>
<p>I'm not sure on the exact cause, but this sometimes will happen after we bump up the version number of the assembly. For some reason Visual Studio won't see this assembly as "new" and won't drop the new version in the current project's bin/ folder. Most of the time it does though.</p>
<p>Deleting the bin/ folder (and the obj/ folder for good measure) of the project with the designer error, and then rebuilding, seems to make the hurt go away.</p>
http://stackoverflow.com/questions/56657/copying-a-directory-that-is-version-controlled/57171#571710Answer by Carl Russmann for Copying a directory that is version controlledCarl Russmann2008-09-11T17:43:08Z2008-09-11T17:43:08Z<p>For SVN, this will generally work as others have already stated.</p>
<p>If you are copying between machines, you probably will run into trouble though. For example, if you are accessing your SVN repo using file:// repository URL, things will most likely break. Same applies to http:// or svn:// URLs where server access might be different.</p>
<p>To stay safe, I'd just to a checkout at the new location. If you have a lot of uncomitted changes in one that you want to have in the new working directory (generally a bad idea), you could then use rsync to copy your source across without bringing in the .svn directories.</p>
http://stackoverflow.com/questions/55140/database-engines-comparison-windows-mobile/55336#553365Answer by Carl Russmann for Database engines Comparison - Windows Mobile..Carl Russmann2008-09-10T21:10:02Z2008-09-10T21:10:02Z<p>Also take a look at <a href="http://sqlite-wince.sourceforge.net/" rel="nofollow">SQLite for Windows CE</a>. There are also .NET bindings available to use it from the Compact Framework.</p>
http://stackoverflow.com/questions/17175/whats-your-top-feature-request-for-silverlight/17372#1737223Answer by Carl Russmann for What's your top feature request for Silverlight?Carl Russmann2008-08-20T03:19:55Z2008-08-20T03:19:55Z<p>Full cross-platform support for Windows, Mac and Linux with complete feature parity for each OS. ;)</p>
http://stackoverflow.com/questions/16891/vs-2008-ctrl-tab-behavior/17187#171874Answer by Carl Russmann for VS 2008 - ctrl-tab behaviorCarl Russmann2008-08-19T23:21:07Z2008-08-19T23:21:07Z<p>You probably have the text-to-speech narrator enabled.</p>
<p><a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=2467648&SiteID=1&mode=1" rel="nofollow"><a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=2467648&SiteID=1&mode=1" rel="nofollow">http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=2467648&SiteID=1&mode=1</a></a></p>
<blockquote>
<p>Just uncheck all checkboxes under
"Text-To-Speech" narrator software.</p>
<p>--> To open Narrator using the keyboard, press CTRL+ESC, press R,
type narrator, and then press Enter.</p>
</blockquote>
<p>This one drove me crazy for several months until I found this posting.</p>
http://stackoverflow.com/questions/14873/how-do-i-display-database-query-statistics-on-wordpress-site/15386#153862Answer by Carl Russmann for How do I display database query statistics on Wordpress site?Carl Russmann2008-08-18T23:39:03Z2008-08-18T23:39:03Z<p>To explain pix0r's code:</p>
<ul>
<li><p><code>$wpdb->num_queries</code> is the number of database queries.</p></li>
<li><p><code>_e</code> is for localization: <a href="http://faq.wordpress.net/view.php?p=50" rel="nofollow"><a href="http://faq.wordpress.net/view.php?p=50" rel="nofollow">http://faq.wordpress.net/view.php?p=50</a></a></p></li>
<li><p><code>timer_stop()</code> returns the amount of time taken to render the page: <br> <a href="http://codex.wordpress.org/Function_Reference/timer_stop" rel="nofollow"><a href="http://codex.wordpress.org/Function_Reference/timer_stop" rel="nofollow">http://codex.wordpress.org/Function_Reference/timer_stop</a></a></p></li>
</ul>
http://stackoverflow.com/questions/14330/rgb-to-monochrome-conversion/15119#151194Answer by Carl Russmann for RGB to monochrome conversionCarl Russmann2008-08-18T19:38:49Z2008-08-18T19:38:49Z<p>This depends on what your motivations are. If you just want to turn an arbitrary image to grayscale and have it look pretty good, the conversions in other answers to this question will do.</p>
<p>If you are converting color photographs to black and white, the process can be both very complicated and subjective, requiring specific tweaking for each image. For an idea what might be involved, take a look at this <a href="http://www.adobe.com/designcenter/photoshop/articles/phscs2mrblkwht.html" rel="nofollow">tutorial</a> from Adobe for Photoshop.</p>
<p>Replicating this in code would be fairly involved, and would still require user intervention to get the resulting image aesthetically "perfect" (whatever that means!).</p>
http://stackoverflow.com/questions/14827/what-do-you-or-your-company-use-for-wiping-a-machine/14913#149133Answer by Carl Russmann for What do you (or your company) use for wiping a machine?Carl Russmann2008-08-18T17:00:48Z2008-08-18T17:00:48Z<p>For personal machines that have had a lot of personal data on them such as banking information, I prefer complete physical destruction of the hard drive. It's amazing how much damage you can do with a heavy duty sledge hammer, and the data should be pretty much impossible to recover by people with 'normal' budgets.</p>
<p>If the machine is an older one, it is then passed on to a recycler without the drive. If it is still a decent machine, I'll donate it with a different (wiped!) drive in it.</p>
http://stackoverflow.com/questions/13007/what-do-you-use-to-store-all-of-your-personal-data/13243#132430Answer by Carl Russmann for What do you use to store all of your personal data?Carl Russmann2008-08-16T17:11:32Z2008-08-16T17:11:32Z<p>I keep a lot of stuff on a USB thumb drive. All personal data is in a <a href="http://www.truecrypt.org/" rel="nofollow" title="pdf excerpt">TrueCrypt</a> encrypted volume. I have a few <a href="http://www.tiddlywiki.com" rel="nofollow" title="Joshua Bloch">TiddlyWikis</a> as notebooks, as well as tools utilities ready to go. Non-critical passwords are also stored here.</p>
<p>When plugged into my PC at home, data is automatically backed up. </p>
<p>Compared to on-line solutions, I find this to be a bit more reliable and secure. As long as you trust the crypto you set up for the TrueCrypt volume!</p>
http://stackoverflow.com/questions/5078/personal-linux-web-server/12845#128451Answer by Carl Russmann for Personal Linux web serverCarl Russmann2008-08-15T22:33:40Z2008-08-15T22:33:40Z<p>If you're going to do this, spend a bit of money and at the least buy a dedicated router/firewall with a separate DMZ port. You'll want to firewall off your internal network from your server so that when (not if!) your web server is compromised, your internal network isn't immediately vulnerable as well.</p>
http://stackoverflow.com/questions/11857/what-do-you-use-as-a-good-alternative-to-team-system/12828#128287Answer by Carl Russmann for What do you use as a good alternative to Team System?Carl Russmann2008-08-15T22:17:09Z2008-08-15T22:17:09Z<p>I'll second Trac + Subversion. While nothing is perfect, this combination works quite well for me, and the price is right.</p>
<p>Even for projects I work solo on, it's nice to have both of these integrated.</p>
http://stackoverflow.com/questions/5989/whats-the-best-way-to-kick-ass-in-programming/12825#1282518Answer by Carl Russmann for What's the best way to kick ass in programming?Carl Russmann2008-08-15T22:11:47Z2008-08-15T22:11:47Z<ol>
<li>Surround yourself with people smarter than you.</li>
<li>Do some programming in your free time using different technologies than your day job.</li>
<li>Always keep learning. A good developer will try to learn at least one new technology/language each year in reasonable detail.</li>
<li>Exercise and eat right. Being healthy does wonders for keeping your mind sharp.</li>
</ol>
http://stackoverflow.com/questions/2034/what-do-the-result-codes-in-svn-mean/12813#128130Answer by Carl Russmann for What do the result codes in svn mean?Carl Russmann2008-08-15T22:01:40Z2008-08-15T22:01:40Z<p>Take a look in the Subversion Book:</p>
<p><a href="http://svnbook.red-bean.com/en/1.4/svn.ref.svn.c.status.html" rel="nofollow" title="Araxis Merge"><a href="http://svnbook.red-bean.com/en/1.4/svn.ref.svn.c.status.html" rel="nofollow">http://svnbook.red-bean.com/en/1.4/svn.ref.svn.c.status.html</a></a></p>
<p>Highly recommended for anyone doing pretty much anything with SVN.</p>
http://stackoverflow.com/questions/11743/useful-math-for-programmers/12809#128092Answer by Carl Russmann for Useful math for programmersCarl Russmann2008-08-15T21:55:35Z2008-08-15T21:55:35Z<p>Anything that will help you avoid the classic <a href="http://en.wikipedia.org/wiki/Off-by-one_error" rel="nofollow" title="Araxis Merge">fencepost error</a>. No matter how much advanced math a developer has in their background, I find everyone will fall for this one once in a while. Myself included!</p>
http://stackoverflow.com/questions/9877/personal-website-construction/12808#128081Answer by Carl Russmann for Personal Website ConstructionCarl Russmann2008-08-15T21:52:16Z2008-08-15T21:52:16Z<p>For a simpler portfolio site, Wordpress might meet your needs.</p>
<p>You can set up 'static' Wordpress pages for contact information, various portfolios, a resume, etc. This would also give you a blog if you want to do this.</p>
<p>Wordpress does give you the flexibility to "hide" the blogging part of it and use it basically as a simpler CMS. For example, your root URL of example.com could point to a WP static page, while example.com/blog would be the actual blog pages.</p>
<p>If you self-host Wordpress on your own domain (which I really would recommend instead of going through wordpress.com), it should be trivial to set up a few subdomains for extra content. For example, downloads.example.com could host the actual downloads for projects you've developed linked from the Wordpress portfolio pages. Similarly, if you're doing a lot of web work, a subdomain like lab.example.com or samples.example.com could then host various static (or dynamic) pages where you show off sandboxed pages that are not under the control of Wordpress.</p>
<p>Keep in mind though that you'll want to make your page look good. A sloppy looking site can scare away potential clients, even if you are not looking to do any web work for them.</p>
http://stackoverflow.com/questions/913/what-javascript-library-would-you-choose-for-a-new-project-and-why/12783#127835Answer by Carl Russmann for What JavaScript library would you choose for a new project and why?Carl Russmann2008-08-15T21:27:59Z2008-08-15T21:27:59Z<p>I prefer JQuery for many of the reasons that people have listed in other responses...</p>
<p>But, keep in mind that your own needs and programming style might make another library more suitable. If you're building a larger project, it probably is worth evaluating all libraries that look good "on paper" yourself. Using each contender, build a small proof-of-concept app that covers some of the core functionality of your project. Hopefully this is enough to give you a feel for each library. Then, as you are working, keep your code modular enough that it isn't <em>completely</em> impossible to switch (or add) another library if you run into too many limitations.</p>
http://stackoverflow.com/questions/4689/recommended-fonts-for-programming/11347#1134712Answer by Carl Russmann for Recommended Fonts for Programming?Carl Russmann2008-08-14T17:10:59Z2008-08-14T17:10:59Z<p><a href="http://www.tobias-jung.de/seekingprofont/" rel="nofollow" title="excanvas">ProFont</a>. Am I the only one still using it?</p>
http://stackoverflow.com/questions/10872/how-to-encourage-someone-to-learn-programming/11321#113213Answer by Carl Russmann for How to encourage someone to learn programming?Carl Russmann2008-08-14T16:45:34Z2008-08-14T16:45:34Z<p>My advice would be that you don't push your friend too hard. If you're going to suggest they take up programming, only mention it casually.</p>
<p>Suggesting recreational computer programming to someone "unenlightened" could be taken about the same way as suggesting they do some recreational mathematics, or stamp collecting (no offense to any philatelists out there!).</p>
http://stackoverflow.com/questions/11156/managing-two-computers-as-if-extended-desktop-is-used/11296#112960Answer by Carl Russmann for managing two computers as if extended desktop is usedCarl Russmann2008-08-14T16:35:37Z2008-08-14T16:35:37Z<p>You didn't say what operating system(s) you are looking at using.</p>
<p>To do this cross platform, I've had good success with VNC running on one of the machines and either <a href="http://fredrik.hubbe.net/win2vnc.html" rel="nofollow" title="excanvas">win2vnc</a> (for Windows) or <a href="http://fredrik.hubbe.net/x2vnc.html" rel="nofollow">x2vnc</a> (for various Unices).</p>
<p>The *2vnc programs create a 1 pixel window on whichever side of the monitor you specify. Once your mouse hits it, it "magically" appears on the machine running the VNC server. Once configured, this can be pretty much seamless. You can even copy & paste text between the machines.</p>
<p>I've had a Linux box, a Mac, and a Windows box set up using a single keyboard and mouse (controlled by the Linux box), each with their own monitor side-by-side. To someone casually walking by, it first looks like a three-monitor setup. Until they realize that there are three separate operating systems in play!</p>