User gsarnold - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T13:33:07Z http://stackoverflow.com/feeds/user/21961 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/540907/how-can-i-tell-if-im-running-in-a-vmware-virtual-machine-from-linux/541094#541094 1 Answer by gsarnold for How can I tell if I'm running in a VMWARE virtual machine (from linux)? gsarnold 2009-02-12T12:48:47Z 2009-02-12T12:48:47Z <p>I think (depending on the version of esx) you can inspect at the MAC address of the NIC. VMs running in VMWare NIC will have a manufacturer string assigned to VMWare, no the physical NIC MAC. (We were trying to spoof the MAC to VM a license server and newer versions won't let you do it.) Also, this won't guarantee you aren't running on a physical box with a NIC spoofed to look like VMWare, but that would be an odd thing to do in most circumstances anyway.</p> http://stackoverflow.com/questions/395445/what-cutting-edge-desktop-environments-are-out-there/395488#395488 0 Answer by gsarnold for What cutting edge desktop environments are out there? gsarnold 2008-12-27T22:09:22Z 2008-12-27T22:16:24Z <p>Gnome w/ Compiz. The last thing Linux needs is another cutting-edge desktop. <strong>Seriously</strong>. </p> <h2>Update/retraction:</h2> <p>Ok, I take it back. I just watched the demo video and the world needs BumpTop ASAP.</p> http://stackoverflow.com/questions/385193/why-have-mx-records/385226#385226 2 Answer by gsarnold for Why have MX records? gsarnold 2008-12-22T00:05:33Z 2008-12-22T00:05:33Z <p>In addition to allowing the specification of backup exchangers, observe that not every domain has its own mail server, so it is necessary to be able to specify a mail server which exists on another domain as authorized to exchange mail so that administrative and system messages addressed to postmaster, root or any technical/administrative contacts listed in the DNS WHOIS records can be delivered, even if they do not exist on the current domain. </p> <p>You just don't need that for ftp and http because those services do not initiate outbound connections like MX nor are they considered official points of contact.</p> http://stackoverflow.com/questions/329582/is-1-for-true-or-false/339657#339657 -1 Answer by gsarnold for Is 1 for TRUE or FALSE ? gsarnold 2008-12-04T05:22:47Z 2008-12-04T05:22:47Z <p>In shell scripting, I wouldn't necessarily say that 0 = true, but rather that for most OS's, the execution of a program is expected to return an error status integer, which will be 0 if the program completed successfully, and a nonzero error code otherwise.</p> <p>I have done this when I wasn't sure what integer value (1, -1, etc....) a new language used for TRUE (pseudocode):</p> <pre><code>Let my_FALSE := 0 Let my_TRUE := not(my_FALSE) Print my_TRUE, my_FALSE, not(not(my_FALSE)) </code></pre> <p>In most cases if you got FALSE right, the first and third numbers will be the same.</p> <p>A long time ago, some languages made it interesting to do stuff like this, but it doesn't always work.</p> <pre><code>Let my_TRUE := (0 == 1 - 1) Let my_FALSE := (1 == 5) </code></pre> http://stackoverflow.com/questions/214132/what-are-views-good-for/214341#214341 5 Answer by gsarnold for What are views good for? gsarnold 2008-10-18T01:23:38Z 2008-10-18T01:23:38Z <p>Views hide the database complexity. They are great for a lot of reasons and are useful in a lot of situations, but if you have users that are allowed to write their own queries and reports, you can use them as a safeguard to make sure they don't submit badly designed queries with nasty cartesian joins that take down your database server.</p> http://stackoverflow.com/questions/164964/how-are-exponents-calculated/165348#165348 1 Answer by gsarnold for How are exponents calculated? gsarnold 2008-10-03T01:33:32Z 2008-10-03T01:33:32Z <p>Unless they've discovered a better way to do it, I believe that approximate values for trig, logarithmic and exponential functions (for exponential growth and decay, for example) are generally calculated using arithmetic rules and <strong>Taylor Series</strong> expansions to produce an approximate result accurate to within the requested precision. (See any Calculus book for details on power series, Taylor series, and Maclaurin series expansions of functions.) Please note that it's been a while since I did any of this so I couldn't tell you, for example, exactly how to calculate the number of terms in the series you need to include guarantee an error that small enough to be negligible in a double-precision calculation.</p> <p>For example, the Taylor/Maclaurin series expansion for e^x is this:</p> <pre><code> +inf [ x^k ] x^2 x^3 x^4 x^5 e^x = SUM [ --- ] = 1 + x + --- + ----- + ------- + --------- + .... k=0 [ k! ] 2*1 3*2*1 4*3*2*1 5*4*3*2*1 </code></pre> <p>If you take all of the terms (k from 0 to infinity), this expansion is exact and complete (no error).</p> <p>However, if you don't take all the terms going to infinity, but you stop after say 5 terms or 50 terms or whatever, you produce an <strong>approximate</strong> result that differs from the actual e^x function value by a remainder which is fairly easy to calculate.</p> <p>The good news for exponentials is that it converges nicely and the terms of its polynomial expansion are fairly easy to code iteratively, so you <strong>might</strong> (repeat, <strong>MIGHT</strong> - remember, it's been a while) not even need to pre-calculate how many terms you need to guarantee your error is less than precision because you can test the size of the contribution at each iteration and stop when it becomes close enough to zero. In practice, I do not know if this strategy is viable or not - I'd have to try it. There are important details I have long since forgotten about. Stuff like: machine precision, machine error and rounding error, etc.</p> <p>Also, please note that if you are not using e^x, but you are doing growth/decay with another base like 2^x or 10^x, the approximating polynomial function changes. </p>