User Josh Miller - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T20:35:41Z http://stackoverflow.com/feeds/user/2818 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/32282/regex-testing-tools/32903#32903 1 Answer by Josh Miller for Regex Testing Tools Josh Miller 2008-08-28T17:50:40Z 2008-08-28T17:50:40Z <p>I am still a big <a href="http://weblogs.asp.net/rosherove/pages/tools-and-frameworks-by-roy-osherove.aspx" rel="nofollow">The Regulator</a> fan.<br /> There are some stability problems but these can be fixed by disableing the Intellisense. It gets mad with some expressions and typos in building an expression.</p> <p>Would love it if <a href="http://weblogs.asp.net/rosherove/default.aspx" rel="nofollow">Roy Osherove</a> updated, but looks like he is busy with other things.</p> http://stackoverflow.com/questions/32087/what-tools-and-languages-are-available-for-windows-shell-scripting/32146#32146 0 Answer by Josh Miller for What tools and languages are available for windows shell scripting? Josh Miller 2008-08-28T12:54:16Z 2008-08-28T12:54:16Z <p>Scripting is a blast.</p> <p>Personally I like to write some evil little batch files. You can find a command line program to do just about anything. I prefer Batch files mostly because they are portable from one machine to another with at most a zip with a few unix tools (SSED, GREP, GAWK). there is a commandline REG.Exe that can even do Registry changes and reads. You can parse output from commands with a "FOR /f" loop.</p> <p>PowerShell does have more... err.. <strong>Power</strong> (2nd post I wrote that in, but I can't help it.)</p> <p>If you want to look at windows automation check out <a href="http://www.autohotkey.com/" rel="nofollow">AutoHotKey</a>.</p> <p>What are you trying to automate? That may help us narrow down what would be helpfull.</p> <ul> <li>Josh</li> </ul> <p>EDIT: for the record I typed that at the same time as @jameso If someone at work hadn't asked me a question, I may have posted before him. I did get a bit of a shiver at the similarity of the post though....</p> http://stackoverflow.com/questions/30354/when-must-i-set-a-variable-to-nothing-in-vb6/30679#30679 3 Answer by Josh Miller for When must I set a variable to "Nothing" in VB6? Josh Miller 2008-08-27T17:23:30Z 2008-08-27T17:23:30Z <p>@Matt Dillard - Did setting these to nothing fix your memory leak?</p> <p>VB6 doesn't have a formal garbage collector, more along the lines of what @Konrad Rudolph said.</p> <p>Actually calling unload on your forms seems to me to be the best way to ensure that the main form is cleaned up and that each subform cleans up their actions.</p> <p>I tested this with a blank project and two blank forms.</p> <pre><code>Private Sub Form_Load() Dim frm As Form2 Set frm = New Form2 frm.Show Set frm = Nothing End Sub </code></pre> <p>After running both forms are left visible. setting frm to nothing did well... nothing.</p> <p>After settign frm to nothing, the only handle open to this form is via the reference.</p> <pre><code>Unload Forms(1) </code></pre> <p>Am I seeing the problem correctly?</p> <ul> <li>Josh</li> </ul> http://stackoverflow.com/questions/30354/when-must-i-set-a-variable-to-nothing-in-vb6/30383#30383 2 Answer by Josh Miller for When must I set a variable to "Nothing" in VB6? Josh Miller 2008-08-27T15:07:44Z 2008-08-27T15:07:44Z <p>I had a problem similar to this a while back. I seem to think it would also prevent the app from closing, but it may be applicable here.</p> <p>I pulled up the old code and it looks something like:</p> <pre><code>Dim y As Long For y = 0 To Forms.Count -1 Unload Forms(x) Next </code></pre> <p>It may be safer to Unload the m_frm1. and not just set it to nothing.</p> http://stackoverflow.com/questions/27830/which-language-you-use-for-throw-away-programs/28582#28582 0 Answer by Josh Miller for which language you use for "throw away" programs? Josh Miller 2008-08-26T16:50:23Z 2008-08-26T20:08:59Z <p>My throw-away are typically to format data or move files around.</p> <p>For this a good flexable batch file will run on any Win-xxxx based machine.</p> <p>For a quick reformat GAWK and SSED work great. They can also be zipped with a batch file to pass the quick fix on to others. </p> <p>I had held off on powershell because it just wasn't on every desktop that I need to touch. And nothing hurts like knowing a solution and not having access to the tools. From all I hear PowerShell has too much .. Power .. to ignore for too long.</p> <ul> <li>Josh</li> </ul> http://stackoverflow.com/questions/26292/salary-com-accuracy-for-software-developers/26375#26375 1 Answer by Josh Miller for Salary.com accuracy for Software Developers Josh Miller 2008-08-25T16:47:53Z 2008-08-25T16:47:53Z <p>A potential inaccuracy is the Job description. Do you always have a job that meets the narrow deffintion that is "Programmer I", "Software Engineer II". I think any job has some variance from the posted description.</p> <p>I imagine that if you find a zipcode in the middle of nowhere, it will still tell you what you should make doing any job it tracks. It uses some strange voodoo to come up with those numbers.</p> http://stackoverflow.com/questions/26183/screenshot-taking-tools/26197#26197 0 Answer by Josh Miller for Screenshot Taking Tools Josh Miller 2008-08-25T15:11:22Z 2008-08-25T15:11:22Z <p>If you want simple and free give Snippy a shot. <a href="http://www.bhelpuri.net/Snippy" rel="nofollow">http://www.bhelpuri.net/Snippy</a> You can select either a box or a lasso to capture. You can optionally have it give your Screenshot a boarder. Makes it a bit more clean if you are going to put it in an email or word doc.</p>