User mdhughes - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T16:02:18Z http://stackoverflow.com/feeds/user/6292 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/20533/mac-text-code-editor/77328#77328 0 Answer by mdhughes for Mac text/code editor mdhughes 2008-09-16T21:29:20Z 2008-09-16T21:29:20Z <ul> <li>BBEdit makes all other editors look like Notepad.</li> </ul> <p>It handles gigantic files with ease; most text editors (TextMate especially) slow down to a dead crawl or just crash when presented with a large file.</p> <p>The regexp and multiple-file Find dialogs beat anything else for usability.</p> <p>The clippings system works like magic, and has selection, indentation, placeholder, and insertion point tags, it's not just dumb text.</p> <p>BBEdit is heavily AppleScriptable. Everything can be scripted.</p> <p>In 9.0, BBEdit has code completion, projects, and a ton of other improvements.</p> <p>I primarily use it for HTML, CSS, JS, and Python, where it's extremely strong. Some more obscure languages are not as well-supported in it, but for most purposes it's fantastic.</p> <p>The only devs I know who like TextMate are Ruby fans. I really do not get the appeal, it's marginally better than TextWrangler (BBEdit's free little brother), but if you're spending money, you may as well buy the better tool for a few dollars more.</p> <ul> <li><p>jEdit does have the virtue of being cross-platform. It's not nearly as good as BBEdit, but it's a competent programmer's editor. If you're ever faced with a Windows or Linux system, it's handy to have one tool you know that works.</p></li> <li><p>Vim is fine if you have to work over ssh and the remote system or your computer can't do X11. I used to love Vim for the ease of editing large files and doing repeated commands. But these days, it's a no-vote for me, with the annoyance of the non-standard search &amp; replace (using (foo) groups instead of (foo), etc.), painfully bad multi-document handling, lack of a project/disk browser view, lack of AppleScript, and bizarre mouse handling in the GVim version.</p></li> </ul> http://stackoverflow.com/questions/76595/soap-or-rest/77018#77018 25 Answer by mdhughes for SOAP or REST mdhughes 2008-09-16T20:59:47Z 2008-09-16T20:59:47Z <p>I built one of the first SOAP servers, including code generation and WSDL generation, from the original spec as it was being developed, when I was working at Hewlett-Packard. I do NOT recommend using SOAP for anything.</p> <p>The acronym "SOAP" is a lie. It is not Simple, it is not Object-oriented, it defines no Access rules. It is, arguably, a Protocol. It is Don Box's worst spec ever, and that's quite a feat, as he's the man who perpetrated "COM".</p> <p>There is nothing useful in SOAP that can't be done with REST for transport, and JSON, XML, or even plain text for data representation. For transport security, you can use https. For authentication, basic auth. For sessions, there's cookies. The REST version will be simpler, clearer, run faster, and use less bandwidth.</p> <p>XML-RPC clearly defines the request, response, and error protocols, and there are good libraries for most languages. However, XML is heavier than you need for many tasks.</p>