Am I missing the "what next" section? Is there a git repository or download somewhere?
Light Table - a new IDE concept
181–190 of 315 posts
Re: Light Table - a new IDE concept
#182Earlier quoted context omitted.
Ah, but business should be product-based...
Eh, product-focused, maybe. Being completely based on a single, unproven product is not really a great way to run a business, at least from Y Combinator's viewpoint.
Re: Light Table - a new IDE concept
#183Earlier quoted context omitted.
"I'd like to update code and see the unit tests update automatically" I think you have that a bit backwards there. I want to write the tests and have my code automatically update to make them pass.
/** * Auto-generated, do not edit! */ function add(x, y) { /* test 1 */ if (x == 2 && y == 2) { return 4; } /* test 2 */ if (x == 1 && y == -1) { return 0; } }
One interesting thing though with auto-generated code based on specific test code is that when the test fails at some point the process just has to be repeated, potentially being done automatically.
Re: Light Table - a new IDE concept
#184Isn't it ironic that this is posted on a site that does startup funding and the comments are "please put this on kickstarter" not "please apply for Y Combinator"? Is it possible that Kickstarter will disrupt Y combinator style startup funding? If we (the consumers) can bypass the investors and pay for what we want, why do we need the startup gatekeepers? Obviously this wouldn't work for all startups but a large porti…
I can't imagine the monetary investment from YC is more significant than the advice and mentoring that you get. Raising $20k isn't impossibly hard. Finding the right mentors is.
Re: Light Table - a new IDE concept
#185Re: Light Table - a new IDE concept
#186And for some reason, this is screaming "Metro" at me.
Re: Light Table - a new IDE concept
#187Re: Light Table - a new IDE concept
#188Earlier quoted context omitted.
Really? iOS has very effectively abstracted away the filesystem at a consumer level. I don't see it as much of a jump to see that occurring at the programming level, at least for application-level coding. Obviously, there will always be a need for a class of programmers who are intimately familiar with the lowest levels, but that set of programmers will always be vastly smaller than the numbers of those who code line…
"Really? iOS has very effectively abstracted away the filesystem at a consumer level." the operative phrase is "for consumers", I'm not going to be programming on an IPad ever.
Re: Light Table - a new IDE concept
#189Earlier quoted context omitted.
I can think of a few reasons, though they may not be the ones he has in mind. There's the fact that you're dealing with cell references rather than variable names, so all of your expressions look like ($K4 - $S$1) rather than (principal - payment). There's the fact that the IDE you're working in is trash -- rather than a text file with carefully indented parenthetical statements, it's a single line text field. Sort o…
> There's the fact that you're dealing with cell references rather than variable names, so all of your expressions look like ($K4 - $S$1) rather than (principal - payment). In Excel, use the "Name Manager" dialog and the "Name Box" on the formula bar. They re somewhat hidden, but discovery of them forever changed my spreadsheets!