User Zack Elan - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T03:20:44Z http://stackoverflow.com/feeds/user/2461 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1677195/how-to-create-ebook-drm-reader-and-distribution-platform/1677810#1677810 1 Answer by Zack Elan for How to create ebook DRM reader and distribution platform? Zack Elan 2009-11-05T01:34:06Z 2009-11-05T01:34:06Z <p>If your company is developing a brand-new product in a field they're unfamiliar with, they need <em>someone</em> with some modicum of knowledge about that field.</p> <p>If they just decided "hey, ebooks are hot stuff, let's create something for them", then stuck you in charge, the product is doomed to failure. Run.</p> http://stackoverflow.com/questions/1528210/what-is-the-most-readable-use-of-string-format-for-long-strings-with-many-paramet/1528686#1528686 0 Answer by Zack Elan for What is the most readable use of String.Format for long strings with many parameters? Zack Elan 2009-10-06T23:36:26Z 2009-10-06T23:36:26Z <p>Assuming you can use LINQ, you can shove your arguments into a <code>Dictionary&lt;string, string&gt;</code>, then join the arguments together:</p> <pre><code>Dictionary&lt;string, string&gt; args = new Dictionary&lt;string, string&gt; { {"computer", serviceConfig.Computer}, {"ver", string.Format("{0}.{1}.{2}", serviceConfig.Version.Major, serviceConfig.Version.Minor, serviceConfig.Version.Build)}, {"from", userName}, {"realcomputername", Environment.MachineName}, {"type", type}, {"Channels", serviceConfig.ChannelsString}, {"Hotkeys", serviceConfig.HotKeysString}, {"ID", serviceConfig.AlarmGroupName}, }; string login = string.Join("&amp;", args.Select(arg =&gt; string.Format("{0}={1}", arg.Key, arg.Value)).ToArray()); </code></pre> <p>This will be some miniscule amount slower and more memory-intensive than a simple string.Format, but it looks like you're about to make an HTTP request, so I can almost guarantee that it won't be the bottleneck.</p> <p>That final line can also be pulled out into an extension method that you can use anytime you want to build a query string like this.</p> <p>Also, it's important to note that since Dictionary does not preserve insertion order, you aren't guaranteed that the parameters in the query string will be in that exact order. That shouldn't matter, but in case it does you can replace the Dictionary with a <code>List&lt;KeyValuePair&lt;string, string&gt;&gt;</code> (<a href="http://msdn.microsoft.com/en-us/library/system.collections.specialized.ordereddictionary.aspx" rel="nofollow">OrderedDictionary</a> should also work).</p> http://stackoverflow.com/questions/1470851/changing-log4net-fileappender-whilst-logging/1474827#1474827 2 Answer by Zack Elan for Changing log4net FileAppender whilst logging Zack Elan 2009-09-25T00:21:43Z 2009-09-25T00:21:43Z <p>From the <a href="http://logging.apache.org/log4net/release/faq.html" rel="nofollow">log4net FAQ</a>:</p> <blockquote> <p>Many developers are confronted with the problem of distinguishing the log output originating from the same class but different client requests. They come up with ingenious mechanisms to fan out the log output to different files. In most cases, this is not the right approach.</p> <p>It is simpler to use a context property or stack (ThreadContext). Typically, one would ThreadContext.Properties["ID"] = "XXX" client specific information, such as the client's hostname, ID or any other distinguishing information when starting to handle the client's request. Thereafter, log output will automatically include the context data so that you can distinguish logs from different client requests even if they are output to the same file.</p> <p>See the ThreadContext and the PatternLayout classes for more information. </p> </blockquote> http://stackoverflow.com/questions/1415535/programmatically-configuring-log4net-to-write-the-same-messages-to-two-separate-f 0 Programmatically configuring log4net to write the same messages to two separate files Zack Elan 2009-09-12T16:39:57Z 2009-09-12T17:33:22Z <p>Right now, I'm programmatically configuring log4net by creating a RollingFileAppender instance then calling BasicConfigurator.Configure(). This is working great, but I'm trying to create two identical files - one in a timestamped directory that gets created for every run of the app, another in a static location to make it easy for a developer to tail the most current log. (this is only used for running automated tests, so creating a huge pile of directories is not a concern)</p> <p>Ideally, I'd like the files to be completely identical, but I realize log4net might not make this possible. If they have different logger names, that's fine - as long as I can have one log statement write to both log files.</p> <p>My current code:</p> <pre><code>IAppender appender = new RollingFileAppender { ... } appender.ActivateOptions(); BasicConfigurator.Configure(appender); </code></pre> http://stackoverflow.com/questions/1319849/setting-dllimport-programatically-in-c/1319939#1319939 0 Answer by Zack Elan for Setting dllimport programatically in c# Zack Elan 2009-08-24T00:07:52Z 2009-08-24T00:07:52Z <p>One alternative option is to have both the 32- and 64-bit versions of the unmanaged DLL have the same name, but have them live in separate folders in your build output (say, x86\ and x64\).</p> <p>Then, your installer or however else you're distributing this is updated so it knows to install the proper DLL for the platform it's installing on.</p> http://stackoverflow.com/questions/1315039/does-anyone-have-a-short-document-about-unit-tests-for-devs-new-to-unit-testing/1315132#1315132 2 Answer by Zack Elan for Does anyone have a short document about unit tests for devs new to unit testing? Zack Elan 2009-08-22T04:26:33Z 2009-08-22T04:26:33Z <p>In a few pages, you won't have time to cover anything in depth, so I'd suggest briefly outlining the core ideas (from the reasons behind doing unit testing, to specific ways of doing it like dependency injection), then include a lengthy list of "Further Reading" type stuff - books, blog posts, videos, etc.</p> <p>One of the things that really made unit testing click for me was these set of Tech Talks by Misko Hevery from Google:</p> <p><a href="http://www.youtube.com/watch?v=wEhu57pih5w" rel="nofollow">http://www.youtube.com/watch?v=wEhu57pih5w</a></p> <p><a href="http://www.youtube.com/watch?v=RlfLCWKxHJ0" rel="nofollow">http://www.youtube.com/watch?v=RlfLCWKxHJ0</a></p> <p><a href="http://www.youtube.com/watch?v=-FRm3VPhseI" rel="nofollow">http://www.youtube.com/watch?v=-FRm3VPhseI</a></p> <p><a href="http://www.youtube.com/watch?v=4F72VULWFvc" rel="nofollow">http://www.youtube.com/watch?v=4F72VULWFvc</a></p> http://stackoverflow.com/questions/1263925/how-do-i-refer-to-the-directory-where-my-net-program-is-installed/1263940#1263940 3 Answer by Zack Elan for How do I refer to the directory where my .net program is installed? Zack Elan 2009-08-12T02:32:22Z 2009-08-12T02:32:22Z <p>Assembly.GetExecutingAssembly().Location will give you the path to the currently executing assembly.</p> <p>However, writing to that location will cause problems for users running on Vista, Server 2008 and later, which are more strict about normal users not writing to places like C:\Program Files. Your best bet is probably something like:</p> <pre><code>Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) </code></pre> <p>There are a bunch of options for <a href="http://msdn.microsoft.com/en-us/library/system.environment.specialfolder.aspx" rel="nofollow">Environment.SpecialFolder</a>, based on what exactly you want to store.</p> http://stackoverflow.com/questions/1263192/long-lists-of-pass-by-ref-parameters-versus-wrapper-types/1263674#1263674 1 Answer by Zack Elan for Long lists of pass-by-ref parameters versus wrapper types. Zack Elan 2009-08-12T00:30:58Z 2009-08-12T00:30:58Z <p>Worrying about the relative execution speed of those two options is probably a premature optimization. Focus on getting the algorithm correct first, and having clean, maintainable code. When that's done, you can run a profiler on it and optimize the 20% of the code that takes 80% of the CPU time. Even if this method ends up being in that 20%, the difference between the two calling styles is probably to small to register.</p> <p>So, performance issues aside, I'd probably use a container class. Since this method takes only those three parameters, and (presumably) modifies each one, it sounds like it would make sense to have it as a method of the container class, with three member variables instead of ref parameters.</p> http://stackoverflow.com/questions/677874/starting-a-process-with-credentials-from-a-windows-service 2 Starting a process with credentials from a Windows Service Zack Elan 2009-03-24T15:20:18Z 2009-05-26T07:51:47Z <p>I have a Windows service that runs as mydomain\userA. I want to be able to run arbitrary .exes from the service. Normally, I use Process.Start() and it works fine, but in some cases I want to run the executable as a different user (mydomain\userB).</p> <p>If I change the ProcessStartInfo I use to start the process to include credentials, I start getting errors - either an error dialog box that says "The application failed to initialize properly (0xc0000142). Click on OK to terminate the application.", or an "Access is denied" Win32Exception. If I run the process-starting code from the command-line instead of running it in the service, the process starts using the correct credentials (I've verified this by setting the ProcessStartInfo to run whoami.exe and capturing the command-line output).</p> <p>I've also tried impersonation using WindowsIdentity.Impersonate(), but this hasn't worked - as I understand it, impersonation only affects the current thread, and starting a new process inherits the process' security descriptor, not the current thread.</p> <p>I'm running this in an isolated test domain, so both userA and userB are domain admins, and both have the Log On as a Service right domain-wide.</p> http://stackoverflow.com/questions/38362/best-version-control-system-for-managing-home-directories 6 Best version control system for managing home directories Zack Elan 2008-09-01T20:12:08Z 2009-04-08T19:51:13Z <p>I have 3 Linux machines, and want some way to keep the dotfiles in their home directories in sync. Some files, like .vimrc, are the same across all 3 machines, and some are unique to each machine.</p> <p>I've used SVN before, but all the buzz about DVCSs makes me think I should try one - is there a particular one that would work best with this? Or should I stick with SVN?</p> http://stackoverflow.com/questions/624125/compress-a-folder-using-ntfs-compression-in-net/624446#624446 2 Answer by Zack Elan for Compress a folder using NTFS compression in .NET Zack Elan 2009-03-08T22:28:49Z 2009-03-08T22:28:49Z <p>Using P/Invoke is, in my experience, usually easier than WMI. I believe the following should work:</p> <pre><code>private const int FSCTL_SET_COMPRESSION = 0x9C040; private const short COMPRESSION_FORMAT_DEFAULT = 1; [DllImport("kernel32.dll", SetLastError = true)] private static extern int DeviceIoControl( SafeFileHandle hDevice, int dwIoControlCode, ref short lpInBuffer, int nInBufferSize, IntPtr lpOutBuffer, int nOutBufferSize, ref int lpBytesReturned, IntPtr lpOverlapped); public static void EnableCompression(SafeFileHandle handle) { int lpBytesReturned = 0; short lpInBuffer = COMPRESSION_FORMAT_DEFAULT; int result = DeviceIoControl(handle, FSCTL_SET_COMPRESSION, ref lpInBuffer, sizeof(short), IntPtr.Zero, 0, ref lpBytesReturned, IntPtr.Zero); if (result != 0) { Marshal.ThrowExceptionForHR(Marshal.GetLastWin32Error()); } } </code></pre> <p>Since you're trying to set this on a directory, you will probably need to use P/Invoke to call <a href="http://msdn.microsoft.com/en-us/library/aa363858%28VS.85%29.aspx" rel="nofollow">CreateFile</a> using <code>FILE_FLAG_BACKUP_SEMANTICS</code> to get the SafeFileHandle on the directory.</p> <p>Also, note that setting compression on a directory in NTFS does not compress all the contents, it only makes new files show up as compressed (the same is true for encryption). If you want to compress the entire directory, you'll need to walk the entire directory and call DeviceIoControl on each file/folder.</p> http://stackoverflow.com/questions/604960/ntfs-alternate-data-streams-net/605167#605167 0 Answer by Zack Elan for NTFS Alternate Data Streams - .NET Zack Elan 2009-03-03T05:04:34Z 2009-03-03T05:04:34Z <p>There is no native .NET support for them. You have to use P/Invoke to call the native Win32 methods.</p> <p>To create them, call <a href="http://www.pinvoke.net/default.aspx/kernel32/CreateFile.html" rel="nofollow">CreateFile</a> with a path like <code>filename.txt:streamname</code>. If you use the interop call that returns a SafeFileHandle, you can use that to construct a FileStream that you can then read &amp; write to.</p> <p>To list the streams that exist on a file, use <a href="http://msdn.microsoft.com/en-us/library/aa364424%28VS.85%29.aspx" rel="nofollow">FindFirstStreamW</a> and <a href="http://msdn.microsoft.com/en-us/library/aa364430%28VS.85%29.aspx" rel="nofollow">FindNextStreamW</a> (which exist only on Server 2003 and later - not XP).</p> <p>I don't believe you can delete a stream, except by copying the rest of the file and leaving off one of the streams. Setting the length to 0 may also work, but I haven't tried it.</p> <p>You can also have alternate data streams on a directory. You access them the same as with files - <code>C:\some\directory:streamname</code>.</p> <p>Streams can have compression, encryption and sparseness set on them independent of the default stream.</p> http://stackoverflow.com/questions/501194/c-is-string-in-array/501420#501420 0 Answer by Zack Elan for C# Is String in Array Zack Elan 2009-02-01T19:24:23Z 2009-02-01T19:24:23Z <p>Arrays are, in general, a poor data structure to use if you want to ask if a particular object is in the collection or not.</p> <p>If you'll be running this search frequently, it might be worth it to use a <code>Dictionary&lt;string, something&gt;</code> rather than an array. Lookups in a Dictionary are O(1) (constant-time), while searching through the array is O(N) (takes time proportional to the length of the array).</p> <p>Even if the array is only 200 items at most, if you do a lot of these searches, the Dictionary will likely be faster.</p> http://stackoverflow.com/questions/422625/overloaded-method-calling-overloaded-method/422700#422700 0 Answer by Zack Elan for Overloaded method calling overloaded method Zack Elan 2009-01-07T23:59:31Z 2009-01-08T00:24:46Z <p>If OuterMethod always calls InnerMethod, and InnerMethod only accepts an int or string, then OuterMethod&lt;T&gt; doesn't make any sense.</p> <p>If the <em>only</em> difference is that one calls InnerMethod(int) and the other calls InnerMethod(string) you could do something like this:</p> <pre><code>public void OuterMethod(string parameter) { InnerMethodA(parameter); } public void OuterMethod(int parameter) { InnerMethodA(parameter); } private void InnerMethodA(object parameter) { // Whatever other implementation stuff goes here if (parameter is string) { InnerMethodB((string) parameter); } else if (parameter is int) { InnerMethodB((string) parameter); } else { throw new ArgumentException(...); } } private void InnerMethodB(string parameter) { // ... } private void InnerMethodB(int parameter) { // ... } </code></pre> http://stackoverflow.com/questions/277163/best-programming-blog-for-programmers-looking-to-improve/277173#277173 2 Answer by Zack Elan for Best programming Blog for programmers looking to improve? Zack Elan 2008-11-10T06:04:29Z 2008-11-10T06:04:29Z <p>Reading blogs and books will help, but in the end the best way to improve your skills as a programmer is to <em>program</em>. Make mistakes, then learn from them. The people who seem so smart when you read their blogs didn't get that way by blogging, or reading blogs.</p> http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/275640#275640 3 Answer by Zack Elan for What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow) Zack Elan 2008-11-09T05:17:59Z 2008-11-09T05:17:59Z <p>Pythonic methods for Dictionaries:</p> <pre><code>/// &lt;summary&gt; /// If a key exists in a dictionary, return its value, /// otherwise return the default value for that type. /// &lt;/summary&gt; public static U GetWithDefault&lt;T, U&gt;(this Dictionary&lt;T, U&gt; dict, T key) { return dict.GetWithDefault(key, default(U)); } /// &lt;summary&gt; /// If a key exists in a dictionary, return its value, /// otherwise return the provided default value. /// &lt;/summary&gt; public static U GetWithDefault&lt;T, U&gt;(this Dictionary&lt;T, U&gt; dict, T key, U defaultValue) { return dict.ContainsKey(key) ? dict[key] : defaultValue; } </code></pre> <p>Useful for when you want to append a timestamp to a filename to assure uniqueness.</p> <pre><code>/// &lt;summary&gt; /// Format a DateTime as a string that contains no characters //// that are banned from filenames, such as ':'. /// &lt;/summary&gt; /// &lt;returns&gt;YYYY-MM-DD_HH.MM.SS&lt;/returns&gt; public static string ToFilenameString(this DateTime dt) { return dt.ToString("s").Replace(":", ".").Replace('T', '_'); } </code></pre> http://stackoverflow.com/questions/155911/how-do-you-handle-unit-regression-tests-which-are-expected-to-fail-during-develop/156148#156148 0 Answer by Zack Elan for How do you handle unit/regression tests which are expected to fail during development? Zack Elan 2008-10-01T03:34:50Z 2008-10-01T03:34:50Z <p>#5 on Joel's <a href="http://www.joelonsoftware.com/articles/fog0000000043.html" rel="nofollow">"12 Steps to Better Code"</a> is fixing bugs before you write new code:</p> <blockquote> <p>When you have a bug in your code that you see the first time you try to run it, you will be able to fix it in no time at all, because all the code is still fresh in your mind.</p> <p>If you find a bug in some code that you wrote a few days ago, it will take you a while to hunt it down, but when you reread the code you wrote, you'll remember everything and you'll be able to fix the bug in a reasonable amount of time.</p> <p>But if you find a bug in code that you wrote a few months ago, you'll probably have forgotten a lot of things about that code, and it's much harder to fix. By that time you may be fixing somebody else's code, and they may be in Aruba on vacation, in which case, fixing the bug is like science: you have to be slow, methodical, and meticulous, and you can't be sure how long it will take to discover the cure.</p> <p>And if you find a bug in code that has already shipped, you're going to incur incredible expense getting it fixed.</p> </blockquote> <p>But if you really want to ignore failing tests, use the [Ignore] attribute or its equivalent in whatever test framework you use. In MbUnit's HTML output, ignored tests are displayed in yellow, compared to the red of failing tests. This lets you easily notice a newly-failing test, but you won't lose track of the known-failing tests.</p> http://stackoverflow.com/questions/35762/linux-gui-development/35770#35770 8 Answer by Zack Elan for Linux GUI development Zack Elan 2008-08-30T08:12:06Z 2008-08-30T08:31:43Z <p>Your best bet may be to port it to a cross-platform widget library such as <a href="http://en.wikipedia.org/wiki/WxWidgets" rel="nofollow">wxWidgets</a>, which would give you portability to any platform wxWidgets supports.</p> <p>It's also important to make the distinction between Gnome libraries and GTK, and likewise KDE libraries and Qt. If you write the code to use GTK or Qt, it should work fine for users of any desktop environment, including less popular ones like XFCE. If you use other Gnome or KDE-specific libraries to do non-widget-related tasks, your app would be less portable between desktop environments.</p> http://stackoverflow.com/questions/1558292/how-to-hide-windows-service-from-task-manager-in-windwos-desktop Comment by Zack Elan on How to hide windows service from task manager in windwos desktop Zack Elan 2009-10-13T05:19:37Z 2009-10-13T05:19:37Z Go somewhere else if you want advice on writing malware. http://stackoverflow.com/questions/1470851/changing-log4net-fileappender-whilst-logging/1474827#1474827 Comment by Zack Elan on Changing log4net FileAppender whilst logging Zack Elan 2009-09-25T12:44:34Z 2009-09-25T12:44:34Z True, but it cuts both ways - if you ever run into a problem where the root cause is multiple concurrent sessions interacting in some way, that combined log will be invaluable. And rather than writing a full-blown custom log server, you could pretty trivally write a command-line tool to split up a log file. Then, when you have a log you want to analyze, just drop it onto the .exe and it spits out the individual logs. http://stackoverflow.com/questions/1415535/programmatically-configuring-log4net-to-write-the-same-messages-to-two-separate-f/1415601#1415601 Comment by Zack Elan on Programmatically configuring log4net to write the same messages to two separate files Zack Elan 2009-09-15T18:43:37Z 2009-09-15T18:43:37Z Building the XML programmatically then calling XmlConfigurator turned out to be much simpler. Thanks. http://stackoverflow.com/questions/1415535/programmatically-configuring-log4net-to-write-the-same-messages-to-two-separate-f Comment by Zack Elan on Programmatically configuring log4net to write the same messages to two separate files Zack Elan 2009-09-12T17:00:28Z 2009-09-12T17:00:28Z @TrueWill: these tests get run using a stand-alone .exe, and also from Powershell cmdlets. The log4net section in the .config file doesn't get read when running from Powershell. Doing it programmatically allows us to use the same configuration in both scenarios. http://stackoverflow.com/questions/1332104/find-the-existence-of-a-word-in-a-large-dictionary Comment by Zack Elan on Find the existence of a word in a large dictionary Zack Elan 2009-08-26T03:45:30Z 2009-08-26T03:45:30Z This sounds like a homework problem more than anything else. http://stackoverflow.com/questions/1320039/private-accessor-dont-build-when-using-msbuild Comment by Zack Elan on Private Accessor don't build when using MSBuild Zack Elan 2009-08-24T05:08:53Z 2009-08-24T05:08:53Z Have you tried building it through MSBuild on one of your development machines? That might help track down if the problem's with MSBuild, or with the configuration of your build server. http://stackoverflow.com/questions/677874/starting-a-process-with-credentials-from-a-windows-service/678449#678449 Comment by Zack Elan on Starting a process with credentials from a Windows Service Zack Elan 2009-03-25T14:42:49Z 2009-03-25T14:42:49Z Thanks; it looks like this is the cause of the problem. Do you have any suggestions on the best way to retrieve the DACL and add permissions for the 2nd user? http://stackoverflow.com/questions/677874/starting-a-process-with-credentials-from-a-windows-service/678073#678073 Comment by Zack Elan on Starting a process with credentials from a Windows Service Zack Elan 2009-03-24T16:13:48Z 2009-03-24T16:13:48Z Both users have Log on as a Service enabled. http://stackoverflow.com/questions/677874/starting-a-process-with-credentials-from-a-windows-service/677908#677908 Comment by Zack Elan on Starting a process with credentials from a Windows Service Zack Elan 2009-03-24T15:47:13Z 2009-03-24T15:47:13Z I'm setting domain, username and password (as a SecureString) correctly - if I run this code outside of the Windows service, it works as expected. Setting the WorkingDirectory doesn't seem to have any affect, either.