Hacker News new | ask | show | jobs
by pcowans 4797 days ago
Can you say more about how your product is medium computational intensity? i.e. what makes it more complex than your average databased backed web app? Why do you feel that code quality is more important for you than for an average project?

The architecture of your application is more than a one-off decision about tech stacks made at the start, and I'd say that you really do need someone with a long term stake in the company who's able to own this on an ongoing basis. I don't know whether there might be ways to get an advisor on board to do this rather than making a full hire.

1 comments

Good questions.

The complexity is not in the database, which will be tops several hundreds of tables with thousands of rows by hundreds of fields. Peanuts, datawise. All we need is dynamic updating of the tables, rows and fields throughout the system. That's a small hurdle tops (unless we get the scale wrong ;).

The computationally intensive part comes from my background. I'd want to run simulations over networks within our database. That easily beats normal computational intensity. But the demonstration of this functionality is key. Of course, lean could suggest making a faux-demonstration, but you still need a basis of functionality in your first product.

Code quality is important both for me as a purist (don't laugh, but being crazy for code quality is what I've learned in large firms in the last few years, even as a non-programmer) and for our customers who will demand it because of their markets. Especially if we would want to rapidly expand our codebase (supposing we survive first customer contact), you need quality code to scale.

In the basis it's nothing scipy + numpy couldn't handle, but there the OP comes back: how can we know that we make the right choice in terms of business, sustainability, affordability? That I could build fragments in Python says pretty much nothing. Next to that, my database knowledge is zero. So we are still in the blind there.

Getting tech-knowledge on board is a good suggestion. But going from 2 to 3 founders is a big step. And who says we are not just moving the problem one step ahead?

So what is your background? It seems like you have experience doing something technical, even if it isn't professional software engineering. Do you feel you could code up a workable implementation of your network simulation in Python which could be encapsulated as a component of a larger system using a mix of technologies? Separating things out into modules for which you can (in theory) implement using different stacks is generally a good idea in any case.
Experience mostly in econometric and financial modelling + dabbling in code for fun.

The workable implementation pretty soon baffles me on the database side. Basically all I know is from flat data file or database upwards. I really can't implement a system of cards that is expandable on-the-fly.

The modular approach is a good suggestion. It's what I got from the Trello stack post as well [1].

But I'm still looking for a good heuristic to get those modules in place (perhaps without someone extra on board).

[1] http://blog.fogcreek.com/the-trello-tech-stack/

Okay, cool - so it seems like you do actually have quite a specific piece of technology missing, but it also seems to me that this is an architecture / technical design problem rather than just needing someone to code it up. It also seems that it's pretty core to what you're trying to do, which to me suggests that you really need a find a way for yourself or someone with a long terms stake in the project to own this piece.

If you were able to encapsulate that part of you product (the simulation and associated data store), would you feel comfortable architecting the rest of the system (whatever that is - web interface, associated company website, etc.) and bringing someone else on board as a contractor using fairly standard technology (e.g. Rails / Django)? If you could do that it'd free you up to focus on learning the bits which really matter.

Putting my two cents in technically, the way you're describing this makes me think that it's not necessarily a good fit for a traditional RDBMS - 'hundreds' of tables of fields strikes me as an unconventional way to use these technologies, but I don't know enough about the problem you're solving to suggest what might be more appropriate.