User EBGreen - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T16:00:29Z http://stackoverflow.com/feeds/user/1358 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1405660/why-do-you-read-text-books/1405683#1405683 4 Answer by EBGreen for Why do you read text books? EBGreen 2009-09-10T14:38:36Z 2009-09-10T14:47:07Z <p>What you learn from any medium is more up to you than the medium.</p> http://stackoverflow.com/questions/1396191/what-should-every-developer-know-about-legal-matters/1396207#1396207 1 Answer by EBGreen for What should every developer know about legal matters? EBGreen 2009-09-08T20:36:49Z 2009-09-08T20:36:49Z <p>The name of a good IP lawyer.</p> http://stackoverflow.com/questions/1394321/can-i-change-the-logged-in-windows-user-while-an-application-is-running/1394366#1394366 0 Answer by EBGreen for Can I Change the Logged-In (Windows) User While an Application is Running? EBGreen 2009-09-08T14:34:51Z 2009-09-08T14:34:51Z <p>Well, you could certainly have the application get the user's windows credentials. You could also simply query for group membership without requesting any credentials. More specific information will help with a more specific answer. For instance, what language are you working in?</p> http://stackoverflow.com/questions/1370210/powershell-scripting-get-childitem/1370235#1370235 1 Answer by EBGreen for PowerShell Scripting - Get-ChildItem EBGreen 2009-09-02T21:30:11Z 2009-09-02T21:30:11Z <p>I can't tell you the exact why of it (but I will keep looking), but the behavior is codumented in the Get-Help for Get-ChildItem:</p> <pre><code>-Include &lt;string[]&gt; Retrieves only the specified items. The value of this parameter qualifies the Path parameter. Enter a path elem ent or pattern, such as "*.txt". Wildcards are permitted. The Include parameter is effective only when the command includes the Recurse parameter or the path leads to th e contents of a directory, such as C:\Windows\*, where the wildcard character specifies the contents of the C:\ Windows directory. </code></pre> http://stackoverflow.com/questions/1368050/whats-th-best-way-to-classify-a-list-of-sites/1368065#1368065 1 Answer by EBGreen for What's th best way to classify a list of sites? EBGreen 2009-09-02T14:33:14Z 2009-09-02T14:33:14Z <p>Well if the site is well designed there will be meta tags in the header specifically for this.</p> http://stackoverflow.com/questions/1354451/reasons-not-to-use-mysql/1354476#1354476 3 Answer by EBGreen for reasons NOT to use mysql EBGreen 2009-08-30T18:05:00Z 2009-08-30T18:05:00Z <p>Everyone seems to be missing one of the main reasons to stick with Oracle/MS. You've already got a stable full of DBAs that know those products inside and out.</p> http://stackoverflow.com/questions/1348437/java-scripts-deleted-now-what/1348443#1348443 1 Answer by EBGreen for java scripts deleted now what EBGreen 2009-08-28T17:43:24Z 2009-08-28T17:43:24Z <p>Hope that your hosting company does tape backups? Redeploy from your test environment (you do have a test environment right)? Rewrite them?</p> http://stackoverflow.com/questions/1348372/initial-event-in-windows-console/1348377#1348377 2 Answer by EBGreen for Initial Event in Windows Console EBGreen 2009-08-28T17:28:30Z 2009-08-28T17:28:30Z <p>Is there a problem with just calling them first <strong>in</strong> main?</p> http://stackoverflow.com/questions/1341233/rubys-argv-can-be-empty-on-windows-depending-on-a-way-to-run-script/1341265#1341265 1 Answer by EBGreen for Ruby's ARGV can be empty on windows depending on a way to run script. EBGreen 2009-08-27T13:53:36Z 2009-08-27T13:53:36Z <p>Check the file association. Especially in the advanced settings look at the "Open" action. Make sure that there is a %* on the end of the action.</p> <p><a href="http://stackoverflow.com/questions/1303921/passing-around-command-line-args-in-powershell-from-function-to-function">This</a> question is about powershell, but it is essentially the same question so my answer there should give a little more detail.</p> http://stackoverflow.com/questions/1336815/how-can-i-measure-volatility/1336830#1336830 3 Answer by EBGreen for How can I measure volatility? EBGreen 2009-08-26T19:04:37Z 2009-08-26T19:04:37Z <p>I think the easiest first pass would be Standard Deviation over X data points.</p> http://stackoverflow.com/questions/1330648/powershell-analog-to-dir-ad-win-or-ls-d-bash/1330682#1330682 2 Answer by EBGreen for PowerShell analog to "dir /a:d" (Win) or "ls -d */" (Bash) EBGreen 2009-08-25T20:12:55Z 2009-08-25T20:39:35Z <p>This works too:</p> <pre><code>ls | ?{$_.PsIsContainer} </code></pre> <p>There is no doubt that it is a little more wordy than bash or cmd.exe. You could certainly put a function and an alias in your profile if you wanted to reduce the verbosity. I'll see if I can find a way to use -filter too.</p> <p>On further investigation, I don't believe there is a more terse way to do this short of creating your own function and alias. You could put this in your profile:</p> <pre><code>function Get-ChildContainer { param( $root = "." ) Get-ChildItem -path $root | Where-Object{$_.PsIsContainer} } New-Alias -Name gcc -value Get-ChildContainer -force </code></pre> <p>Then to ls the directories in a folder:</p> <pre><code>gcc C:\ </code></pre> <p>This solution would be a little limited since it would not handle any fanciness like -Include, -Exclude, -Filter, -Recurse, etc. but you could easily add that to the function.</p> <p>Actually, this is a rather naive solution, but hopefully it will head you in the right direction if you decide to pursue it. To be honest with you though I wouldn't bother. The extra verbosity in this one case is more than overcome by the overall greater flexibility of powershell in general in my personal opinion.</p> http://stackoverflow.com/questions/1313990/net-moving-file-from-one-directory-to-another-and-avoid-the-name-collision/1314015#1314015 4 Answer by EBGreen for .Net: moving file from one directory to another and avoid the name collision EBGreen 2009-08-21T20:17:39Z 2009-08-21T23:46:53Z <p>Here is pseudo code of how I handle this:</p> <pre><code>newName = "foo_20090820.csv" i = 1 while file exists newName newName = "foo_20090820-" + i.ToString() + ".csv i++ While Loop Move oldFile to newName </code></pre> http://stackoverflow.com/questions/1313619/need-assistance-padding-numerical-month-and-day-with-leading-0/1313649#1313649 2 Answer by EBGreen for Need assistance padding numerical month and day with leading 0 EBGreen 2009-08-21T18:50:26Z 2009-08-21T18:50:26Z <p>VBScript:</p> <pre><code>dteOldDate = Now() strNewDate = Right("00" &amp; Month(dteOldDate), 2) &amp; "/" &amp; Right("00" &amp; Day(dteOldDate), 2) &amp; "/" &amp; Year(dteOldDate) </code></pre> http://stackoverflow.com/questions/1312138/what-is-the-tofu-scale/1312196#1312196 1 Answer by EBGreen for What is the "tofu scale"? EBGreen 2009-08-21T14:10:16Z 2009-08-21T14:10:16Z <p>The "Tofu Scale" is a way of measuring how firm or soft a given code branch is. It was created by Laura Wingerd. You can read more about it in her book <a href="http://oreilly.com/catalog/9780596101855/" rel="nofollow">Practical Perforce</a>.</p> http://stackoverflow.com/questions/1309142/determine-3rd-party-application-installation-directory/1309165#1309165 0 Answer by EBGreen for Determine 3rd Party Application Installation Directory EBGreen 2009-08-20T22:24:35Z 2009-08-20T22:24:35Z <p>If the install is an MSI then getting the information from WMI is trivial. The Win32_Product class has an InstallLocation property to hold this information.</p> http://stackoverflow.com/questions/1308536/yaml-compared-to-xml/1308557#1308557 2 Answer by EBGreen for YAML compared to XML EBGreen 2009-08-20T20:17:12Z 2009-08-20T20:17:12Z <p>The main advantage that I see is that it is more easily human readable. I also like it a little better than XML because it has the concept of certain data structures (dictionaries and arrays) already built in.</p> <p>On the flip side, the library support for parsing YAML is nowhere near that of XML, so it is harder to use it to fulfill one of the prime uses of XML. That is inter-application communication.</p> http://stackoverflow.com/questions/1296225/iterate-over-vba-dictionaries/1296250#1296250 4 Answer by EBGreen for Iterate over VBA Dictionaries? EBGreen 2009-08-18T20:18:09Z 2009-08-18T20:18:09Z <p>Try:</p> <pre><code>For Each strKey In oDic.Keys() Range("A" &amp; strKey).Value = oDic(strKey) Next </code></pre> http://stackoverflow.com/questions/1293907/how-to-pass-command-line-arguments-to-a-powershell-ps1-file/1294145#1294145 1 Answer by EBGreen for How to pass command-line arguments to a PowerShell ps1 file EBGreen 2009-08-18T14:10:49Z 2009-08-18T14:10:49Z <p>Ok, so first this is breaking a basic security feature in PS. With that understanding, here is how you can do it:</p> <ol> <li>Open an explorer window</li> <li>Folder->Options->File Types</li> <li>Find the PS1 file type and click the advanced button</li> <li>Click the New button</li> <li>For Action put: <strong>Open</strong></li> <li>For the Application put: <strong>"C:\WINNT\system32\WindowsPowerShell\v1.0\powershell.exe" "-file" "%1" %*</strong></li> </ol> <p>You may want to put a -NoProfile argument in there too depending on what your profile does.</p> http://stackoverflow.com/questions/1289023/what-is-a-fun-and-humorous-message-to-inform-users-that-a-site-has-been-blocked-b/1289035#1289035 0 Answer by EBGreen for What is a fun and humorous message to inform users that a site has been blocked by a firewall? EBGreen 2009-08-17T16:34:47Z 2009-08-17T16:34:47Z <p>"Do you surf your mother with that address?"</p> http://stackoverflow.com/questions/1279395/how-can-i-find-out-if-a-file-is-a-file-or-directory-if-it-does-not-exist/1279408#1279408 1 Answer by EBGreen for How can I find out if a File is a file or directory if it does not exist? EBGreen 2009-08-14T18:28:51Z 2009-08-14T18:35:59Z <p>Test File.exists() first.</p> <p>Pseudo-Code (because I don't do Java :) ):</p> <pre><code>If File.Exists() { If File.isFile() { bIsFile = true; }elseif File.isFolder() { bIsFolder = true; }else { //Handle error condition here } }else { //It does not exist. Handle that here if you care to } </code></pre> http://stackoverflow.com/questions/1273323/powershell-searching-and-comparing-arrays-with-quest-cmdlets/1273970#1273970 0 Answer by EBGreen for Powershell - Searching and Comparing Arrays with Quest CMDlets EBGreen 2009-08-13T19:05:44Z 2009-08-13T19:05:44Z <p>-contains will match if the item in the collection is identical to what you are testing so be sure that the $Folder.Name is exactly the same as LogonName. Usually it wouldn't be. Most companies would have the folder name be foo$ for a user named foo. </p> http://stackoverflow.com/questions/1269289/wix-msi-package-uninstallation/1269299#1269299 1 Answer by EBGreen for WIX MSI Package Uninstallation EBGreen 2009-08-12T23:37:55Z 2009-08-12T23:37:55Z <p>Look at the registry key for your product in HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall. In there look at the Uninstall value and see if adjusting it does what you want.</p> <p>I'm pretty sure that there is a property in the MSI for this if that fixes your issue I just can't remember it off the top of my head. Searching the MSI for the string you find in the registry should help you suss it out though.</p> http://stackoverflow.com/questions/1267967/how-can-i-bulk-rename-files-using-powershell/1268160#1268160 0 Answer by EBGreen for How can I bulk rename files using powershell? EBGreen 2009-08-12T19:18:02Z 2009-08-12T22:35:46Z <p>Try this:</p> <pre><code>dir . | foreach { $newname = $_.Name -replace "^5", "2.3.2"; tf rename $_ $newname } </code></pre> http://stackoverflow.com/questions/1253017/how-can-i-break-up-a-string-with-multiple-xml-root-elements-in-powershell/1253028#1253028 0 Answer by EBGreen for How can I break up a string with multiple XML root elements in PowerShell? EBGreen 2009-08-10T03:44:10Z 2009-08-10T04:01:27Z <p>Either tweaking the Perl or wrapping a root element around it should work. You could also split the returned value on the empty lines then create an array of XML objects.</p> <p>Actually I'm not sure that a root element would work since each of those bits have a version node in there.</p> http://stackoverflow.com/questions/1252841/what-are-concepts/1252851#1252851 5 Answer by EBGreen for What are concepts? EBGreen 2009-08-10T01:57:12Z 2009-08-10T02:03:55Z <p>Here is an article that I think would help:</p> <p><a href="http://www.devx.com/SpecialReports/Article/38864" rel="nofollow">http://www.devx.com/SpecialReports/Article/38864</a></p> <p>The decision to remove them has been discussed several times here at SO as well. These might prove interesting:</p> <p><a href="http://stackoverflow.com/questions/1154974/c0x-will-no-longer-have-concepts-opinions-how-will-this-affect-you">c0x No longer has concepts</a></p> <p><a href="http://stackoverflow.com/questions/1183210/how-do-concepts-differ-from-interfaces">Concepts compared to Interfaces</a></p> <p><a href="http://stackoverflow.com/questions/1202714/hypothetical-formerly-c0x-concepts-questions">Hypothetical discussion of concepts</a></p> http://stackoverflow.com/questions/1252786/how-to-know-a-certain-disks-formatis-fat32-or-ntfs/1252803#1252803 1 Answer by EBGreen for How to know a certain disk's format(is FAT32 or NTFS) EBGreen 2009-08-10T01:28:35Z 2009-08-10T01:28:35Z <p>The Win32_LogicalDisk class in WMI has a FileSystem Property that exposes that information.</p> http://stackoverflow.com/questions/1238165/copy-update-create-vbscript/1252688#1252688 0 Answer by EBGreen for Copy Update Create VBScript EBGreen 2009-08-10T00:35:47Z 2009-08-10T00:35:47Z <p>Well, the way that I would do it is to make stand alone functions for each of the functional tasks that you have then wrap those functions inside an HTA to give you the interface layer that you want.</p> http://stackoverflow.com/questions/1251692/how-to-enumerate-an-objects-properties-in-python/1251704#1251704 6 Answer by EBGreen for How to enumerate an object's properties in Python? EBGreen 2009-08-09T16:37:48Z 2009-08-09T18:10:35Z <p><a href="http://docs.python.org/library/functions.html#dir" rel="nofollow"><code>dir()</code></a> is the simple way. See here:</p> <p><a href="http://www.ibm.com/developerworks/library/l-pyint.html" rel="nofollow">Guide To Python Introspection</a></p> http://stackoverflow.com/questions/1249798/how-can-i-grep-for-a-text-pattern-in-a-zipped-text-file/1249819#1249819 0 Answer by EBGreen for How can I grep for a text pattern in a zipped text file? EBGreen 2009-08-08T20:30:55Z 2009-08-08T20:30:55Z <p>There are some zip related commandlets in the Powershell Community Extensions <a href="http://www.codeplex.com/Pscx" rel="nofollow" title="(PSCX)">(PSCX)</a>. I don't think they would do what you want however (I could be entirely wrong about that though). Instead I would use .Net Zip Library <a href="http://www.codeplex.com/DotNetZip" rel="nofollow" title="DotNetZip">(DotNetZip)</a> which allows you to essentially list the names of the files in an archive then extract just the ones you want.</p> http://stackoverflow.com/questions/537526/do-you-inflate-your-estimated-project-completion-dates/537541#537541 37 Answer by EBGreen for Do you inflate your estimated project completion dates? EBGreen 2009-02-11T16:17:29Z 2009-07-15T20:14:02Z <p>If you inflate your estimate based on past experiences to try and compensate for your inherent optimism, then you aren't inflating. You are trying to provide an accurate estimate. If however you inflate so that you will always have fluff time, that's not so good.</p> http://stackoverflow.com/questions/1422574/calculating-time-to-complete-a-project Comment by EBGreen on Calculating Time To Complete a Project EBGreen 2009-09-14T16:25:41Z 2009-09-14T16:25:41Z StackOverflow.com http://stackoverflow.com/questions/1422574/calculating-time-to-complete-a-project Comment by EBGreen on Calculating Time To Complete a Project EBGreen 2009-09-14T16:23:50Z 2009-09-14T16:23:50Z Project time estimation has been beat to death already on SO. http://stackoverflow.com/questions/1420719/powershell-setting-an-environment-variable-for-a-single-command-only Comment by EBGreen on Powershell: Setting an environment variable for a single command only EBGreen 2009-09-14T13:22:37Z 2009-09-14T13:22:37Z I guess my question would be why you would need to do this? I would think that there is a better solution. http://stackoverflow.com/questions/1412905/is-there-a-way-to-pass-arbitrary-text-to-vim/1412924#1412924 Comment by EBGreen on Is there a way to pass arbitrary text to Vim? EBGreen 2009-09-11T19:47:47Z 2009-09-11T19:47:47Z Except that the OP was asking how to pipe a literal string in, not the contents of a file. http://stackoverflow.com/questions/1412387/resources-for-beginning-cs Comment by EBGreen on Resources for Beginning CS EBGreen 2009-09-11T18:08:56Z 2009-09-11T18:08:56Z &quot;javascript (not a language, I know)&quot; - Could you clarify what you mean by that? http://stackoverflow.com/questions/1406947/read-exchange-using-vbscript Comment by EBGreen on Read Exchange using VBScript EBGreen 2009-09-10T19:37:47Z 2009-09-10T19:37:47Z That is certainly better. :) http://stackoverflow.com/questions/1406947/read-exchange-using-vbscript Comment by EBGreen on Read Exchange using VBScript EBGreen 2009-09-10T18:56:52Z 2009-09-10T18:56:52Z My point is that you need to at least try to figure it out on your own then post a question when you have one specific issue that you can't figure out. That code my be short enough that you will get a response, but to be honest, I would consider the question to be too localized since it is unlikely that anyone else will ever really benefit from it. http://stackoverflow.com/questions/1406947/read-exchange-using-vbscript Comment by EBGreen on Read Exchange using VBScript EBGreen 2009-09-10T18:42:14Z 2009-09-10T18:42:14Z Generally you won't find people here to write code for you. Ask specific questions about specific problems and you will generally get good help. http://stackoverflow.com/questions/1406882/what-is-the-most-effective-solution-you-used-to-label-cables Comment by EBGreen on What is the most effective solution you used to label cables? EBGreen 2009-09-10T18:20:18Z 2009-09-10T18:20:18Z Actually better on serverfault. http://stackoverflow.com/questions/1406871/help-please-with-my-math-homework Comment by EBGreen on help please with my math homework EBGreen 2009-09-10T18:19:20Z 2009-09-10T18:19:20Z Actually homework questions are perfectly acceptable on SO. Please read the FAQ. In this specific case however, the question is not programming related. http://stackoverflow.com/questions/1406023/stack-related-interview-question Comment by EBGreen on Stack related Interview Question EBGreen 2009-09-10T15:36:18Z 2009-09-10T15:36:18Z Then you should have said to them &quot;You should really add more information&quot; http://stackoverflow.com/questions/1405660/why-do-you-read-text-books Comment by EBGreen on Why do you read text books? EBGreen 2009-09-10T14:42:36Z 2009-09-10T14:42:36Z Discussion questions are generally not a good fit for SO. And before you bring it up, yes I know that there are some that were not closed. http://stackoverflow.com/questions/1405660/why-do-you-read-text-books Comment by EBGreen on Why do you read text books? EBGreen 2009-09-10T14:37:56Z 2009-09-10T14:37:56Z Or for that matter with any specific language/architecture? http://stackoverflow.com/questions/1405117/command-line-parsing Comment by EBGreen on Command Line Parsing EBGreen 2009-09-10T13:45:40Z 2009-09-10T13:45:40Z In that case it is a dupe of <a href="http://stackoverflow.com/questions/631410/looking-for-a-command-line-argument-parser-for-net/1401547#1401547" rel="nofollow" title="looking for a command line argument parser for net">stackoverflow.com/questions/631410/&hellip;</a> http://stackoverflow.com/questions/1401409/firefox-plugin-for-tampering-browser-type Comment by EBGreen on Firefox plugin for tampering browser type EBGreen 2009-09-09T18:54:25Z 2009-09-09T18:54:25Z What is your programming related need for this?