How about company that will turn your spreadsheets into apps. Start with specialized consulting and start building product to cover common use cases. Like Gigster: http://techcrunch.com/2015/07/22/uber-for-developers/ Input: Send the existing spreadsheet and maybe some description. Output: Based on spreadsheets and their history you build and host a webapp to do that.
Ask HN: Language compiled to Excel spreadsheets?
41–50 of 50 posts
Re: Ask HN: Language compiled to Excel spreadsheets?
#42Earlier quoted context omitted.
> Is a modern, object-oriented Basic really friendlier than Python or Lua? QuickBASIC had User Defined Types, FreeBASIC not only has Pointers (and therefore Function Pointers) but also adds methods to TYPES which are defined as Subroutines just like in C++. In Fact FreeBASIC can be thought of as a covert way to learn and understand C++ for QBasic programmers. As for it being an informal or hobbyist language, if one b…
>As for it being an informal or hobbyist language, if one begins by designing the proper data structures and adds the adequate functions to handle them, the resulting programs can be just as capable as those designed in any other language. Well, that is exactly my point. Basic has the reputation of being easy for beginners and hobbyists but properly written code in a recent OOP dialect of Basic doesn't look too diffe…
Re: Ask HN: Language compiled to Excel spreadsheets?
#43Also, I doubt version control is something this community would begin using, simply because of the perceived effort required to get going (in reality, source control is not that complicated, but once you start talking about "repositories" you are going to lose these people). It's unfortunate, but most of society (even really smart folks!) prefer to remain ignorant to tech in general. :/
Re: Ask HN: Language compiled to Excel spreadsheets?
#44Earlier quoted context omitted.
>As for it being an informal or hobbyist language, if one begins by designing the proper data structures and adds the adequate functions to handle them, the resulting programs can be just as capable as those designed in any other language. Well, that is exactly my point. Basic has the reputation of being easy for beginners and hobbyists but properly written code in a recent OOP dialect of Basic doesn't look too diffe…
The secret is indeed the traditional tight integration of IDEs + Documentation + Ease of compilation and deployment of code. I'd say the first 5 points are absolutely crucial to the success of good BASIC coding environments and more languages should offer the same.
Going with Basic instead of a different language for your IDE can be a good choice for another reason. It is, or at least was, good for marketing to people who write code but don't consider themselves developers. To the potential buyer of the IDE using Basic signals, "this is a friendly environment; we don't expect you to be a grizzled professional programmer". (This may not work today. The latest product from Blitz Research is called "Monkey" and REALbasic was renamed "Xojo" in 2010, both apparently for marketing reasons. The company behind Xojo described theirs at http://www.xojo.com/support/faq_xojonew.php)
Re: Ask HN: Language compiled to Excel spreadsheets?
#45I think the core issues with spreadsheets are:
1. UI and user-facing representation - different tasks could be best solved with different representations of the same underlying model 2. Expressiveness - particularly including representational power, as in their computational complexity class—the basic spreadsheet model is not Turing complete
Eve (http://incidentalcomplexity.com) is a recent serious attempt to simultaneously address both.
Numbers has several features to address (1) (the ability to view arrange sheets next to each other in space, and to give rows and columns symbolic names). One could go much farther by offering, as you suggest, code-like views of the same models; such a view could use abstraction to compactly describe and edit self-similar structure, applying a single function definition to a collection of cells.
A key question with (2), however, is the degree to which the restricted computational power is a key advantage for the accessibility of the spreadsheet model.
Re: Ask HN: Language compiled to Excel spreadsheets?
#461) Create a contained python/node/ruby environment.
2) Bind an object to a spreadsheet ui
3) ????
4) Profit?
Re: Ask HN: Language compiled to Excel spreadsheets?
#47I think that the advantage of Excel for non programmers is that it's less abstract and you can see all the intermediate results instead of having a mental model in your head. Also it makes some bugs show faster, because you see the immediate result. Perhaps an alternative is to make something between Excel and "text" programming. Usually a big spreadsheet has many almost independent blocks. Make some mini-spreadsheet…
> the main problem is that you cant's nest 3 for loops I'm curious what you mean by this. Care to explain?
If you need to "program" this in an Excel spreadsheet
For i = 1 to 5
For j = 1 to 5
If 2 * i + j = i * j then
Print i, j, "*"
End If
Next
Next
You can "write" this in a 6x6 block with the values 1 2 3 4 5
1 =If(2*B$1+$A2=B$1*$A2, "*", "")
2
3
4
5
And copy the formula from B2 to all the cells, so you get 1 2 3 4 5
1
2
3 *
4 *
5Re: Ask HN: Language compiled to Excel spreadsheets?
#48Re: Ask HN: Language compiled to Excel spreadsheets?
#49Earlier quoted context omitted.
> the main problem is that you cant's nest 3 for loops I'm curious what you mean by this. Care to explain?
The problem is that the spreadsheets are 2D, so you iterate easily over two variables, the row and the column. If you need to "program" this in an Excel spreadsheet For i = 1 to 5 For j = 1 to 5 If 2 * i + j = i * j then Print i, j, "*" End If Next Next You can "write" this in a 6x6 block with the values 1 2 3 4 5 1 =If(2*B$1+$A2=B$1*$A2, "*", "") 2 3 4 5 And copy the formula from B2 to all the cells, so you get 1 2…
(I care about this, btw, because my real job is making a new spreadsheet.)
Re: Ask HN: Language compiled to Excel spreadsheets?
#50Here is a cleaner example I posted on HN before - https://news.ycombinator.com/item?id=6668323