User EBGreen - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T16:00:29Zhttp://stackoverflow.com/feeds/user/1358http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1405660/why-do-you-read-text-books/1405683#14056834Answer by EBGreen for Why do you read text books?EBGreen2009-09-10T14:38:36Z2009-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#13962071Answer by EBGreen for What should every developer know about legal matters?EBGreen2009-09-08T20:36:49Z2009-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#13943660Answer by EBGreen for Can I Change the Logged-In (Windows) User While an Application is Running?EBGreen2009-09-08T14:34:51Z2009-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#13702351Answer by EBGreen for PowerShell Scripting - Get-ChildItemEBGreen2009-09-02T21:30:11Z2009-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 <string[]>
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#13680651Answer by EBGreen for What's th best way to classify a list of sites?EBGreen2009-09-02T14:33:14Z2009-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#13544763Answer by EBGreen for reasons NOT to use mysqlEBGreen2009-08-30T18:05:00Z2009-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#13484431Answer by EBGreen for java scripts deleted now whatEBGreen2009-08-28T17:43:24Z2009-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#13483772Answer by EBGreen for Initial Event in Windows ConsoleEBGreen2009-08-28T17:28:30Z2009-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#13412651Answer by EBGreen for Ruby's ARGV can be empty on windows depending on a way to run script.EBGreen2009-08-27T13:53:36Z2009-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#13368303Answer by EBGreen for How can I measure volatility?EBGreen2009-08-26T19:04:37Z2009-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#13306822Answer by EBGreen for PowerShell analog to "dir /a:d" (Win) or "ls -d */" (Bash)EBGreen2009-08-25T20:12:55Z2009-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#13140154Answer by EBGreen for .Net: moving file from one directory to another and avoid the name collisionEBGreen2009-08-21T20:17:39Z2009-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#13136492Answer by EBGreen for Need assistance padding numerical month and day with leading 0EBGreen2009-08-21T18:50:26Z2009-08-21T18:50:26Z<p>VBScript:</p>
<pre><code>dteOldDate = Now()
strNewDate = Right("00" & Month(dteOldDate), 2) & "/" & Right("00" & Day(dteOldDate), 2) & "/" & Year(dteOldDate)
</code></pre>
http://stackoverflow.com/questions/1312138/what-is-the-tofu-scale/1312196#13121961Answer by EBGreen for What is the "tofu scale"?EBGreen2009-08-21T14:10:16Z2009-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#13091650Answer by EBGreen for Determine 3rd Party Application Installation DirectoryEBGreen2009-08-20T22:24:35Z2009-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#13085572Answer by EBGreen for YAML compared to XMLEBGreen2009-08-20T20:17:12Z2009-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#12962504Answer by EBGreen for Iterate over VBA Dictionaries?EBGreen2009-08-18T20:18:09Z2009-08-18T20:18:09Z<p>Try:</p>
<pre><code>For Each strKey In oDic.Keys()
Range("A" & strKey).Value = oDic(strKey)
Next
</code></pre>
http://stackoverflow.com/questions/1293907/how-to-pass-command-line-arguments-to-a-powershell-ps1-file/1294145#12941451Answer by EBGreen for How to pass command-line arguments to a PowerShell ps1 fileEBGreen2009-08-18T14:10:49Z2009-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#12890350Answer by EBGreen for What is a fun and humorous message to inform users that a site has been blocked by a firewall?EBGreen2009-08-17T16:34:47Z2009-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#12794081Answer by EBGreen for How can I find out if a File is a file or directory if it does not exist?EBGreen2009-08-14T18:28:51Z2009-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#12739700Answer by EBGreen for Powershell - Searching and Comparing Arrays with Quest CMDletsEBGreen2009-08-13T19:05:44Z2009-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#12692991Answer by EBGreen for WIX MSI Package UninstallationEBGreen2009-08-12T23:37:55Z2009-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#12681600Answer by EBGreen for How can I bulk rename files using powershell?EBGreen2009-08-12T19:18:02Z2009-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#12530280Answer by EBGreen for How can I break up a string with multiple XML root elements in PowerShell?EBGreen2009-08-10T03:44:10Z2009-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#12528515Answer by EBGreen for What are concepts?EBGreen2009-08-10T01:57:12Z2009-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#12528031Answer by EBGreen for How to know a certain disk's format(is FAT32 or NTFS)EBGreen2009-08-10T01:28:35Z2009-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#12526880Answer by EBGreen for Copy Update Create VBScriptEBGreen2009-08-10T00:35:47Z2009-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#12517046Answer by EBGreen for How to enumerate an object's properties in Python?EBGreen2009-08-09T16:37:48Z2009-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#12498190Answer by EBGreen for How can I grep for a text pattern in a zipped text file? EBGreen2009-08-08T20:30:55Z2009-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#53754137Answer by EBGreen for Do you inflate your estimated project completion dates?EBGreen2009-02-11T16:17:29Z2009-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-projectComment by EBGreen on Calculating Time To Complete a ProjectEBGreen2009-09-14T16:25:41Z2009-09-14T16:25:41ZStackOverflow.comhttp://stackoverflow.com/questions/1422574/calculating-time-to-complete-a-projectComment by EBGreen on Calculating Time To Complete a ProjectEBGreen2009-09-14T16:23:50Z2009-09-14T16:23:50ZProject time estimation has been beat to death already on SO.http://stackoverflow.com/questions/1420719/powershell-setting-an-environment-variable-for-a-single-command-onlyComment by EBGreen on Powershell: Setting an environment variable for a single command onlyEBGreen2009-09-14T13:22:37Z2009-09-14T13:22:37ZI 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#1412924Comment by EBGreen on Is there a way to pass arbitrary text to Vim?EBGreen2009-09-11T19:47:47Z2009-09-11T19:47:47ZExcept 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-csComment by EBGreen on Resources for Beginning CSEBGreen2009-09-11T18:08:56Z2009-09-11T18:08:56Z"javascript (not a language, I know)" - Could you clarify what you mean by that?http://stackoverflow.com/questions/1406947/read-exchange-using-vbscriptComment by EBGreen on Read Exchange using VBScriptEBGreen2009-09-10T19:37:47Z2009-09-10T19:37:47ZThat is certainly better. :)http://stackoverflow.com/questions/1406947/read-exchange-using-vbscriptComment by EBGreen on Read Exchange using VBScriptEBGreen2009-09-10T18:56:52Z2009-09-10T18:56:52ZMy 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-vbscriptComment by EBGreen on Read Exchange using VBScriptEBGreen2009-09-10T18:42:14Z2009-09-10T18:42:14ZGenerally 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-cablesComment by EBGreen on What is the most effective solution you used to label cables?EBGreen2009-09-10T18:20:18Z2009-09-10T18:20:18ZActually better on serverfault.http://stackoverflow.com/questions/1406871/help-please-with-my-math-homeworkComment by EBGreen on help please with my math homeworkEBGreen2009-09-10T18:19:20Z2009-09-10T18:19:20ZActually 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-questionComment by EBGreen on Stack related Interview QuestionEBGreen2009-09-10T15:36:18Z2009-09-10T15:36:18ZThen you should have said to them "You should really add more information"http://stackoverflow.com/questions/1405660/why-do-you-read-text-booksComment by EBGreen on Why do you read text books?EBGreen2009-09-10T14:42:36Z2009-09-10T14:42:36ZDiscussion 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-booksComment by EBGreen on Why do you read text books?EBGreen2009-09-10T14:37:56Z2009-09-10T14:37:56ZOr for that matter with any specific language/architecture?http://stackoverflow.com/questions/1405117/command-line-parsingComment by EBGreen on Command Line ParsingEBGreen2009-09-10T13:45:40Z2009-09-10T13:45:40ZIn 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/…</a>http://stackoverflow.com/questions/1401409/firefox-plugin-for-tampering-browser-typeComment by EBGreen on Firefox plugin for tampering browser typeEBGreen2009-09-09T18:54:25Z2009-09-09T18:54:25ZWhat is your programming related need for this?