Live data from Hacker News

Google's Code Editor

docs.google.com

51–60 of 88 posts

Re: Google's Code Editor

#52

Last year I've used Google Apps Script to automate a spreadsheet, it worked very well and that spreadsheet is still used inside my company. It's not very complex, all together maybe 200 lines of code, with tests. But, I'm not sure if I would do it again. Development style is not enjoyable, coding inside textarea with syntax highlighting is simply not good enough. I would prefer to use my text editor and some way to d…

Your comment reminded me of a post I saw on here a few months back, a commandline interface for google apps (including docs):

http://code.google.com/p/googlecl/

Re: Google's Code Editor

#54
post #46
post #28

Yuck

Please collaborate to the conversation, you're obviously allowed to not like it but please explain why. "Yuck" just doesn't cut it.

I consider all these editors in the cloud a waste of effort.

The right place for a code editor is as a native application.

Re: Google's Code Editor

#55
post #33

Earlier quoted context omitted.

But seriously, you're kidding right? Here's microsoft's answer to the diff and merge question: http://answers.microsoft.com/en-us/office/forum/office_2007-... Granted, excel is a powerful tool for an individual to work with, but for teams working with a large number of complex sheets the model breaks down quickly. Keeping up with changes and versions using excel is a nightmare.

That's what Sharepoint is for :) Also Word/Excel 2010 have excellent change management tools which integrate nicely with mercurial and SVN built in (under review changes). You have to frig a couple of command line switches to get it to work but TortoiseSVN has those preconfigured. EDIT: answers.microsoft.com is full of trash - ignore it...

Just tried it - AMAZING!

http://www.ipreferjim.com/2010/11/tip-for-writers-and-noveli...

Re: Google's Code Editor

#56

Earlier quoted context omitted.

NOTE: this is NOT a troll. I know a great tool for the job. It works fine with source control and allows documents to be diffed and merged. The editor is 100% offline as is the product or it can be 100% online at will. No need to push changes to server - just replicate/copy. If you fancy collaboration tools you can use use extensive ones on a subscription basis. It's got a well documented SDK and an interface that yo…

How come Excel works fine with source control? It is a binary blob and diff and merge are done with Excel itself, not the version control's merge and diff (which may or may not be what you want). What are those collaboration tools for Excel? This is an honest question: all I see is some spreadsheet on shared drive or Sharepoint with some ad hoc process around editing, making sure the need for the merge is avoided.

Excel files are simply zip files with XML in them.

Re: Google's Code Editor

#58

Earlier quoted context omitted.

NOTE: this is NOT a troll. I know a great tool for the job. It works fine with source control and allows documents to be diffed and merged. The editor is 100% offline as is the product or it can be 100% online at will. No need to push changes to server - just replicate/copy. If you fancy collaboration tools you can use use extensive ones on a subscription basis. It's got a well documented SDK and an interface that yo…

Can you elaborate on Common Lisp automation...

Via COM. Technically any language with a COM or DCOM bridge will work fine. lispworks has one and there is a route via the CLR here:

http://weitz.de/rdnzl/

Re: Google's Code Editor

#59

Earlier quoted context omitted.

That's what Sharepoint is for :) Also Word/Excel 2010 have excellent change management tools which integrate nicely with mercurial and SVN built in (under review changes). You have to frig a couple of command line switches to get it to work but TortoiseSVN has those preconfigured. EDIT: answers.microsoft.com is full of trash - ignore it...

Just tried it - AMAZING! http://www.ipreferjim.com/2010/11/tip-for-writers-and-noveli...

Indeed.

We have 400+ page documents in the system and they all work nicely :)

Re: Google's Code Editor

#60
I cant seem to be able to run a closure. The editor says: no functions to run.

Consider this code: var i = (function () { var k = 1; return function () { return ++k; } } () );

i();

Post reply on HN