User JJohnson - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T14:42:16Z http://stackoverflow.com/feeds/user/25820 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/185262/how-does-your-company-do-enterprise-password-management 6 How does your company do "Enterprise" Password Management? JJohnson 2008-10-08T22:59:11Z 2008-12-24T20:52:44Z <p>We've talked about <b>personal</b> password management <a href="http://stackoverflow.com/questions/11362/what-is-your-favorite-password-storage-tool">here</a> but how do you guys manage your passwords at a company wide level?</p> http://stackoverflow.com/questions/231426/real-time-mysql-binary-log-parsing 1 Real-Time MySQL binary log parsing JJohnson 2008-10-23T20:42:26Z 2008-10-23T20:50:22Z <p>we are dealing with a legacy application built on MySQL 5.0 (MyISAM). I need to know in <b>real-time</b> when an update, delete, or insert happens to a particular table. The 'gotcha' is that I can't change the db (i.e. write triggers) in any way. I have to use the bin log, replication or something else which is somewhat non-invasive.</p> <p>We've looked at using the 'mysqlbinlog' command to parse the binary log. However, this is not real-time and we'd rather do something more event driven. </p> <p>Any ideas?</p> http://stackoverflow.com/questions/185262/how-does-your-company-do-enterprise-password-management/212625#212625 0 Answer by JJohnson for How does your company do "Enterprise" Password Management? JJohnson 2008-10-17T15:21:33Z 2008-10-17T15:28:33Z <p>I thought I'd report back after my week of searching...</p> <p>I've settled on <a href="https://www.passpack.com/online/" rel="nofollow">PassPack</a> I've been using it for a few days now for my personal passwords and I'm a total fanboy.</p> <p>They use the <a href="http://en.wikipedia.org/wiki/Host-proof_hosting" rel="nofollow">Host-Proof Hosting</a> pattern so the only one that can access your stuff is you and if you forget your password they can't help you.</p> <p>They have some nice Offline apps written with Adobe AIR and Google Gears.</p> <p>But, best of all, they fit my "enterprise" requirement because an upcoming release will support <a href="http://passpack.wordpress.com/2008/02/11/administer-and-share-passwords-between-accounts/" rel="nofollow">sharing</a> within a trusted group. </p> <p>Plus, I learned about <a href="http://quotation-marks.blogspot.com" rel="nofollow">The "Blog" of "Unnecessary" Quotation Marks</a> in their forum.</p> http://stackoverflow.com/questions/183352/groovy-execute-cp-shell-command 3 Groovy execute "cp *" shell command JJohnson 2008-10-08T15:21:57Z 2008-10-08T18:09:17Z <p>I want to copy text files and only text files from src/ to dst/</p> <pre> groovy:000> "cp src/*.txt dst/".execute().text ===> groovy:000> </pre> <p>You can see the command executes w/out error but the file "src/test.txt" does not get copied to dst/</p> <p>This also fails </p> <pre> groovy:000> "cp src/* dst/".execute().text ===> groovy:000> </pre> <p>However...</p> <pre> "cp src/this.txt dst/".execute().text </pre> <p>works</p> <p>Also,</p> <pre> "cp -R src/ dst".execute().text </pre> <p>works</p> <p>Why dose the wild card seem to cause my command to silently fail?</p> http://stackoverflow.com/questions/183352/groovy-execute-cp-shell-command/184057#184057 4 Answer by JJohnson for Groovy execute "cp *" shell command JJohnson 2008-10-08T18:09:17Z 2008-10-08T18:09:17Z <p>Thanks tedu for getting me half way there.</p> <p>I believe the reason that his solution didn't work was because of an 'escaping' issue.</p> <p>For instance...</p> <pre> "sh -c 'ls'".execute() </pre> <p>works. But...</p> <pre> "sh -c 'ls '".execute() </pre> <p>does not.</p> <p>There is probably a way to escape it properly in line there but the workaround I'm using is to pass a string array to Runtime.getRuntime().exec</p> <pre> command = ["sh", "-c", "cp src/*.txt dst/"] Runtime.getRuntime().exec((String[]) command.toArray()) </pre> <p>works beautifully!</p> http://stackoverflow.com/questions/183352/groovy-execute-cp-shell-command/183441#183441 0 Answer by JJohnson for Groovy execute "cp *" shell command JJohnson 2008-10-08T15:41:24Z 2008-10-08T15:41:24Z <pre> groovy:000> "sh -c 'cp src/*.txt dst/' ".execute().text ===> </pre> <p>I'm still unable to get that to work.</p> http://stackoverflow.com/questions/370189/eclipse-keyboard-shortcuts-broken-in-osx-10-5-6/381667#381667 Comment by JJohnson on Eclipse keyboard shortcuts broken in OSX 10.5.6 JJohnson 2009-01-16T14:30:47Z 2009-01-16T14:30:47Z This has worked for me too in Eclipse. I had to edit these prefs to setup HOME and END keys anyway (line end, line start, when 'editing text'). Remember to export your preferences because they won't stick when when you switch workspaces. http://stackoverflow.com/questions/231426/real-time-mysql-binary-log-parsing/231464#231464 Comment by JJohnson on Real-Time MySQL binary log parsing JJohnson 2008-10-23T21:35:58Z 2008-10-23T21:35:58Z We've looked at that a bit and that could work. The plan would be: 1) Change the port that MySQL listens on and then setup the on MySQL's old port. 2) Capture actions to our table and call some shell command. However, we'd much rather use &lt;b&gt;mysqlbinlog&lt;/b&gt; in a &lt;b&gt;daemon&lt;/b&gt; like way.