viață de expat: lucruri pe care nu le știam despre Olanda

1. Sistemul perfect de piste de bicicletă nu a fost acolo din totdeauna. Videoul îmi amintește de niște probleme actuale din București, însă ei s-au confruntat cu ele acum câteva zeci de ani.
2. în Olanda , arta e la ea acasă – în special când vine vorba de pictură.

Despre ambele, pe blogul meu

(n-am putut adăuga linkul cu ajutorul interfeței, noroc că știu HTML :) însă )

 

 

 

 

 

Posted in Diverse | Leave a comment

Despre finanțarea start-upurilor


Despre Angel Investment și Venture Capital pe blogul meu.

Posted in Diverse | Leave a comment

De ce au evoluat vesticii mai repede decât restul lumii?

Și ce se întâmplă acum: restul lumii prinde din urmă lumea vestică.

Pe blogul meu:

http://myevernote.blogspot.com/2011/09/niall-ferguson-6-killer-apps-of.html

Posted in Diverse | Leave a comment

Am incheiat aici

Pentru ca am scris pe blog si nu mi se sterge cacheul (am scris acum 2 zile si ultimul articol aparut e de pe 1 septembrie ).

See me on http://myevernote.blogspot.com/
F
eed: http://myevernote.blogspot.com/feeds/posts/default
A
s fi ales tumblr, dar nu mi-am putut importa articolele.

Am ales Google pentru ca sunt fan Google si planuiesc sa ma mut la un moment dat cu totul pe Google Plus and Co.

 

 

 

 

 

 

 

 

Posted in Diverse | 1 Comment

The Art of Unit Testing – Automated Builds and Continuous Integration (notes)

Anatomy of an Automated Build Process (items marked with bold face are critical)
  1. get the latest source code version
  2. compile projects on latest version
  3. deploy build output to test server
  4. run tests locally on the test server
  5. create archive of build outputs (number, date)
  6. deploy outputs to staging and production
  7. notify relevant people if any test has failed (by email)
  8. merge databases
  9. create reports on build quality, history, test statuses
  10. file issues automatically if the test has failed
Continuous integration  = making the automated build and integration process run continuously.
Types of automated builds
  • nightly build  - for long running tests and system tests
  • release build - runs nightly build, then deploys to server and archives
  • continuous integration  - every few minutes (ex. 10) runs the fast tests
Posted in The Art of Unit Testing (Roy Osherove) | Leave a comment