User sieben - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T03:45:58Z http://stackoverflow.com/feeds/user/1147 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/17533/request-vista-uac-elevation-if-path-is-protected 6 Request vista UAC elevation if path is protected? sieben 2008-08-20T07:50:29Z 2009-10-29T03:55:00Z <p>For my C# app, I don't want to always prompt for elevation on application start, but if they choose an output path that is UAC protected then I need to request elevation.</p> <p>So, how do I check if a path is UAC protected and then how do I request elevation mid-execution?</p> <p>Thanks.</p> http://stackoverflow.com/questions/9951/what-color-scheme-do-you-use-for-programming/10142#10142 7 Answer by sieben for What color scheme do you use for programming? sieben 2008-08-13T18:10:52Z 2009-02-09T13:26:02Z <p>Here's my heavily modified version of the MidTones scheme</p> <p><img src="http://brettnstewart.com/images/colors.png" alt="none" title="" /></p> <p>--</p> <p>added download link: <a href="http://brettnstewart.com/files/darkorange.zip" rel="nofollow">here</a></p> http://stackoverflow.com/questions/237914/redirectstandardoutput-is-buffering-lines-instead-of-being-instantaneous 0 RedirectStandardOutput is buffering lines instead of being instantaneous? sieben 2008-10-26T11:46:47Z 2008-10-26T13:29:28Z <p>Ok, I am trying to use Tail to monitor a log file, but I cannot get the same behavior programatically as when I manually run it through cmd prompt using the same parameters.</p> <p>When run through cmd prompt it displays the new lines <strong>instantly</strong>. Programatically though, I have to wait for about <strong>75+ new lines</strong> in log file before the 'buffer' unleashes all the lines.</p> <p>Here's the code I have now.</p> <pre><code>private const string tailExecutable = @"C:\tail.exe"; private const string logFile = @"C:\test.log"; private static void ReadStdOut() { var psi = new ProcessStartInfo { FileName = tailExecutable, Arguments = String.Format("-f \"{0}\"", logFile), UseShellExecute = false, RedirectStandardOutput = true }; // Running same exe -args through cmd.exe // works perfectly, but not programmatically. Console.WriteLine("{0} {1}", psi.FileName, psi.Arguments); var tail = new Process(); tail.StartInfo = psi; tail.OutputDataReceived += tail_OutputDataReceived; tail.Start(); tail.BeginOutputReadLine(); } static void tail_OutputDataReceived(object sender, DataReceivedEventArgs e) { Console.WriteLine(e.Data); } </code></pre> <p>I have used the OutputDataReceived event before but never had these buffering/spamming problems. </p> <p>I am so confused with about right now.</p> <h2>* <strong>Edit</strong> *</h2> <p>I found <a href="http://www.codeproject.com/KB/cs/wintail.aspx" rel="nofollow">this wintail project on CodeProject</a> and am going to be switching to that because the buffer makes this solution way too slow.</p> <p>Thanks for the answers.</p> http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/175708#175708 15 Answer by sieben for What's the most egregious pop culture perversion of programming? sieben 2008-10-06T19:03:40Z 2008-10-06T23:13:06Z <p>No ones watching the latest season of <strong>Prison Break</strong> with the device that <em>sucks up electronic data from other devices</em>? He could stand next to your computer with this device in his pocket and copy your entire hard drive..</p> <p>Better yet, it could also copy data from portable media (whether or not they're turn on)!</p> http://stackoverflow.com/questions/169529/how-to-efficiently-filter-a-large-listviewitemcollection/169611#169611 1 Answer by sieben for How to efficiently filter a large LIstViewItemCollection? sieben 2008-10-04T02:46:13Z 2008-10-04T02:46:13Z <p>AddRange is much faster than add</p> <pre><code>MyListView.AddRange(items) </code></pre> http://stackoverflow.com/questions/157319/do-you-have-a-hobby-development-project/157408#157408 15 Answer by sieben for Do you have a hobby development project? sieben 2008-10-01T12:44:53Z 2008-10-01T12:44:53Z <p>I currently only do hobby projects, teaching myself how to program.</p> <p>My most complete project is my rss reader, but it's still not done. I really don't know when I would release it since currently I don't feel I'm good enough to release something so complex without bugs.</p> <p>Here's a <a href="http://brettnstewart.com/files/express/today.png" rel="nofollow">screenshot</a> from a week or so ago.</p> http://stackoverflow.com/questions/10456/howto-disable-webbrowser-click-sound-in-your-app-only 6 HowTo Disable WebBrowser 'Click Sound' in your app only. sieben 2008-08-13T23:01:01Z 2008-09-26T20:05:37Z <p>The 'click sound' in question is actually a system wide preference, so I only want it to be disabled when my application has focus and then re-enable when the application closes/loses focus.</p> <p>Originally, I wanted to ask this question here on stackoverflow, but I was not yet in the beta. So, after googling for the answer and finding only a little bit of information on it I came up with the following and decided to post it here now that I'm in the beta.</p> <pre><code>using System; using Microsoft.Win32; namespace HowTo { class WebClickSound { /// &lt;summary&gt; /// Enables or disables the web browser navigating click sound. /// &lt;/summary&gt; public static bool Enabled { get { RegistryKey key = Registry.CurrentUser.OpenSubKey(@"AppEvents\Schemes\Apps\Explorer\Navigating\.Current"); string keyValue = (string)key.GetValue(null); return String.IsNullOrEmpty(keyValue) == false &amp;&amp; keyValue != "\"\""; } set { string keyValue; if (value) { keyValue = "%SystemRoot%\\Media\\"; if (Environment.OSVersion.Version.Major == 5 &amp;&amp; Environment.OSVersion.Version.Minor &gt; 0) { // XP keyValue += "Windows XP Start.wav"; } else if (Environment.OSVersion.Version.Major == 6) { // Vista keyValue += "Windows Navigation Start.wav"; } else { // Don't know the file name so I won't be able to re-enable it return; } } else { keyValue = "\"\""; } // Open and set the key that points to the file RegistryKey key = Registry.CurrentUser.OpenSubKey(@"AppEvents\Schemes\Apps\Explorer\Navigating\.Current", true); key.SetValue(null, keyValue, RegistryValueKind.ExpandString); isEnabled = value; } } } } </code></pre> <p>Then in the main form we use the above code in these 3 events: </p> <ul> <li>Activated </li> <li>Deactivated </li> <li><p>FormClosing</p> <pre><code>private void Form1_Activated(object sender, EventArgs e) { // Disable the sound when the program has focus WebClickSound.Enabled = false; } private void Form1_Deactivate(object sender, EventArgs e) { // Enable the sound when the program is out of focus WebClickSound.Enabled = true; } private void Form1_FormClosing(object sender, FormClosingEventArgs e) { // Enable the sound on app exit WebClickSound.Enabled = true; } </code></pre></li> </ul> <p>The one problem I see currently is if the program crashes they won't have the click sound until they re-launch my application, but they wouldn't know to do that.</p> <p>What do you guys think? Is this a good solution? What improvements can be made?</p> http://stackoverflow.com/questions/48744/finding-the-phone-numbers-in-50-000-html-pages/48834#48834 1 Answer by sieben for Finding the phone numbers in 50,000 HTML pages sieben 2008-09-07T22:06:18Z 2008-09-22T15:31:47Z <p>i love doing these little problems, can't help myself.</p> <p>not sure if it was worth doing though since it's very similar to the java answer.</p> <pre><code>private readonly Regex phoneNumExp = new Regex(@"(\({0,1}\d{3}\){0,1}[- \.]\d{3}[- \.]\d{4})|(\+\d{2}-\d{2,4}-\d{3,4}-\d{3,4})"); public HashSet&lt;string&gt; Search(string dir) { var numbers = new HashSet&lt;string&gt;(); string[] files = Directory.GetFiles(dir, "*.html", SearchOption.AllDirectories); foreach (string file in files) { using (var sr = new StreamReader(file)) { string line; while ((line = sr.ReadLine()) != null) { var match = phoneNumExp.Match(line); if (match.Success) { numbers.Add(match.Value); } } } } return numbers; } </code></pre> http://stackoverflow.com/questions/106510/what-is-a-good-application-programming-problem-to-solve-for-beginners/106863#106863 1 Answer by sieben for What is a good application programming problem to solve for beginners? sieben 2008-09-20T02:52:37Z 2008-09-20T02:52:37Z <p>From my experience, the best thing to start with is something <strong>you would actually use</strong>. That way you have more motivation and when you're finished you have something extremely useful to you, if not others as well.</p> <p>Before I was able to program, I tried every rss reader/podcast downloader and imo, they all had major flaws (used too much memory, unreliable or missing key features.) I knew that when I started programming that I had to create my own rss reader and that's what I did. I've been using it for around a year now, but more importantly I have been constantly improving it every time I learn something new. I'll find something here on SO and realise that it would be a perfect addition or a more elegant solution for my program.</p> <p>So, ask yourself what application you're missing or would make your life easier and then start making it!</p> http://stackoverflow.com/questions/77726/xml-or-sqlite-when-to-drop-xml-for-a-database 4 Xml or Sqlite, When to drop Xml for a Database? sieben 2008-09-16T22:05:27Z 2008-09-17T22:30:32Z <p>I really like Xml for saving data, but when does sqlite/database become the better option? eg, when the xml has more than <em>x</em> items or is greater than <em>y</em> MB?</p> <p>I am coding an rss reader and I believe I made the wrong choice in using xml over a sqlite database to store a cache of <em>all</em> the feeds items. There are some feeds which have an xml file of ~1mb after a month, another has over 700 items, while most only have ~30 items and are ~50kb in size after a <em>several</em> months. </p> <p>I currently have no plans to implement a cap because I like to be able to search through everything.</p> <p>So, my questions are:</p> <ol> <li>When is the overhead of sqlite/databases justified over using xml?</li> <li>Are the <strong>few large xml files</strong> justification enough for the database when there are <strong>a lot of small</strong> ones, though even the small ones will grow over time? (a long <em>long</em> time)</li> </ol> <p><strong>updated</strong> (more info)</p> <p>Every time a feed is selected in the GUI I reload all the items from that feeds xml file.</p> <p>I also need to modify the read/unread status which seems really hacky when I loop through all nodes in the xml to find the item and then set it to read/unread.</p> http://stackoverflow.com/questions/77726/xml-or-sqlite-when-to-drop-xml-for-a-database/88358#88358 0 Answer by sieben for Xml or Sqlite, When to drop Xml for a Database? sieben 2008-09-17T22:30:32Z 2008-09-17T22:30:32Z <p>I have made the switch to SQLite and I feel <em>much</em> better knowing it's in a database. </p> <p>There are a lot of other benefits from this: </p> <ul> <li>Adding new items is really simple</li> <li>Sorting by multiple columns</li> <li>Removing duplicates with a unique index</li> </ul> <p>I've created 2 views, one for unread items and one for all items, not sure if this is the best use of views, but I really wanted to try using them.</p> <p>I also benchmarked the xml vs sqlite using the <strong>StopWatch</strong> class, and the sqlite is faster, <strong>although it could just be that my way of parsing xml files wasn't the fastest method</strong>.</p> <ol> <li><strong>Small # items and size (25 items, 30kb)</strong> <ul> <li>~1.5 ms sqlite</li> <li>~8.0 ms xml</li> </ul></li> <li><strong>Large # of items (700 items, 350kb)</strong> <ul> <li>~20 ms sqlite</li> <li>~25 ms xml</li> </ul></li> <li><strong>Large file size (850 items, 1024kb)</strong> <ul> <li>~45 ms sqlite</li> <li>~60 ms xml</li> </ul></li> </ol> http://stackoverflow.com/questions/82319/how-can-i-determine-the-length-of-a-wav-file-in-c/82439#82439 0 Answer by sieben for How can I determine the length of a .wav file in C#? sieben 2008-09-17T12:14:21Z 2008-09-17T12:14:21Z <p>I'm gonna have to say <a href="http://mediainfo.sourceforge.net/en" rel="nofollow">MediaInfo</a>, I have been using it for over a year with a audio/video encoding application I'm working on. It gives all the information for wav files along with almost every other format.</p> <p><a href="http://sourceforge.net/project/showfiles.php?group_id=86862&amp;package_id=90614" rel="nofollow">MediaInfoDll</a> Comes with sample C# code on how to get it working.</p> http://stackoverflow.com/questions/57010/best-way-to-reduce-sequences-in-an-array-of-strings/57410#57410 1 Answer by sieben for Best way to reduce sequences in an array of strings sieben 2008-09-11T19:30:46Z 2008-09-11T19:44:06Z <p>Here's C# app i wrote that solves this problem.</p> <p><strong>takes</strong><br /> aabccacdcd </p> <p><strong>outputs</strong><br /> abcacd </p> <p>Probably looks pretty messy, took me a bit to get my head around the dynamic pattern length bit.</p> <pre><code>class Program { private static List&lt;string&gt; values; private const int MAX_PATTERN_LENGTH = 4; static void Main(string[] args) { values = new List&lt;string&gt;(); values.AddRange(new string[] { "a", "b", "c", "c", "a", "c", "d", "c", "d" }); for (int i = MAX_PATTERN_LENGTH; i &gt; 0; i--) { RemoveDuplicatesOfLength(i); } foreach (string s in values) { Console.WriteLine(s); } } private static void RemoveDuplicatesOfLength(int dupeLength) { for (int i = 0; i &lt; values.Count; i++) { if (i + dupeLength &gt; values.Count) break; if (i + dupeLength + dupeLength &gt; values.Count) break; var patternA = values.GetRange(i, dupeLength); var patternB = values.GetRange(i + dupeLength, dupeLength); bool isPattern = ComparePatterns(patternA, patternB); if (isPattern) { values.RemoveRange(i, dupeLength); } } } private static bool ComparePatterns(List&lt;string&gt; pattern, List&lt;string&gt; candidate) { for (int i = 0; i &lt; pattern.Count; i++) { if (pattern[i] != candidate[i]) return false; } return true; } } </code></pre> <p><em>fixed the initial values to match the questions values</em></p> http://stackoverflow.com/questions/46030/c-force-form-focus/46467#46467 0 Answer by sieben for C# Force Form Focus sieben 2008-09-05T18:22:28Z 2008-09-05T18:22:28Z <p>Doesn't <strong>ShowDialog()</strong> have different window behavior than just <strong>Show()</strong>?</p> <p>What if you tried:</p> <pre><code>msgFrm.Show(); msgFrm.BringToFront(); msgFrm.Focus(); </code></pre> http://stackoverflow.com/questions/34183/c-net-why-is-my-process-start-hanging/38164#38164 1 Answer by sieben for C#.Net: Why is my Process.Start() hanging? sieben 2008-09-01T16:49:39Z 2008-09-01T16:49:39Z <p>Why not just do all the work in C# instead of using batch files?</p> <p>I was bored so i wrote this real quick, it's just an outline of how I would do it since I don't know what the command line switches do or the file paths.</p> <pre><code>using System; using System.IO; using System.Text; using System.Security; using System.Diagnostics; namespace asdf { class StackoverflowQuestion { private const string MSBUILD = @"path\to\msbuild.exe"; private const string BMAIL = @"path\to\bmail.exe"; private const string WORKING_DIR = @"path\to\working_directory"; private string stdout; private Process p; public void DoWork() { // build project StartProcess(MSBUILD, "myproject.csproj /t:Build", true); } public void StartProcess(string file, string args, bool redirectStdout) { SecureString password = new SecureString(); foreach (char c in "mypassword".ToCharArray()) password.AppendChar(c); ProcessStartInfo psi = new ProcessStartInfo(); p = new Process(); psi.WindowStyle = ProcessWindowStyle.Hidden; psi.WorkingDirectory = WORKING_DIR; psi.FileName = file; psi.UseShellExecute = false; psi.RedirectStandardOutput = redirectStdout; psi.UserName = "builder"; psi.Password = password; p.StartInfo = psi; p.EnableRaisingEvents = true; p.Exited += new EventHandler(p_Exited); p.Start(); if (redirectStdout) { stdout = p.StandardOutput.ReadToEnd(); } } void p_Exited(object sender, EventArgs e) { if (p.ExitCode != 0) { // failed StringBuilder args = new StringBuilder(); args.Append("-s k2smtpout.secureserver.net "); args.Append("-f build@example.com "); args.Append("-t josh@example.com "); args.Append("-a \"Build failed.\" "); args.AppendFormat("-m {0} -h", stdout); // send email StartProcess(BMAIL, args.ToString(), false); } } } } </code></pre> http://stackoverflow.com/questions/37089/how-can-an-app-utilize-multiple-cores-or-cpus-in-net-or-java/37127#37127 0 Answer by sieben for How can an app utilize multiple cores or CPUs in .Net or Java? sieben 2008-08-31T21:26:33Z 2008-08-31T21:32:43Z <p>I have used this in a couple programs because my core 0 was kinda messed up.</p> <pre><code>// Programmatically set process affinity var process = System.Diagnostics.Process.GetCurrentProcess(); // Set Core 0 process.ProcessorAffinity = new IntPtr(0x0001); </code></pre> <p>or</p> <pre><code>// Set Core 1 process.ProcessorAffinity = new IntPtr(0x0002); </code></pre> <p>More on this <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.process.processoraffinity.aspx" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/36691/stackoverflow-rss-expected-dtd-markup-was-not-found/36694#36694 0 Answer by sieben for Stackoverflow RSS: Expected DTD markup was not found sieben 2008-08-31T08:43:54Z 2008-08-31T08:43:54Z <p>It's a question because it's only effecting <em>my</em> code.</p> <p>Everything else seems to have no problem parsing this feed.</p> http://stackoverflow.com/questions/34183/c-net-why-is-my-process-start-hanging/34801#34801 0 Answer by sieben for C#.Net: Why is my Process.Start() hanging? sieben 2008-08-29T17:22:34Z 2008-08-29T17:22:34Z <p>I think cmd.exe hangs if the parameters are incorrect.</p> <p>If the batch executes correctly then I would just shell execute it like this instead.</p> <pre><code>ProcessStartInfo psi = new ProcessStartInfo(); Process p = new Process(); psi.WindowStyle = ProcessWindowStyle.Hidden; psi.WorkingDirectory = @"c:\build"; psi.FileName = @"C:\build\build.cmd"; psi.UseShellExecute = true; psi.UserName = "builder"; psi.Password = password; p.StartInfo = psi; p.Start(); </code></pre> <p>Also it could be that cmd.exe just can't find build.cmd so why not give the full path to the file?</p> http://stackoverflow.com/questions/24734/selectnodes-not-working-on-stackoverflow-feed 4 SelectNodes not working on stackoverflow feed sieben 2008-08-24T00:40:48Z 2008-08-24T01:25:44Z <p>I'm trying to add support for stackoverflow feeds in my rss reader but <strong>SelectNodes</strong> and <strong>SelectSingleNode</strong> have no effect. This is probably something to do with ATOM and xml namespaces that I just don't understand yet.</p> <p>I have gotten it to work by removing all attributes from the <strong>feed</strong> tag, but that's a hack and I would like to do it properly. So, how do you use <strong>SelectNodes</strong> with atom feeds?</p> <p>Here's a snippet of the feed.</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;feed xmlns="http://www.w3.org/2005/Atom" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:thr="http://purl.org/syndication/thread/1.0"&gt; &lt;title type="html"&gt;StackOverflow.com - Questions tagged: c&lt;/title&gt; &lt;link rel="self" href="http://beta.stackoverflow.com/feeds/tag/c" type="application/atom+xml" /&gt; &lt;subtitle&gt;Check out the latest from StackOverflow.com&lt;/subtitle&gt; &lt;updated&gt;2008-08-24T12:25:30Z&lt;/updated&gt; &lt;id&gt;http://beta.stackoverflow.com/feeds/tag/c&lt;/id&gt; &lt;creativeCommons:license&gt;http://www.creativecommons.org/licenses/by-nc/2.5/rdf&lt;/creativeCommons:license&gt; &lt;entry&gt; &lt;id&gt;http://beta.stackoverflow.com/questions/22901/what-is-the-best-way-to-communicate-with-a-sql-server&lt;/id&gt; &lt;title type="html"&gt;What is the best way to communicate with a SQL server?&lt;/title&gt; &lt;category scheme="http://beta.stackoverflow.com/feeds/tag/c/tags" term="c" /&gt;&lt;category scheme="http://beta.stackoverflow.com/feeds/tag/c/tags" term="c++" /&gt;&lt;category scheme="http://beta.stackoverflow.com/feeds/tag/c/tags" term="sql" /&gt;&lt;category scheme="http://beta.stackoverflow.com/feeds/tag/c/tags" term="mysql" /&gt;&lt;category scheme="http://beta.stackoverflow.com/feeds/tag/c/tags" term="database" /&gt; &lt;author&gt;&lt;name&gt;Ed&lt;/name&gt;&lt;/author&gt; &lt;link rel="alternate" href="http://beta.stackoverflow.com/questions/22901/what-is-the-best-way-to-communicate-with-a-sql-server" /&gt; &lt;published&gt;2008-08-22T05:09:04Z&lt;/published&gt; &lt;updated&gt;2008-08-23T04:52:39Z&lt;/updated&gt; &lt;summary type="html"&gt;&amp;lt;p&amp;gt;I am going to be using c/c++, and would like to know the best way to talk to a MySQL server. Should I use the library that comes with the server installation? Are they any good libraries I should consider other than the official one?&amp;lt;/p&amp;gt;&lt;/summary&gt; &lt;link rel="replies" type="application/atom+xml" href="http://beta.stackoverflow.com/feeds/question/22901/answers" thr:count="2"/&gt; &lt;thr:total&gt;2&lt;/thr:total&gt; &lt;/entry&gt; &lt;/feed&gt; </code></pre> <p><br/></p> <h2>The Solution</h2> <pre><code>XmlDocument doc = new XmlDocument(); XmlNamespaceManager nsmgr = new XmlNamespaceManager(doc.NameTable); nsmgr.AddNamespace("atom", "http://www.w3.org/2005/Atom"); doc.Load(feed); // successful XmlNodeList itemList = doc.DocumentElement.SelectNodes("atom:entry", nsmgr); </code></pre> http://stackoverflow.com/questions/24734/selectnodes-not-working-on-stackoverflow-feed/24753#24753 0 Answer by sieben for SelectNodes not working on stackoverflow feed sieben 2008-08-24T01:00:40Z 2008-08-24T01:00:40Z <p>I just want to use..</p> <pre><code>XmlNodeList itemList = xmlDoc.DocumentElement.SelectNodes("entry"); </code></pre> <p>but, what namespace do the <strong>entry</strong> tags fall under? I would assume xmlns="http://www.w3.org/2005/Atom", but it has no title so how would I add that namespace?</p> <pre><code>XmlDocument document = new XmlDocument(); XmlNamespaceManager nsmgr = new XmlNamespaceManager(document.NameTable); nsmgr.AddNamespace("", "http://www.w3.org/2005/Atom"); document.Load(feed); </code></pre> <p>Something like that?</p> http://stackoverflow.com/questions/18661/getting-ui-text-from-external-app-in-c/18855#18855 0 Answer by sieben for Getting UI text from external app in C# sieben 2008-08-20T21:08:33Z 2008-08-20T21:08:33Z <p>didn't see the values for wm<em>gettext or wm</em>gettextlength in that article, so just in case..</p> <pre><code>const int WM_GETTEXT = 0x0D; const int WM_GETTEXTLENGTH = 0x0E; </code></pre> http://stackoverflow.com/questions/17533/request-vista-uac-elevation-if-path-is-protected/17587#17587 0 Answer by sieben for Request vista UAC elevation if path is protected? sieben 2008-08-20T08:21:38Z 2008-08-20T08:21:38Z <p>@Brian</p> <p>Well UAC seems to protect random folders, I try to move things between folders on my secondary hard drive and it prompts me for permission. I really don't know what UAC is protecting and not protecting. I guess the solution is to just loop the FolderBrowserDialog until the path write comes back OK.</p> http://stackoverflow.com/questions/17032/should-i-always-favour-implictly-typed-local-variables-in-c-3-0/17347#17347 4 Answer by sieben for Should I *always* favour implictly typed local variables in C# 3.0? sieben 2008-08-20T02:26:04Z 2008-08-20T02:26:04Z <p>I use it only when it's clearly obvious what var is.</p> <p>clear to me.</p> <pre><code>XmlNodeList itemList = rssNode.SelectNodes("item"); var rssItems = new RssItem[itemList.Count]; </code></pre> <p>not clear to me.</p> <pre><code>var itemList = rssNode.SelectNodes("item"); var rssItems = new RssItem[itemList.Count]; </code></pre> http://stackoverflow.com/questions/10456/howto-disable-webbrowser-click-sound-in-your-app-only/10480#10480 0 Answer by sieben for HowTo Disable WebBrowser 'Click Sound' in your app only. sieben 2008-08-13T23:32:28Z 2008-08-13T23:32:28Z <p>@matt,</p> <p>Document.Write works perfectly for what I was doing, I don't know why no body posted that on any of the forums i came across while googling.</p> http://stackoverflow.com/questions/9091/accessing-audio-video-metadata-with-net/9213#9213 1 Answer by sieben for Accessing audio/video metadata with .NET sieben 2008-08-12T20:18:03Z 2008-08-12T20:18:03Z <p>These are the example class files for different languages found in the MediaInfo.dll zip</p> <ul> <li>MediaInfoDLL.cs</li> <li>MediaInfoDLL.def</li> <li>MediaInfoDLL.h</li> <li>MediaInfoDLL.java</li> <li>MediaInfoDLL.jsl</li> <li>MediaInfoDLL.pas</li> <li>MediaInfoDLL.py</li> <li>MediaInfoDLL.vb</li> <li>MediaInfoDLL_Static.h</li> </ul> <p>You do have to use interop and I don't know if you can edit tags, I've never needed to do that but it's pretty much a swiss army knife at least for getting media information from files.</p> <p><a href="http://sourceforge.net/project/showfiles.php?group_id=86862&amp;package_id=90614/showfiles.php?group_id=86862&amp;package_id=90614" rel="nofollow">Link to downloads page (sourceforge)</a></p> <p>MediaInfo<em>0.7.7.4</em>DLL_Win32.zip</p> http://stackoverflow.com/questions/9091/accessing-audio-video-metadata-with-net/9170#9170 2 Answer by sieben for Accessing audio/video metadata with .NET sieben 2008-08-12T19:34:28Z 2008-08-12T19:34:28Z <p>I use <a href="http://mediainfo.sourceforge.net/en" rel="nofollow">MediaInfo</a> with my C# apps, gives you a lot of information about media files.</p> http://stackoverflow.com/questions/9951/what-color-scheme-do-you-use-for-programming/10142#10142 Comment by sieben on What color scheme do you use for programming? sieben 2009-02-09T13:27:31Z 2009-02-09T13:27:31Z I added it to the post. http://stackoverflow.com/questions/237914/redirectstandardoutput-is-buffering-lines-instead-of-being-instantaneous/237958#237958 Comment by sieben on RedirectStandardOutput is buffering lines instead of being instantaneous? sieben 2008-10-26T13:30:15Z 2008-10-26T13:30:15Z i tried that, but it didn't seem to do anything. http://stackoverflow.com/questions/237914/redirectstandardoutput-is-buffering-lines-instead-of-being-instantaneous/237958#237958 Comment by sieben on RedirectStandardOutput is buffering lines instead of being instantaneous? sieben 2008-10-26T12:33:37Z 2008-10-26T12:33:37Z There's no way to manually flush it? http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164660#164660 Comment by sieben on What real life bad habits has programming given you? sieben 2008-10-24T10:49:52Z 2008-10-24T10:49:52Z We have a serious issue with toasters breaking so my dad read the full manual for this latest one and went around quoting it to everyone in the house before they were allowed to use it. http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/175708#175708 Comment by sieben on What's the most egregious pop culture perversion of programming? sieben 2008-10-07T05:47:24Z 2008-10-07T05:47:24Z oh, I think that the card owner would have figured out what it was, or had it examined by someone else. http://stackoverflow.com/questions/175074/whats-the-most-egregious-pop-culture-perversion-of-programming/175708#175708 Comment by sieben on What's the most egregious pop culture perversion of programming? sieben 2008-10-06T23:16:21Z 2008-10-06T23:16:21Z lol. It's because it took him so long to create this device that if they lose it, they won't be able to make a new one in time to steal the remaining cards data. http://stackoverflow.com/questions/157319/do-you-have-a-hobby-development-project/157408#157408 Comment by sieben on Do you have a hobby development project? sieben 2008-10-01T15:00:07Z 2008-10-01T15:00:07Z well the thing is, I'm worried about people getting annoyed with bugs (show stopping bugs, things not working etc..) and just going back to miro/itunes. I want to make a great first impression, maybe I'm being too cautious though. Thanks for the feedback though, it's really inspiring. http://stackoverflow.com/questions/157319/do-you-have-a-hobby-development-project/157408#157408 Comment by sieben on Do you have a hobby development project? sieben 2008-10-01T13:57:29Z 2008-10-01T13:57:29Z well I've only been coding for just about 2 years, but the first year I didn't understand anything really. It's written from scratch in C#. http://stackoverflow.com/questions/157511/using-lock-on-the-key-of-a-dictionarystring-object Comment by sieben on Using lock on the key of a Dictionary<string, object> sieben 2008-10-01T13:26:13Z 2008-10-01T13:26:13Z you can't modify foreach elements http://stackoverflow.com/questions/77726/xml-or-sqlite-when-to-drop-xml-for-a-database/77777#77777 Comment by sieben on Xml or Sqlite, When to drop Xml for a Database? sieben 2008-09-16T22:28:22Z 2008-09-16T22:28:22Z These were the things I was thinking of, but I thought I might have been making change for changes sake. http://stackoverflow.com/questions/77726/xml-or-sqlite-when-to-drop-xml-for-a-database/77837#77837 Comment by sieben on Xml or Sqlite, When to drop Xml for a Database? sieben 2008-09-16T22:24:55Z 2008-09-16T22:24:55Z Yeah, sqlite is very fast. I was googling about xml vs sqlite and they were all saying that xml was better because of the database overhead. http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62195#62195 Comment by sieben on Stack overflow code golf sieben 2008-09-15T12:26:31Z 2008-09-15T12:26:31Z lol, I did this once by accident, but it wasn't as obivous. I blame intellisense.