User NVRAM - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T17:52:07Z http://stackoverflow.com/feeds/user/57582 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1759448/why-doesnt-tail-work-to-truncate-log-files/1918368#1918368 2 Answer by NVRAM for Why doesnt "tail" work to truncate log files? NVRAM 2009-12-16T22:47:58Z 2009-12-16T22:47:58Z <p>There is a problem with the accepted solution <em>if the process keeps the log file open</em>; you basically need to reuse the i-node. Mmrobins' response is good, <em>logrotate</em> should do the right thing.</p> <p>To use <strong>tail</strong>, you can do something (similar to Pantonza's &amp; Greg's idea), but retain the original file by truncating the original file in-place:</p> <pre><code>tail -2000 logfile.txt &gt;logfile.tmp cat logfile.tmp &gt; logfile.txt rm logfile.tmp </code></pre> <p>To avoid a temp file, you could read into a variable, then stuff it back:</p> <pre><code>bash -c 'X=$(&lt;tail -2000 logfile.txt);echo "$x"&gt;logfile.txt' </code></pre> <p>In all cases, there's the possibility of a race condition between your truncation and the process appending to the file. Not sure if <em>logrotate</em> handles that, none of the <strong>tail</strong> solutions here do.</p> http://stackoverflow.com/questions/1916919/french-characters-are-not-displaying-correctly-inside-javascript-grid/1917811#1917811 0 Answer by NVRAM for French characters are not displaying correctly inside javascript grid NVRAM 2009-12-16T21:17:30Z 2009-12-16T22:23:56Z <p>The <strong>Accept-Charset</strong> tag gives a set of encodings that are <em>accepted</em> -- if all the data <em>sent</em> is encoded UTF-8, then don't worry about it.</p> <p>Can you elaborate on exactly what is happening?</p> <ol> <li>You say "<em>javascript table</em>" -- I presume you are <em>constructing</em> an HTML table in JS and placing it in the DOM? Please elaborate, especially w.r.t. any character conversions. Are you building HTML text or building with DOM elements with attributes?</li> <li>Where does the JS get its data? If with AJAX, have you verified the Encoding for that page?</li> <li>Does the JS use <strong>encode()</strong> or <strong>decode()</strong>? Those don't handle UTF-8 correctly.</li> </ol> <p><hr/> <strong>EDIT</strong>:</p> <ul> <li><p>Type the URL to the JS code in your browser, and look at "Page Info" to see <em>its</em> encoding. I'll bet <em>it</em> is ISO-8859-1, which would explain the header problems.</p></li> <li><p>Next, check the encoding of the AJAX data. If it's dynamically created you can:</p> <ol> <li>Enable "Show XMLHttpRequests" in FireBug's console,</li> <li>Load on your base HTML page,</li> <li>Open the FireBug console tab,</li> <li>Expand the AJAX GET/POST request and open the <em>Response</em> sub-tab,</li> <li>Check the Encoding for the data, and fix as needed.</li> </ol></li> </ul> <p>BTW, I'm having similar problems and haven't entirely ironed out the issues (still not sure the source data isn't badly encoded).</p> http://stackoverflow.com/questions/1841790/how-can-a-windows-service-determine-its-servicename 1 How can a Windows Service determine its ServiceName? NVRAM 2009-12-03T18:11:05Z 2009-12-09T22:32:51Z <p>I've looked and couldn't find what should be a simple question:</p> <p><strong>How can a Windows Service determine the ServiceName for which it was started?</strong></p> <p>I know the installation can hack at the registry and add a command line argument, but logically that seems like it <em>should</em> be unnecessary, hence this question.</p> <p>I'm hoping to run multiple copies of a single binary more cleanly than the registry hack.</p> <p><strong>Edit</strong>:</p> <p>This is written in C#. My apps <em>Main()</em> entry point does different things, depending on command line arguments:</p> <ul> <li>Install or Uninstall the service. The command line can provide a non-default ServiceName and can change the number of worker threads.</li> <li>Run as a command-line executable (for debugging),</li> <li>Run as a "Windows Service". Here, it creates an instance of my <em>ServiceBase</em>-derived class, then calls <em>System.ServiceProcess.ServiceBase.Run(instance);</em></li> </ul> <p>Currently, the installation step appends the service name and thread count to the <em>ImagePath</em> in the registry so the app can determine it's ServiceName.</p> http://stackoverflow.com/questions/1841790/how-can-a-windows-service-determine-its-servicename/1877404#1877404 0 Answer by NVRAM for How can a Windows Service determine its ServiceName? NVRAM 2009-12-09T22:32:51Z 2009-12-09T22:32:51Z <p>From: <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=387024" rel="nofollow">https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=387024</a></p> <p>Here is a WMI solution. Overriding the <em>ServiceBase.ServiceMainCallback()</em> might also work, but this seems to work for me...</p> <pre><code> protected String GetServiceName() { // Calling System.ServiceProcess.ServiceBase::ServiceNamea allways returns // an empty string, // see https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=387024 // So we have to do some more work to find out our service name, this only works if // the process contains a single service, if there are more than one services hosted // in the process you will have to do something else int processId = System.Diagnostics.Process.GetCurrentProcess().Id; String query = "SELECT * FROM Win32_Service where ProcessId = " + processId; System.Management.ManagementObjectSearcher searcher = new System.Management.ManagementObjectSearcher(query); foreach (System.Management.ManagementObject queryObj in searcher.Get()) { return queryObj["Name"].ToString(); } throw new Exception("Can not get the ServiceName"); } </code></pre> http://stackoverflow.com/questions/1842634/parse-date-in-bash/1854295#1854295 3 Answer by NVRAM for Parse Date in Bash NVRAM 2009-12-06T04:01:10Z 2009-12-07T15:56:53Z <p>This is simple, just convert your dashes and colons to a space (no need to change IFS) and use 'read' all on one line:</p> <pre><code>read Y M D h m s &lt;&lt;&lt; ${date//[-:]/ } </code></pre> <p>For example:</p> <pre><code>$ date=$(date +'%Y-%m-%d %H:%M:%S') $ read Y M D h m s &lt;&lt;&lt; ${date//[-: ]/ } $ echo "Y=$Y, m=$m" Y=2009, m=57 </code></pre> http://stackoverflow.com/questions/1854657/what-regular-expression-matches-this-pattern-22-nov-09/1854671#1854671 0 Answer by NVRAM for What regular expression matches this pattern: 22-NOV-09 NVRAM 2009-12-06T07:42:23Z 2009-12-06T07:42:23Z <p>Drop the <strong>?</strong>. And you can drop the parens unless you're pulling sub-string matches:</p> <pre><code>/^([0-3][0-9])-([A-Z][A-Z][A-Z])-([0-1][0-9])$/ </code></pre> <p>or</p> <pre><code>/^[0-3][0-9]-[A-Z][A-Z][A-Z]-[0-1][0-9]$/ </code></pre> http://stackoverflow.com/questions/1854285/how-to-move-an-element-around-dom-tree-without-affecting-related-javascript/1854322#1854322 0 Answer by NVRAM for How to move an element around DOM tree without affecting related javascript? NVRAM 2009-12-06T04:09:58Z 2009-12-06T04:09:58Z <p>Perhaps you could show the gist of what you do? Specifically, what do you mean by "destroy old one"?</p> <p>This uses jQuery, but you could code to the bare metal if you want:</p> <pre><code>var item = $('#item-id'); // item to move var want = $('#new-div'); // container to receive it item.remove(); want.append(item); </code></pre> <p>You may have trouble moving <em>iframes</em> (not sure). If so, and if you're just <em>swapping</em> two items, move the other one.</p> http://stackoverflow.com/questions/1854251/why-doesnt-this-compile/1854273#1854273 0 Answer by NVRAM for Why doesn't this compile? NVRAM 2009-12-06T03:43:14Z 2009-12-06T03:43:14Z <p>The first argument to construct an <em>istream</em> from a string needs to be: <em>const string &amp; str</em> which this does not create:</p> <pre><code> std::string(buf) </code></pre> <p>While the following code illustrates the point, it leaks memory, <em>so don't actually use it.</em></p> <pre><code> std::istringstream iss(*new std::string(buf)); </code></pre> http://stackoverflow.com/questions/1771510/why-does-this-if-statement-return-false/1771640#1771640 0 Answer by NVRAM for Why does this IF statement return false? NVRAM 2009-11-20T16:27:33Z 2009-11-20T16:27:33Z <p>You could make it more concise by concatenating the strings, then testing:</p> <pre><code>if ((txtBox1.Text.Trim() + txtBox2.Text.Trim()) != string.Empty ) { // Do something } </code></pre> <p>Depending on what the boxes represent this could be somewhat less obvious, though.</p> http://stackoverflow.com/questions/1747759/adding-entity-framework-entities-one-to-many-in-json-via-asp-net-webmethod/1765830#1765830 1 Answer by NVRAM for Adding Entity Framework entities (one-to-many) in JSON via ASP.NET WebMethod NVRAM 2009-11-19T19:17:37Z 2009-11-19T19:17:37Z <p>Why not just return the list of <em>Flight</em>s as a second parameter, then add them to the <em>User</em> within your method?</p> <p>I don't use <em>[WebMethod]</em> with EF parameters, and I generally pass POD structures as parameters, so I've never had this problem....</p> http://stackoverflow.com/questions/1758759/how-can-an-msi-prompt-the-user-for-parameters-to-configure-an-msm 1 How can an MSI prompt the user for parameters to configure an MSM? NVRAM 2009-11-18T20:16:47Z 2009-11-18T20:16:47Z <p>I have an application <em>BACK</em> which is packaged in an Merge Module, and installed with another application <em>FRONT</em> which is in the main MSI package. These are created via projects in MS VisStudio 2008.</p> <p>The user can configure the <em>FRONT</em> application through the MSI's UI with a small set of parameters. I need to access at least one of these parameters (in this case a URL) so that at runtime <em>BACK</em> can access <em>FRONT</em>.</p> <ul> <li>In MS Visual Studio, I can't view a UI for the MSM project to prompt the user.</li> <li>Parameters set in the MSI's UI are apparently not passed through to the MSM -- a class in the MSM (derived from <em>System.Configuration.Install.Installer</em>) is used, but its <em>Install</em> function is called w/an empty <em>IDictionary</em>.</li> </ul> <p>I've searched Google, MSDN, SO and others but haven't even found anyone (using VisStudio) with this question. MSDN seems to have a lot of info on abstractions, with no reference to any tool, it leaves me to think it's intended for developers of install <em>tools</em> rather than of install packages.</p> http://stackoverflow.com/questions/1753351/how-do-i-retrieve-the-values-of-checkboxes-when-the-id-values-are-dynamically-gen/1753394#1753394 0 Answer by NVRAM for How do I retrieve the values of checkboxes when the Id values are dynamically generated NVRAM 2009-11-18T03:07:19Z 2009-11-18T03:07:19Z <p>What does your HTML look like? I'd expect checkboxes like:</p> <pre><code>&lt;li&gt;&lt;input id='0001' type='checkbox' name="files[]" value="file1"/&gt;/xyz/file1&lt;/li&gt; &lt;li&gt;&lt;input id='0002' type='checkbox' name="files[]" value="file2"/&gt;/xyz/file2&lt;/li&gt; &lt;li&gt;&lt;input id='0003' type='checkbox' name="files[]" value="file3"/&gt;/xyz/file3&lt;/li&gt; &lt;li&gt;&lt;input id='0004' type='checkbox' name="files[]" value="file4"/&gt;/xyz/file4&lt;/li&gt; </code></pre> <p>The <em>name</em> will be associated with any values checked on submit. Here, I used <em>files[]</em> because that's required by PHP, I haven't done this in servlets.</p> http://stackoverflow.com/questions/1753166/net-javascript-master-pages-garbling-element-name-is-there-a-way-around-it/1753288#1753288 1 Answer by NVRAM for .net javascript master pages garbling element name is there a way around it? NVRAM 2009-11-18T02:41:12Z 2009-11-18T02:41:12Z <p>You can use <a href="http://docs.jquery.com/Main%5FPage" rel="nofollow">jQuery</a> and its "<a href="http://docs.jquery.com/Selectors/attributeEndsWith#attributevalue" rel="nofollow">attribute ends with</a>" capabilities on the id, such as:</p> <pre><code>var item = $("span[id$=contact_label]"); var text = item.text(); </code></pre> http://stackoverflow.com/questions/1732076/how-reliable-is-mono-on-linux-vs-net-on-windows/1732424#1732424 2 Answer by NVRAM for How Reliable is Mono on Linux vs .NET on Windows? NVRAM 2009-11-13T22:57:57Z 2009-11-13T22:57:57Z <p>Personally, I would steer you away from using C# (Mono) if you are targeting Linux.</p> <ul> <li>Your development community could be very small for any platform issues; while there are obviously a lot of C# developers, the number who use Mono is relatively tiny<sup>1</sup>.</li> <li>In my experience, there are a lot of issues with even <em>finding</em> a recent version of Mono for Linux, unless you run SUSE<sup>2</sup>.</li> <li>While Mono may have the features you want, and may have the reliability (<em>I can't comment, I'm still using 1.x!</em>) you may also want to look into the speed if you expect heavy usage.</li> <li>If you plan to deploy to more machines (especially if you can't clone them) these are much more of an issue; they matter somewhat less if it's just one server.<sup>3</sup></li> <li>There are some who have concerns about the threat of lawsuits over Mono technology, and what might happen to the end users (you and your users) if those occurred. From what I've read, I'm not overly concerned, but <em>I am not a lawyer.</em></li> </ul> <p>Good luck.</p> <ol> <li>I could be mistaken; I didn't look at download numbers for Mono although that'd be the upper bound.</li> <li>Ubuntu Karmic (9.10) has Mono 2.4, but <em>I</em> regret I upgraded from Jaunty (9.04) which had 1.9. </li> <li>Building from source can be taxing. And there <em>are</em> other sources for the Mono 2.X binaries, but they aren't easy to locate.</li> </ol> http://stackoverflow.com/questions/1683976/multi-threaded-bash-programming-generalized-method 1 Multi-threaded BASH programming - generalized method? NVRAM 2009-11-05T22:07:18Z 2009-11-06T18:24:44Z <p>Ok, I was running <a href="http://www.povray.org/" rel="nofollow">POV-Ray</a> on all the demos, but POV's still single-threaded and wouldn't utilize more than one core. So, I started thinking about a solution in BASH.</p> <p>I wrote a general function that takes a list of commands and runs them in the designated number of sub-shells. This actually works but I don't like the way it handles accessing the next command in a <strike>thread-safe</strike> <i>multi-process</i> way:</p> <ul> <li>It takes, as an argument, a file with commands (1 per line), </li> <li>To get the "next" command, each process ("thread") will: <ul> <li>Waits until it can create a lock file, with: <strong>ln $CMDFILE $LOCKFILE</strong></li> <li>Read the command from the file,</li> <li>Modifies $CMDFILE by removing the first line,</li> <li>Removes the $LOCKFILE.</li> </ul></li> </ul> <p><strong>Is there a cleaner way to do this?</strong> I couldn't get the sub-shells to read a single line from a FIFO correctly. <hr/> Incidentally, <strong>the point of this is to enhance what I can do on a BASH command line</strong>, and not to find non-bash solutions. I tend to perform a lot of complicated tasks from the command line and want another tool in the toolbox.</p> <p>Meanwhile, here's the function that handles getting the next line from the file. As you can see, it modifies an on-disk file each time it reads/removes a line. That's what seems hackish, but I'm not coming up with anything better, since FIFO's didn't work w/o <em>setvbuf()</em> in bash.</p> <pre><code># # Get/remove the first line from FILE, using LOCK as a semaphore (with # short sleep for collisions). Returns the text on standard output, # returns zero on success, non-zero when file is empty. # parallel__nextLine() { local line rest file=$1 lock=$2 # Wait for lock... until ln "${file}" "${lock}" 2&gt;/dev/null do sleep 1 [ -s "${file}" ] || return $? done # Open, read one "line" save "rest" back to the file: exec 3&lt;"$file" read line &lt;&amp;3 ; rest=$(cat&lt;&amp;3) exec 3&lt;&amp;- # After last line, make sure file is empty: ( [ -z "$rest" ] || echo "$rest" ) &gt; "${file}" # Remove lock and 'return' the line read: rm -f "${lock}" [ -n "$line" ] &amp;&amp; echo "$line" } </code></pre> http://stackoverflow.com/questions/161252/bash-start-multiple-chained-commands-in-background/1683256#1683256 0 Answer by NVRAM for bash: start multiple chained commands in background NVRAM 2009-11-05T20:11:52Z 2009-11-05T20:26:51Z <p><a href="http://stackoverflow.com/questions/161252/bash-start-multiple-chained-commands-in-background/161284#161284">GavinCattell</a> got the closest (for bash, IMO), but as Mad_Ady pointed out, it would not handle the "lock" files. This should: </p> <p>If there are other jobs pending, the <strong>wait</strong> will wait for those, too. If you need to wait for <em>only</em> the copies, you can accumulate those PIDs and wait for only those. If not, you could delete the 3 lines with "pids" but it's more general.</p> <p>In addition, I added checking to avoid the copy altogether:</p> <pre><code>pids= for file in bigfile* do # Skip if file is not newer... targ=/destination/$(basename "${file}") [ "$targ" -nt "$file" ] &amp;&amp; continue # Use a lock file: ".fileN.lock" for each "bigfileN" lock=".${file##*/big}.lock" ( touch $lock; cp "$file" "$targ"; rm $lock ) &amp; pids="$pids $!" done wait $pids </code></pre> <p>Incidentally, it looks like you're copying new files to an FTP repository (or similar). If so, you <em>could</em> consider a copy/rename strategy instead of the lock files (but that's another topic).</p> http://stackoverflow.com/questions/1681144/what-exactly-is-the-danger-of-using-magic-debug-values-such-as-0xdeadbeef-as-li/1681417#1681417 3 Answer by NVRAM for What exactly is the danger of using magic debug values (such as 0xDEADBEEF) as literals? NVRAM 2009-11-05T15:50:03Z 2009-11-05T15:50:03Z <p><strong>Big Endian or Little Endian?</strong></p> <p>One danger is when constants are assigned to an array or structure with different sized members; the <em>endian</em>-ness of the compiler or machine (including JVM vs CLR) will affect the ordering of the bytes.</p> <p>This issue is true of non-constant values, too, of course.</p> <p>Here's an, admittedly contrived, example. What is the value of <em>buffer[0]</em> after the last line?</p> <pre><code>const int TEST[] = { 0x01BADA55, 0xDEADBEEF }; char buffer[BUFSZ]; memcpy( buffer, (void*)TEST, sizeof(TEST)); </code></pre> http://stackoverflow.com/questions/1627509/persistent-display-hide-show-for-dynamically-created-dom-elements 3 Persistent display (hide/show) for dynamically created DOM elements? NVRAM 2009-10-26T21:43:56Z 2009-10-27T08:32:16Z <p>I have a set of DOM elements that I want to show only when a controlling checkbox is checked by the user. All of these items have a common class and are initially hidden:</p> <pre><code> .spec { display:none; } </code></pre> <p>In the click handler of the checkbox, I originally had the following, which worked fine for existing elements. However, the tables are dynamically generated via AJAX, and <em>when new elements are added with the "spec" class, they are not displayed when the checkbox is checked</em>.</p> <pre><code>// Basic jQuery show/hide if (btn.checked) $('.spec').show(); else $('.spec').hide(); </code></pre> <p>Since in my case this is in the same JS module, I could always just re-execute this code after adding to the DOM. But in general, that may not be true, so my question is: </p> <p><strong>What is the normal jQuery way to address this issue?</strong></p> <p>Since the jQuery show/hide functions alter the element.style and not the style object itself, I ended up writing a jQuery plugin that alters the stylesheet, which works fine, but seems like over kill, hence the question.</p> <pre><code>var nval = btn.checked ? '' : 'none'; $.styleSheet('.spec', 'display', nval ); </code></pre> http://stackoverflow.com/questions/1626846/how-do-i-allocate-variably-sized-structures-contiguously-in-memory/1627162#1627162 1 Answer by NVRAM for How do I allocate variably-sized structures contiguously in memory? NVRAM 2009-10-26T20:31:01Z 2009-10-26T20:46:25Z <p>Why not have <strong>DataPoint</strong> contain a variable-length array of <strong>ArrayOfThese</strong> items? This will work in C or C++. There are some concerns if either struct contains non-primitive types</p> <p>But use <em>free()</em> rather than <em>delete</em> on the result:</p> <pre><code>struct ArrayOfThese { int a; int b; }; struct DataPoint { int a; int b; int c; int length; ArrayOfThese those[0]; }; DataPoint* allocDP(int a, int b, int c, size_t length) { // There might be alignment issues, but not for most compilers: size_t sz = sizeof(DataPoint) + length * sizeof(ArrayOfThese); DataPoint dp = (DataPoint*)calloc( sz ); // (Check for out of memory) dp-&gt;a = a; dp-&gt;b = b; tp-&gt;c = c; dp-&gt;length = length; } </code></pre> <p>Then you can use it "normally" in a loop where the DataPoint knows its length:</p> <pre><code>DataPoint *dp = allocDP( 5, 8, 3, 20 ); for(int i=0; i &lt; dp-&gt;length; ++i) { // Initialize or access: dp-&gt;those[i] } </code></pre> http://stackoverflow.com/questions/820045/jquery-class-is-statically-sharing-an-object-across-class-instances/1627037#1627037 0 Answer by NVRAM for jQuery class is statically sharing an object across class instances NVRAM 2009-10-26T20:06:22Z 2009-10-26T20:06:22Z <p>They are indeed sharing the <strong>options</strong> value, but that's because you assigned a <em>modifed</em> <strong>this.defaults</strong> and not a distinct object. From the <a href="http://docs.jquery.com/Utilities/jQuery.extend#deeptargetobject1objectN" rel="nofollow">jQuery.extend() docs</a>:</p> <blockquote> <p>Keep in mind that the target object will be modified, and will be returned from extend().</p> </blockquote> <p>You can fix it by extending an empty object with the defaults and then options:</p> <pre><code> this.options = $.extend({}, this.defaults, options); </code></pre> http://stackoverflow.com/questions/592505/how-can-a-wcf-service-return-large-amounts-of-data 1 How can a WCF service return large amounts of data? NVRAM 2009-02-26T21:23:06Z 2009-10-13T21:37:08Z <p>I'm working on a web app that passes data to a custom client app.</p> <p>I'm getting exceptions when the data is over some "small" size. Since the end users will likely be using increasingly larger data sizes, I switched the return from the WCF function to be the ID of the data set.</p> <p>Next, I converted the client to use the ID to retrieve the data from some simple ASPX page. This works fine, but means an inconsistency in the interface.</p> <ol> <li><p><em>Edit: I'm not sure how I missed returning a Stream, but I did.</em> Does anyone have problems with Streams over WCF? </p></li> <li><p>Other than a dropped connection, are there any issues in reading files via HTTP streams from an ASPX page?</p></li> </ol> <p>I would presume that I'm missing a capability of WCF (like oob data). But then, the C#/.NET on-line help is either pretty poor or else seriously broken as installed on my machine.</p> <p>Thanks.</p> <p><strong>[Edit]</strong> By the way, in my case the "large amount of data" is user-input driven, but will need to be at least 20MiB.</p> http://stackoverflow.com/questions/592505/how-can-a-wcf-service-return-large-amounts-of-data/1563044#1563044 0 Answer by NVRAM for How can a WCF service return large amounts of data? NVRAM 2009-10-13T21:37:08Z 2009-10-13T21:37:08Z <p>As I understand the <a href="http://msdn.microsoft.com/en-us/library/ms733742.aspx" rel="nofollow">Large Data and Streaming</a> article mentioned by eed3si9n, one must switch transport mode for all communication, meaning it turns off some integrity checks.</p> <p>Consequently, I ended up with using a semi-custom HTTP client class where:</p> <ul> <li><strong>Downloads</strong> use ASPX page(s) that return the data and stream it to the client app's disk file,</li> <li><strong>Uploads</strong> send the file to an ASPX page that generates a GUID and saves the file to the server's disk with that GUID as part of its name. It then calls a WCF method to pass the other parameters with the GUID in lieu of the file data.</li> </ul> <p>It isn't beautiful but it works. Unfortunately, an IIS or client app crash could leave the temp files on the server hard drive, but they're localized and could be cleaned up on service creation.</p> http://stackoverflow.com/questions/865180/monitoring-a-sub-process-can-i-get-totalprocessortime-for-a-process-group 0 Monitoring a sub-process / can I get TotalProcessorTime for a Process group? NVRAM 2009-05-14T19:19:58Z 2009-10-13T16:54:27Z <p>Is there a way to get the <strong>Process.TotalProcessorTime</strong> that reflects a process <em>PLUS</em> any processes that it has spawned?</p> <p>Alternatively, how can I verify that the process (or it's descendants) are still "actively" running?</p> <p><hr /></p> <p>My app is spawning an external process and waiting for it to exit. With sample data it takes 5-20 <em>minutes</em> to complete; I don't have a guess for a reasonable maximum timeout. So my app checks the <strong>Process.TotalProcessorTime</strong> value on the other process at intervals, to ensure that it keeps rising.</p> <p>This works fine, but I've discovered that the process is simply a "wrapper" that spawns a sub-process, which in turn spawns a handful of other sub-process that consume all of the CPU time. </p> <p>And I've found that <strong>TotalProcessorTime</strong> returns only a small fraction of a second after several minutes of 100% CPU utilization.</p> http://stackoverflow.com/questions/865180/monitoring-a-sub-process-can-i-get-totalprocessortime-for-a-process-group/1561525#1561525 0 Answer by NVRAM for Monitoring a sub-process / can I get TotalProcessorTime for a Process group? NVRAM 2009-10-13T16:54:27Z 2009-10-13T16:54:27Z <p>I haven't implemented this, but have figured out how it might work. It's tedious but not all that complicated.</p> <ol> <li><p>Spawn a background thread that every few seconds will:</p> <ul> <li>Build the process tree (see <a href="http://stackoverflow.com/questions/1138625/how-to-terminate-all-grandchild-processes-using-c-on-wxp-and-newer-mswindows/1138950#1138950">this answer</a> for a simplified version of the code),</li> <li>Terminate (the monitor thread) if the process has exited.</li> <li>Maintain a hash of the accumulated CPU Usage by PID,</li> <li>Maintain a sum of all values by all processes,</li> <li>Maintain the difference of the sum from the last time the thread fired.</li> </ul></li> <li><p>This should allow the calling code to easily check that the process (tree) is not hung (<em>I/O bound processes might have problems here, but that doesn't apply to my case</em>).</p></li> </ol> <p>None of this seems difficult, with the possible exception of getting CPU usage of a process not spawned (directly) by the monitoring thread. </p> <p>I'll update this answer if/when I implement the code, but it may be a long time.</p> http://stackoverflow.com/questions/1545297/fields-vs-properties-for-private-class-variables/1545757#1545757 1 Answer by NVRAM for Fields vs Properties for private class variables NVRAM 2009-10-09T19:55:58Z 2009-10-09T19:55:58Z <p>From my perspective, using properties in lieu of variables boils down to:</p> <h3>Pros</h3> <ul> <li>Can set a break point for debugging, as Jared mentioned,</li> <li>Can cause side-effects, like Rex's <code>EnsureValue()</code>,</li> <li>The <strong>get</strong> and <strong>set</strong> can have different access restrictions (public <strong>get</strong>, protected <strong>set</strong>),</li> <li>Can be utilized in Property Editors,</li> </ul> <h3>Cons</h3> <ul> <li>Slower access, uses method calls.</li> <li>Code bulk, harder to read (IMO).</li> <li>More difficult to initialize, like requiring <code>EnsureValue();</code></li> </ul> <p>Not all of these apply to <code>int Limit {get; set;}</code> style properties.</p> http://stackoverflow.com/questions/1533319/calculator-problem/1533540#1533540 2 Answer by NVRAM for Calculator problem NVRAM 2009-10-07T19:02:45Z 2009-10-07T19:02:45Z <ol> <li>Your <strong>push()</strong> function uses post-increment (<em>sp++</em>), so values goes into [0] then [1], etc. (<em>good</em>). But your <strong>pop()</strong> uses post-decrement (<em>sp--</em>) so values come from [2] then [1]; use pre-decrement (<em>--sp</em>) instead.</li> <li>In <strong>main()</strong> you use <em>count</em> as an index into the string, but never reset it to zero (0).</li> <li>In <strong>GetNext()</strong> you pass <em>s+count</em> but then add <em>count</em> again (_*num_) so you aren't reading where you should be.</li> <li>That's not exhaustive, but should get you started.</li> </ol> <p>My suggestions?</p> <ul> <li>Develop it modularly: get the stack functions to work first, then add from there.</li> <li>Use <strong>sscanf()</strong> rather than <strong>atof()</strong>, it can handle non-positive numbers.</li> </ul> http://stackoverflow.com/questions/1532562/robotics-and-computer-vision/1532837#1532837 1 Answer by NVRAM for Robotics and Computer Vision NVRAM 2009-10-07T16:50:19Z 2009-10-07T16:50:19Z <p>Previous comments about using a photo sensor are good suggestions, although they might be harder to find/make something that will plug into a USB port.</p> <p>If you do go the camera route, I'd suggest you emulate a simple sensor; perhaps take an average of the left and right halves of the input as an indication to drive straight/left/right.</p> <p>But, if you want to spend less time building the custom pieces, you might check out the <a href="http://mindstorms.lego.com/" rel="nofollow">LEGO NXT kit</a>. They come with an optical sensor and a graphical programming environment. Even if you don't buy one, you might learn from the community discussions surrounding it.</p> <ul> <li><a href="http://mindstorms.lego.com/nxtlog/projectlist.aspx?SearchText=castor" rel="nofollow">http://mindstorms.lego.com/nxtlog/projectlist.aspx?SearchText=castor</a></li> <li><a href="http://www.nxtprograms.com/NXT2/castor%5Fbot/steps.html" rel="nofollow">http://www.nxtprograms.com/NXT2/castor_bot/steps.html</a></li> </ul> http://stackoverflow.com/questions/1094216/what-useful-gdb-scripts-have-you-used-written/1446793#1446793 1 Answer by NVRAM for What useful GDB scripts have you used/written? NVRAM 2009-09-18T20:53:43Z 2009-09-21T20:42:45Z <p><strong>1.</strong> When trying to get some 3rd party closed-source DLLs working with our project under Mono, it was giving meaningless errors. Consequently, I resorted to the scripts from the <a href="http://www.mono-project.com/Debugging#Debugging%5Fwith%5FGDB" rel="nofollow">Mono project</a>.</p> <p><strong>2.</strong> I also had a project that could dump it's own information to <em>stdout</em> for use in GDB, so at a breakpoint, I could run the function, then cut-n-paste its output into GDB.</p> <p><em>[Edit]</em></p> <p><strong>3.</strong> Most of my GCC/G++ use has been a while, but I also recall using a macro to take advantage of the fact that GDB knew the members of some opaque data I had (the library was compiled with debug). That was enormously helpful.</p> <p><strong>4.</strong> And I just found this, too. It dumps a list of objects (from a global "headMeterFix" SLL) that contain, among other things, dynamic arrays of another object type. One of the few times I've used nested loops in a macro:</p> <pre><code>define showFixes set $i= headMeterFix set $n = 0 while ($i != 0) set $p = $i-&gt;resolved_list set $x = $i-&gt;resolved_cnt set $j = 0 printf "%08x [%d] = {", $i, $x printf "%3d [%3d] %08x-&gt;%08x (D/R): %3d/%-3d - %3d/%-3d {", $n, $i, $x, $i-&gt;fix, $i-&gt;depend_cnt, dynArySizeDepList($i-&gt;depend_list), $i-&gt;resolved_cnt, dynArySizeDepList($i-&gt;resolved_list) while ($j &lt; $x) printf " %08x", $p[$j] set $j=$j+1 end printf " }\n" set $i = $i-&gt;next set $n = $n+1 end end </code></pre> http://stackoverflow.com/questions/1424955/prevent-casual-piracy-for-simple-utility/1425155#1425155 5 Answer by NVRAM for Prevent Casual Piracy for Simple Utility NVRAM 2009-09-15T04:46:26Z 2009-09-15T04:46:26Z <p>As others have said, your best bet is to trust and respect your <em>paying</em> customers.</p> <ol> <li><p><strong>Consider pirated copies as adverising</strong> Unless your potential market is limited <em>and</em> you think your penetration will be very high, it's likely that even some of those who don't pay you will end up recommending your app to others who might.</p></li> <li><p><strong>Make buying your app easy and painless.</strong> Either make sure you sell through a reputable vendor, or if you sell/release it yourself make sure that they can pay with (something like)PayPal during the download or registration process. Many would never give you their credit card info. </p></li> <li><p><strong>Spend most of your time improving the app.</strong> As someone said, make your customers <em>want</em> to pay for your software. You'll enjoy it more, and ultimately probably do more for your success.</p></li> </ol> <p><em>NOTE:</em> I'm one of the few people I've ever met who bought licenses for WinZIP, mostly because it was so far ahead of any competition. But I only tried it based on a recommendation of an admin who never bought his license.</p> http://stackoverflow.com/questions/1424660/garbage-collection-vs-non-garbage-collection-programming-languages/1425042#1425042 0 Answer by NVRAM for Garbage collection vs. non garbage collection programming languages NVRAM 2009-09-15T03:52:21Z 2009-09-15T03:52:21Z <p><strong>Usually</strong>, languages with Garbage Collection restrict the programmer's access to memory, and rely on a memory model where objects contain:</p> <ul> <li>reference counters - the GC uses this to know when an object is unused, and</li> <li>type and size information - to eliminate buffer overruns (and help reduce other bugs.</li> </ul> <p>In comparison with a non-GC language, there are two classes of errors that are reduced/eliminated by the model and the restricted access:</p> <ol> <li><p>Memory Model errors, such as:</p> <ul> <li>memory leaks (failure to deallocate when done),</li> <li>freeing memory more than once,</li> <li>freeing memory that was not allocated (like global or stack variables),</li> </ul></li> <li><p>Pointer errors, such as:</p> <ul> <li>Uninitialized pointer, with "left over" bits from previous use,</li> <li>Accessing, especially writing to, memory after freeing (<em>nasty!</em>)</li> <li>Buffer overrun errors,</li> <li>Use of memory as wrong type (by casting).</li> </ul></li> </ol> <p>There are more, but those are the big ones.</p> http://stackoverflow.com/questions/1759448/why-doesnt-tail-work-to-truncate-log-files/1759493#1759493 Comment by NVRAM on Why doesnt "tail" work to truncate log files? NVRAM 2009-12-16T22:44:27Z 2009-12-16T22:44:27Z This only works if the process writing to the logfile closes its file descriptor. Typical, but not always true. http://stackoverflow.com/questions/1759448/why-doesnt-tail-work-to-truncate-log-files/1759471#1759471 Comment by NVRAM on Why doesnt "tail" work to truncate log files? NVRAM 2009-12-16T22:43:56Z 2009-12-16T22:43:56Z This only works if the process writing to the logfile closes its file descriptor. Typical, but not always true. http://stackoverflow.com/questions/1916919/french-characters-are-not-displaying-correctly-inside-javascript-grid/1917811#1917811 Comment by NVRAM on French characters are not displaying correctly inside javascript grid NVRAM 2009-12-16T22:28:19Z 2009-12-16T22:28:19Z Oh, I thought &quot;ext JS&quot; was &quot;External JavaScript&quot; but now I realize/recall it's code from <b>www.extjs.com</b>. D'oh. http://stackoverflow.com/questions/1879400/how-to-prevent-a-globally-overridden-new-operator-from-being-linked-in-from-ext Comment by NVRAM on How to prevent a globally overridden "new" operator from being linked in from external library NVRAM 2009-12-10T17:12:27Z 2009-12-10T17:12:27Z Sorry if &quot;XCode&quot; implies the answer, but for the rest of us -- can you state what platform and compiler/linker you're using? http://stackoverflow.com/questions/1841790/how-can-a-windows-service-determine-its-servicename/1844503#1844503 Comment by NVRAM on How can a Windows Service determine its ServiceName? NVRAM 2009-12-09T22:27:37Z 2009-12-09T22:27:37Z Unfortunately, .NET does strip out the argument. And the OnStart() parameters are only used when starting a service <i>interactively</i>. Ref: <a href="http://www.tech-archive.net/Archive/DotNet/microsoft.public.dotnet.framework/2009-01/msg00073.html" rel="nofollow">tech-archive.net/Archive/DotNet/&hellip;</a> http://stackoverflow.com/questions/1841790/how-can-a-windows-service-determine-its-servicename/1844503#1844503 Comment by NVRAM on How can a Windows Service determine its ServiceName? NVRAM 2009-12-08T18:02:05Z 2009-12-08T18:02:05Z @Remy - it looks like ServiceMain is for C++ code ( <a href="http://msdn.microsoft.com/en-us/library/ms685138%28VS.85%29.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> ), I'm using C#. @Isalamon - I believe you're mistaken, but if you can show how <b>SC</b> can be used, please post an answer with details. http://stackoverflow.com/questions/1842634/parse-date-in-bash/1854295#1854295 Comment by NVRAM on Parse Date in Bash NVRAM 2009-12-07T15:57:20Z 2009-12-07T15:57:20Z Indeed, I noticed that yesterday but didn't bother editing it until now. http://stackoverflow.com/questions/1854285/how-to-move-an-element-around-dom-tree-without-affecting-related-javascript/1854322#1854322 Comment by NVRAM on How to move an element around DOM tree without affecting related javascript? NVRAM 2009-12-06T07:06:54Z 2009-12-06T07:06:54Z Why are you moving it in the DOM? If you want to move it on the page, you could try changing the CSS instead... http://stackoverflow.com/questions/1836490/how-do-i-append-all-files-in-current-and-subdirs-as-command-arguments/1837680#1837680 Comment by NVRAM on How do I append all files in current and subdirs as command arguments? NVRAM 2009-12-05T21:11:28Z 2009-12-05T21:11:28Z Xargs doesn't play well with programs that need stdin for another purpose (interactive or not) so yes, it is uncommon to use it. I use <code>find|xargs</code> often, apparently when you'd call it superfluous, hence the frequency of wanting stdin is relative. <b>Caveat lector</b>. http://stackoverflow.com/questions/1616097/how-to-filter-out-a-set-of-strings-a-from-a-set-of-strings-b-using-bash/1617326#1617326 Comment by NVRAM on How to filter out a set of strings A from a set of strings B using Bash NVRAM 2009-12-05T20:38:17Z 2009-12-05T20:38:17Z Nice. Although it uses newline as separators, you can also use just: <b>subtract() { fgrep -vx &quot;${1// /$'\n'}&quot; &lt;&lt;&lt; &quot;${2// /$'\n'}&quot; ; }</b> -- or for space separators, use: <b>subtract() { echo $( fgrep -vx &quot;${1// /$'\n'}&quot; &lt;&lt;&lt; &quot;${2// /$'\n'}&quot; ) ; }</b> http://stackoverflow.com/questions/1851630/simulate-virtual-constructor-in-c/1852348#1852348 Comment by NVRAM on simulate virtual constructor in c++ NVRAM 2009-12-05T15:16:32Z 2009-12-05T15:16:32Z You might want to add to your example to enforce on classes Y and Z to show how to expand what you want. Also, I'd suggest making <i>static void test()</i> into a non-static and more obscure class, such as: <i>extern void constructorEnforcer()</i> on the unlikely chance that the compiler optimized it away since a static unused in the file is dead code. http://stackoverflow.com/questions/1836490/how-do-i-append-all-files-in-current-and-subdirs-as-command-arguments/1837680#1837680 Comment by NVRAM on How do I append all files in current and subdirs as command arguments? NVRAM 2009-12-03T20:11:10Z 2009-12-03T20:11:10Z Sorry, I don't buy that it's <i>extremely uncommon</i> -- <code>vi</code> is just one use, <code>rm -i</code> is another. And yes, a script could recover the invoking program's stdin with &quot;descriptor gymnastics&quot; but the program launched by <i>xargs</i> will have the same stdin as <i>xargs</i> itself. Ultimately, both <code>find ... +</code> and <code>find | xargs</code> are extremely useful tools/patterns but with slightly different strengths. For my part, I should replace <i>&quot;better&quot;</i> in my first comment with <i>&quot;often better&quot;</i> http://stackoverflow.com/questions/1841737/hashing-multiple-files/1841779#1841779 Comment by NVRAM on Hashing Multiple Files NVRAM 2009-12-03T18:23:52Z 2009-12-03T18:23:52Z Oh, and he may need to quote the file names to handle spaces. http://stackoverflow.com/questions/1841737/hashing-multiple-files/1841779#1841779 Comment by NVRAM on Hashing Multiple Files NVRAM 2009-12-03T18:22:30Z 2009-12-03T18:22:30Z He asked for subdirs, too. Use <b>find . -type f -print|while read f</b> in lieu of <i>for f in *</i> http://stackoverflow.com/questions/1841737/hashing-multiple-files/1841792#1841792 Comment by NVRAM on Hashing Multiple Files NVRAM 2009-12-03T18:21:20Z 2009-12-03T18:21:20Z 1. Doesn't handle filenames with spaces, and 2. it will try to rename directories, which will cause it to not find the files within those directories... Use <b>find . -type f -print|while read file</b> for the first line, then add quotes to the filenames on the <b>hash=</b> and <b>mv</b> lines.