User esac - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T07:48:33Zhttp://stackoverflow.com/feeds/user/92692http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1891926/would-you-feel-offended-or-upset-if-another-developer-ran-a-code-beautifier-on-th4Would you feel offended or upset if another developer ran a code beautifier on the code base?esac2009-12-12T01:42:58Z2009-12-14T11:21:31Z
<p>I am working on a project which other developers work on. I would like the code to be standardized. I don't necessarily care what standard it is (K&R, GNU, 2 lines max, 1 line max, spacing between commas, etc..) just that it is consistent.</p>
<p>I was thinking, that as a separate checkin, I could run a beautifier on the source code.</p>
<p>What do you think? As a developer who works on code with other people, if somebody else decided to run a beautifier on code you work with, would you be upset?</p>
<p>This is code that has been written by a lot of developers over the past few years, some of them gone, some not.</p>
<p>Obviously, I would approach everyone with this idea first, but I am curious what SO thinks.</p>
<p>EDIT: I would most likely look to do this at a milestone or after a release.</p>
http://stackoverflow.com/questions/1897732/how-can-i-use-a-mac-address-to-get-a-gps-coordinate1How can I use a MAC address to get a GPS coordinate?esac2009-12-13T21:02:32Z2009-12-13T23:21:00Z
<p>I know services exist such as skyhook, but I simply can not find an API or information on how to use it. I have a list of MAC addresses from wireless networks, or even wired networks, and I want to get triangulated GPS coordinates of the user. </p>
<p>EDIT: Somebody mentioned that you can't get MAC address information? From Windows 7 I did "netsh wlan show networks mode=bssid" and I see the below. I assume the address in BSSID is static and at least correlates?</p>
<pre><code>SSID 6 : linksys
Network type : Infrastructure
Authentication : WPA-Personal
Encryption : TKIP
BSSID 1 : 00:0c:41:19:56:7b
Signal : 15%
Radio type : 802.11g
Channel : 6
Basic rates (Mbps) : 1 2 5.5 11
Other rates (Mbps) : 6 9 12 18 24 36 48 54
SSID 7 : KSJ
Network type : Infrastructure
Authentication : Open
Encryption : WEP
BSSID 1 : 00:18:01:95:e7:ca
Signal : 30%
Radio type : 802.11g
Channel : 2
Basic rates (Mbps) : 1 2 5.5 11
Other rates (Mbps) : 6 9 12 18 22 24 36 48 54
SSID 8 : benchhome
Network type : Infrastructure
Authentication : WPA-Personal
Encryption : TKIP
BSSID 1 : 00:0f:b5:e3:2e:24
Signal : 23%
Radio type : 802.11g
Channel : 11
Basic rates (Mbps) : 1 2 5.5 11
Other rates (Mbps) : 6 9 12 18 24 36 48 54
</code></pre>
http://stackoverflow.com/questions/1891953/how-do-you-get-the-country-state-region-city-state-zip-postal-from-gps-coordinate5How do you get the country/state/region/city/state/zip/postal from GPS coordinates?esac2009-12-12T01:53:25Z2009-12-12T05:53:36Z
<p>I have GPS coordinates on all of my photos. I want to include tags/IPTC data for the city, state, zip, etc.. However all I have is the GPS coordinates. How can I take these and get meaningful info in an automated fashion (I have thousands upon thousands of photos, so typing each one into google maps would not work).</p>
http://stackoverflow.com/questions/1891404/how-do-you-create-an-english-like-word10How do you create an english like word?esac2009-12-11T22:52:14Z2009-12-12T01:53:34Z
<p>How do you create words which are not part of the english language, but sound english? For example: janertice, bellagom</p>
http://stackoverflow.com/questions/1889257/what-are-the-options-for-network-programming-in-go3What are the options for network programming in Go?esac2009-12-11T16:40:43Z2009-12-12T00:23:49Z
<p>I am looking to write a simple client/server utilizing TCP sockets. Any ideas how to do network programming in Go?</p>
http://stackoverflow.com/questions/1891678/what-is-the-fastest-way-to-insert-a-large-amount-of-records-into-a-sql-server-db3What is the fastest way to insert a large amount of records into a SQL Server DB?esac2009-12-12T00:10:21Z2009-12-12T00:22:42Z
<p>I need to insert millions of records being read from disk into SQL server. I am parsing these from a file on one machine, in what is a single-threaded process.</p>
<p>Ideally I would want it to perform well if the SQL server is local or remote. It has to be done programatically in C#.</p>
http://stackoverflow.com/questions/1889378/how-do-you-draw-a-string-with-ansi-codes1How do you draw a string with ANSI codes?esac2009-12-11T16:57:32Z2009-12-11T17:07:07Z
<p>I want to write a custom control, similar to RichTextBox which receives an ANSI code formatted string (\e[0;32mHello \e[0;37mWorld) where the codes represent the colors of the text (foreground, background, etc..). </p>
<p>Ideally I would just want to append any text received to this control, and the control render correctly. I have looked into converting it into RTF, but didn't have much luck there.</p>
http://stackoverflow.com/questions/1885389/how-to-manage-large-projects-without-visual-studio0How to manage large projects without Visual Studio?esac2009-12-11T02:00:31Z2009-12-11T05:04:17Z
<p>How does one go about keeping track of source files, resources, references, assemblies, etc.. if they didn't want to use Visual Studio. I know you can compile code with csc, and use csc to add all of the references, etc.. but it becomes quite painful to add these references as the project grows. </p>
<p>How do you manage it when splitting the project up into separate folders (different modules, etc..) and how do you manage dependencies, build order, etc..</p>
<p>Are there any open source (free) projects for managing this? Even so, is it fairly simple for one to do this without having to download any 3rd party programs?</p>
http://stackoverflow.com/questions/1877519/is-it-ok-to-put-comments-about-bug-fixes-in-the-source-code4Is it ok to put comments about bug fixes in the source code?esac2009-12-09T22:59:53Z2009-12-11T00:17:13Z
<p>And if so, where do you draw the line? My coworkers and I disagree on this subject. I have seen such things as</p>
<pre><code>// fixes bug # 22
</code></pre>
<p>to </p>
<pre><code>// fixed bug: shouldnt be decrementing
i++;
</code></pre>
<p>Is it ok if the change is fairly significant, and radically changes what the method was written to do? Or do you simply change the summary text of the method to reflect what it is now meant to do?</p>
<p>My opinion is that this information should be put into source control. Some state that this is bad because then it will be lost outside of the context of source control (say you switch systems and want to keep historical data).</p>
http://stackoverflow.com/questions/1883488/is-it-better-to-rewrite-inherited-code-than-fix-it5Is it better to rewrite inherited code than fix it? [closed]esac2009-12-10T19:46:38Z2009-12-10T22:04:05Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/144734/when-is-it-good-if-ever-to-scrap-production-code-and-start-over">When is it good (if ever) to scrap production code and start over?</a> </p>
</blockquote>
<p>Say you have been given a project, and you look at the code. Although it works, and is functional, you realize that to make future changes it would be easier to rewrite a large portion or all of the code. Is it better to do the rewrite? If it costs you a delay now, but saves you delays later (and possible bug fixes later), is it worth it?</p>
<p>Or do you simply fix what you see as you go along and are touching that part of the code?</p>
<p>Or do you fix it only if a bug is reported that would require touching that code?</p>
http://stackoverflow.com/questions/1786531/c-library-for-editing-photo-tags-et-cetera-compatible-with-live-photo-gallery/1850405#18504050Answer by esac for C#: Library for editing photo tags, et cetera, compatible with Live Photo Galleryesac2009-12-04T23:42:33Z2009-12-04T23:42:33Z<p>FotoFly available on CodePlex is a C# library and it supports Windows Live Faces, GPS, Keywords, etc.. just as you are asking. See <a href="http://fotofly.codeplex.com/" rel="nofollow">http://fotofly.codeplex.com/</a></p>
http://stackoverflow.com/questions/1844088/what-are-good-test-automation-frameworks1What are good test automation frameworks?esac2009-12-04T00:30:01Z2009-12-04T16:55:17Z
<p>I am looking for a tool to integrate many different types of automation and test frameworks in order to automate fully end-to-end scenarios for testing. For example, a typical workflow might be:</p>
<ul>
<li>Install an Operating System (Ghost, etc..)</li>
<li>Configure the operating system (open firewall exceptions, setup users, etc..)</li>
<li>Install Software (Visual Studio, SQL, etc..)</li>
<li>Run tests (Visual Studio Unit Tests, nUnit, custom tools, etc..)</li>
<li>Generate Reports on the above runs</li>
<li>Allow monitoring of machines, tests in progress, and scheduling of test runs</li>
</ul>
<p>Does anybody know what system like this might exist?</p>
http://stackoverflow.com/questions/1842445/how-to-convert-stdwstring-to-a-tchar0How to convert std::wstring to a TCHAR*esac2009-12-03T19:51:02Z2009-12-03T21:41:09Z
<p>std::wstring.c_str() returns a wchar_t*.</p>
<p>How do I get from wchar_t* to TCHAR*, or from std::wstring to TCHAR*</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1838193/how-to-create-an-autocomplete-list-in-vim2How to create an autocomplete list in ViM?esac2009-12-03T07:07:37Z2009-12-03T07:18:48Z
<p>As I am typing code, I would like to get the symbol before and after a specific character (e.g. '.' in C#) and pass that to my own program which would then in return give a list of possible completions.</p>
<p>For example if user is typing:</p>
<pre><code>m_Filename.M
</code></pre>
<p>I would want to call out into my own DLL/EXE passing "m_Filename" and "M" and my program return a list such as</p>
<pre><code>Match
Matches
</code></pre>
<p>And have that popup in a list in ViM for autocompletion suggestions.</p>
<p>Note that this is not asking how to write the DLL/EXE which provides the suggestions, just the functionality in ViM for autocomplete .</p>
http://stackoverflow.com/questions/1719642/how-to-handle-json-in-c1How to handle JSON in C#?esac2009-11-12T03:10:45Z2009-11-20T19:53:31Z
<p>Is there an easy/elegant parser for dealing with JSON in C#? How about actually serializing/deserializing into C# objects?</p>
http://stackoverflow.com/questions/1764411/how-to-add-a-view-for-current-user-details-in-mvc0How to add a view for current user details in MVC?esac2009-11-19T16:05:23Z2009-11-20T13:44:30Z
<p>MVC 2, so I do not know if it is different. I am trying to add a page so that when a user is logged in, they click on their username at the upper right of the page, and it takes them to a page showing their details (email, change password link, profile information, etc..). I am trying to use the aspnet MembershipService to do this.</p>
http://stackoverflow.com/questions/1768259/how-to-detect-when-screen-brightness-or-system-volume-changed1How to detect when screen brightness or system volume changed?esac2009-11-20T04:01:39Z2009-11-20T04:38:20Z
<p>I want to detect when either of these changes and display an overlay on screen showing the current level. If there is a tool for this, then please point me to it. But if not how would I programatically get this (C#)?</p>
http://stackoverflow.com/questions/1671031/how-to-call-a-custom-visual-studio-wizard-from-command-line0How to call a custom Visual Studio Wizard from Command Line?esac2009-11-04T00:29:06Z2009-11-06T19:16:30Z
<p>We have a Visual Studio Wizard written using the DTE environment to automatically generate code, templates, etc.. based off some custom database stuff. Right now it brings up a few dialogs, collects information, and then uses the EnvDTE class to generate the code and format it.</p>
<p>Given that I have the information collected from the dialogs available, is there a way to invoke devenv and have it run the wizard to automatically generate the code?</p>
http://stackoverflow.com/questions/1671031/how-to-call-a-custom-visual-studio-wizard-from-command-line/1689698#16896980Answer by esac for How to call a custom Visual Studio Wizard from Command Line?esac2009-11-06T19:16:30Z2009-11-06T19:16:30Z<p>The answer to this was visual studio automation using DTE2 interface. For example, I created a new instance of Visual Studio with</p>
<pre><code>Type t = Type.GetTypeFromProgID("VisualStudio.DTE.9.0", true);
object obj = System.Activator.CreateInstance(t, true);
m_DTEInstance = obj as DTE2;
</code></pre>
<p>Then you can do things such as creating a new solution:</p>
<pre><code>Solution2 solution = (Solution2)m_DTEInstance.Solution;
solution.Create(OutputDirectory, Namespace + ".sln");
</code></pre>
http://stackoverflow.com/questions/1557507/what-is-a-good-statistical-math-package-for-net1What is a good statistical math package for .Net?esac2009-10-12T23:31:50Z2009-10-22T04:46:29Z
<p>I am looking for a library that does advanced math, statistics, statistical distribution, etc..</p>
<p>Currently I am looking for something that does binomial and poisson distribution.</p>
http://stackoverflow.com/questions/1592569/how-to-find-out-if-there-are-any-duplicates-in-one-list-versus-another0How to find out if there are any duplicates in one list versus another?esac2009-10-20T05:04:49Z2009-10-20T05:53:30Z
<p>I have a List where MyClass has a property 'Name'. I want to know if there are duplicate MyClass with the same Name in the list.</p>
<p>Also, I have a different List and I want to know if there are any duplicates compared to List A.</p>
http://stackoverflow.com/questions/1562474/how-do-i-check-when-the-computer-is-being-put-to-sleep-or-wakes-up2How do I check when the computer is being put to sleep or wakes up?esac2009-10-13T19:37:39Z2009-10-13T19:58:41Z
<p>I want to make my program aware of the computer being put to sleep or waking up from sleep, possibly have an event that is triggered when either of these occur. Is this possible?</p>
http://stackoverflow.com/questions/1541837/how-do-i-make-my-form-transparent-but-what-i-draw-on-it-not3How do I make my form transparent, but what I draw on it not?esac2009-10-09T04:42:07Z2009-10-13T18:52:31Z
<p>I tried setting the opacity of my form to 50%, and then drawing a string on it. It seems that the string I draw on it also has an opacity of 50%. How would I draw a non transparent string , but let the form background show through 50%?</p>
<p>Would also be willing to do this in WPF if it is possible, but I would need explicit instructions or an example project as I have never done it before.</p>
<p>To clarify, I want the form background to be a black 80% opaque to what is underneath, and then I want to draw text, etc.. on it and have it appear 100% opaque.</p>
http://stackoverflow.com/questions/1556382/does-windows-support-metadata-for-every-file2Does Windows support metadata for every file?esac2009-10-11T16:58:33Z2009-10-12T19:18:50Z
<p>I know things like images, music, videos support metadata. My idea is that I want to write a download manager that adds info to the files I download: the URL I downloaded it from, the date and time I downloaded it, possibly some more. For this to work I need to add info for more than just photos and videos. I could just save a hidden .XML flie, but if Windows supports this already then it would be better.</p>
http://stackoverflow.com/questions/1523500/how-do-i-create-an-extension-method-f0How do I create an extension method (F#)?esac2009-10-06T03:49:24Z2009-10-12T03:15:06Z
<p>How do I create an extension method in F#, for example, like this C# extension:</p>
<pre><code> public static string Right(this string host, int index)
{
return host.Substring(host.Length - index);
}
</code></pre>
<p>EDIT</p>
<p>Basically a duplicate: </p>
<p><a href="http://stackoverflow.com/questions/702256/f-extensions-in-c">http://stackoverflow.com/questions/702256/f-extensions-in-c</a></p>
<p>(Asks a more in-depth question, but also answers this question)</p>
http://stackoverflow.com/questions/1539347/what-are-ways-of-improving-build-compile-time3What are ways of improving build/compile time?esac2009-10-08T17:34:19Z2009-10-10T03:35:09Z
<p>I am using Visual Studio, and it seems that getting rid of unused references and using statements speeds up my build time on larger projects. Are there other known ways of speeding up build time. What about for other languages and build environments?</p>
<p>What is typically the bottleneck during build/compile? Disk, CPU, Memory?</p>
<p>What is a list of/are good references for distributed builds?</p>
http://stackoverflow.com/questions/1536141/how-to-draw-directly-on-the-windows-desktop-c2How to draw directly on the Windows desktop, C#?esac2009-10-08T07:24:50Z2009-10-08T07:41:45Z
<p>This question has been asked for other languages, and even for those other languages, I have found their answers lacking in how to exactly do it, cleanly (no messed up screen repaints, etc..).</p>
<p>Is it possible to draw onto the Windows Desktop from C#? I am looking for an example if possible.</p>
http://stackoverflow.com/questions/1534498/how-do-i-listen-for-a-keyboard-combination-globally0How do I listen for a keyboard combination globally?esac2009-10-07T22:05:10Z2009-10-07T23:05:46Z
<p>How would I have my C# program listen for a specific keyboard combination (say, CTRL+ALT+F2) globally. Even if my application is minimized I would want it to intercept this and do something.</p>
http://stackoverflow.com/questions/1528618/how-to-move-a-form-while-the-mouse-is-being-held-down0How to move a form while the mouse is being held down?esac2009-10-06T23:18:52Z2009-10-06T23:43:35Z
<p>I have a Windows form which does not have a border, titlebar, menu, etc.. I want the user to be able to hold the CTRL key down, left-click anywhere on my form, and drag it, and have it move. Any idea how to do this? I tried this, but it flickers, a lot:</p>
<pre><code> private void HiddenForm_MouseMove(object sender, System.Windows.Forms.MouseEventArgs e)
{
if (e.Button == System.Windows.Forms.MouseButtons.Left)
{
this.SuspendLayout();
Point xy = new Point(this.Location.X + (e.X - this.Location.X), this.Location.Y + (e.Y - this.Location.Y));
this.Location = xy;
this.ResumeLayout(true);
}
}
</code></pre>
http://stackoverflow.com/questions/849786/is-a-lock-wait-free-doubly-linked-list-possible2Is a lock (wait) free doubly linked list possible?esac2009-05-11T19:57:41Z2009-10-06T15:25:08Z
<p>Asking this question with C# tag, but if it is possible, it should be possible in any language. </p>
<p>Is it possible to implement a doubly linked list using Interlocked operations to provide no-wait locking? I would want to insert, add and remove, and clear without waiting.</p>
http://stackoverflow.com/questions/1897732/how-can-i-use-a-mac-address-to-get-a-gps-coordinateComment by esac on How can I use a MAC address to get a GPS coordinate?esac2009-12-13T23:31:18Z2009-12-13T23:31:18ZGot it, thanks.http://stackoverflow.com/questions/1897732/how-can-i-use-a-mac-address-to-get-a-gps-coordinate/1897864#1897864Comment by esac on How can I use a MAC address to get a GPS coordinate?esac2009-12-13T23:30:38Z2009-12-13T23:30:38ZOh, I totally agree with that, and why I would have to base my query off from just MAC. Upvoted. I think what it comes down to is what you say. This is a niche/hole for an open source project.http://stackoverflow.com/questions/1897732/how-can-i-use-a-mac-address-to-get-a-gps-coordinate/1897864#1897864Comment by esac on How can I use a MAC address to get a GPS coordinate?esac2009-12-13T23:04:06Z2009-12-13T23:04:06ZJust curious why you are saying that you can't get the AP MAC Address. I assume the address giving from BSSID is the same, but even if they differ, aren't they often static? See my edit.http://stackoverflow.com/questions/1897732/how-can-i-use-a-mac-address-to-get-a-gps-coordinate/1897755#1897755Comment by esac on How can I use a MAC address to get a GPS coordinate?esac2009-12-13T21:20:27Z2009-12-13T21:20:27ZI know it's possible. Eye-Fi uses SkyHook to determine this. Maybe they have a partnership, or SkyHook's API is exclusive. They probably just have a database of MAC addresses and GPS coordinates. It would be very siple to create, but if I could somehow use skyhook or similar it would save me a lot of time.http://stackoverflow.com/questions/1891953/how-do-you-get-the-country-state-region-city-state-zip-postal-from-gps-coordinate/1891980#1891980Comment by esac on How do you get the country/state/region/city/state/zip/postal from GPS coordinates?esac2009-12-12T02:05:10Z2009-12-12T02:05:10ZOh nice, any idea on ToS for that? Can I do 40000 of these overnight? :)http://stackoverflow.com/questions/1891926/would-you-feel-offended-or-upset-if-another-developer-ran-a-code-beautifier-on-th/1891951#1891951Comment by esac on Would you feel offended or upset if another developer ran a code beautifier on the code base?esac2009-12-12T01:54:40Z2009-12-12T01:54:40ZAll changes, even just formatting, need to pass unit tests, so yes :)http://stackoverflow.com/questions/1891926/would-you-feel-offended-or-upset-if-another-developer-ran-a-code-beautifier-on-th/1891939#1891939Comment by esac on Would you feel offended or upset if another developer ran a code beautifier on the code base?esac2009-12-12T01:49:37Z2009-12-12T01:49:37ZStandards are for future versions of code, not current. When you look at the code, you see about 15 different 'standards' in place :(http://stackoverflow.com/questions/1891926/would-you-feel-offended-or-upset-if-another-developer-ran-a-code-beautifier-on-th/1891931#1891931Comment by esac on Would you feel offended or upset if another developer ran a code beautifier on the code base?esac2009-12-12T01:48:11Z2009-12-12T01:48:11ZDo diff tools in build systems allow you to skip a checkin? i.e.; can you diff 1 -> 3 directly without including 2?http://stackoverflow.com/questions/1891926/would-you-feel-offended-or-upset-if-another-developer-ran-a-code-beautifier-on-th/1891932#1891932Comment by esac on Would you feel offended or upset if another developer ran a code beautifier on the code base?esac2009-12-12T01:47:10Z2009-12-12T01:47:10ZJust curious what you mean by blocks of text? Comments would be left in their current locations.http://stackoverflow.com/questions/1891678/what-is-the-fastest-way-to-insert-a-large-amount-of-records-into-a-sql-server-db/1891709#1891709Comment by esac on What is the fastest way to insert a large amount of records into a SQL Server DB?esac2009-12-12T01:21:05Z2009-12-12T01:21:05ZFollowup Question. Any idea if just a SqlBulkCopy.WriteToServer on a single thread is sufficient to hit a bottleneck, or would it be better to put these on multiple threads.http://stackoverflow.com/questions/1891678/what-is-the-fastest-way-to-insert-a-large-amount-of-records-into-a-sql-server-db/1891692#1891692Comment by esac on What is the fastest way to insert a large amount of records into a SQL Server DB?esac2009-12-12T00:17:53Z2009-12-12T00:17:53ZThe main issue I see with this is that I need to read in the data from disk, parse it, and then write it out to a file, and then calling bcp. Anything to go straight from memory->sql?http://stackoverflow.com/questions/1891404/how-do-you-create-an-english-like-word/1891539#1891539Comment by esac on How do you create an english like word?esac2009-12-11T23:41:26Z2009-12-11T23:41:26ZUpvoted for simplicity.http://stackoverflow.com/questions/1889378/how-do-you-draw-a-string-with-ansi-codes/1889440#1889440Comment by esac on How do you draw a string with ANSI codes?esac2009-12-11T20:21:32Z2009-12-11T20:21:32Za control which functions like a terminal, yes to some degree. i already determined how i could draw the characters to screen, with color in my own control. but then i lose a lot of the functionality that something like a richtextbox has. and i have to convert it to my own structure of colors/characters and memory map that onto screen. preferably i would just leave the ansi escape codes in the stirng, and the control would parse and render as it goes alonghttp://stackoverflow.com/questions/1889378/how-do-you-draw-a-string-with-ansi-codes/1889440#1889440Comment by esac on How do you draw a string with ANSI codes?esac2009-12-11T17:15:15Z2009-12-11T17:15:15ZI've already written the parser, and unfortunately I do need to handle a few more such as cursor positioning, clearing the screen, etc.http://stackoverflow.com/questions/1885389/how-to-manage-large-projects-without-visual-studioComment by esac on How to manage large projects without Visual Studio?esac2009-12-11T02:30:27Z2009-12-11T02:30:27ZNo, I don't want to avoid paying for Visual Studio. I actually own a copy. I am just an avid ViM user, and really do not like any of the plugins for vim+visual studio. I wanted to see if I can manage the project I am working on with just vim. I have intellisense setup, I compile and it lists the errors in the same window. I am working on highlighting specific lines. Would like to NOT use .sln and .csproj files.