Archive for the ‘startup’ Category

Startup Conference 2009 – day 1

Startup Conference 2009” day 1 is over. Most notable was “elevator pitch” session and “speed dating” :) session.

Elevator pitch participants:

This list is probably inaccurate. Most Startups don’t bother to put the company name and web address on the first slide if they put it at all.

“Speed dating” session was very interesting. I was able to talk with three people from technology startups. It always helps to exchange creative ideas with other people.

I made some photos that are blurred due to the horrible lighting conditions and I will try to publish them later.

Here some photos from the conference (not mine).

Local startup events

startup conference 2009

The National Entrepreneurship Conference Startup (Bulgaria) is an annual event gathering young entrepreneurs, business angels, VCs and students who want to start their own business. Startup Conference aims to empower the entrepreneurial Spirit among the young people and to show them how to start and manage a successful business. Startup 2009 will carry out on 21st and 22nd of November at University of Architecture, Civil Engineering and Geodesy. (Sofia, Bulgaria)

TEDxBG

This is not exactly a “startup” event, but there will be a lot of entrepreneurs. For the first time a local TEDx event is organized.

WHEN: Saturday, January 9, 2010
WHERE: Rainbow Plaza, Sofia, Bulgaria

We support iPhone

Today I worked with a help of WPtouch plugin to enable a better experience of iPhone users of my blog.

It uses <meta name=”viewport” content=”initial-scale=1.0; maximum-scale=1.0; user-scalable=no;” /> and some CSS to format and display pages in appropriate way.
Following is preview in Safari with User Agent set to iPhone 3.0.

iPhone preview

iPhone preview

Client-server architecture

Recently I decided to design my product using the client-server architecture. It was initially designed as standalone application for windows but will continue to grow as bigger application and I would like to have the uniform architecture. My main points for this decision are following:

  • Main algorithm of the program is computationally intensive, i can imagine a dedicated machine that runs the server part for calculations (continuously for big problems) and one and multiple machines for viewing produced reports.
  • Data storage and data integration. It is possibility to store all data in local database (local for server component) or store it in ACD database. With separate server component this can be more easily administered.
  • It is better to separate the GUI from backed implementation from beginning. This can also permit better testing of separate components.
  • Separate server and client component can permit different licensing schemes like releasing the GUI as open source or the components can be run on different operating systems (server on Linux and clients on Windows)

I am still in process of making decision on exact implementation details: communication protocol etc. It can be some custom or some existing protocol or in future to use web services integration. At the moment do not want too spend to much time on this. My goal is to release a functional version with minimum number of features (just the right number in order to get the call center forecasting done). I consider that initial feedback is important and releasing early is the way to understand better customer requirements.