User Jan Mitrovics - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T05:40:47Zhttp://stackoverflow.com/feeds/user/52833http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1118574#11185742Answer by Jan Mitrovics for Why Do You Use Delphi?Jan Mitrovics2009-07-13T09:54:23Z2009-07-13T11:54:19Z<p>Back in 1986 I was working for a University and we had to select a programming environment for some scientific instrumentation. Our choices were C or Pascal at that time (Turbo Pascal of course). We chose Turbo Pascal and the main reasons were readability and maintainability of the code as well as speed of the compiler.
With many different persons working on the code over the years the first two points have really been crucial.
Fast forward more than 20 years and Delphi is my main programming platform for Windows and both points are still very important. I am able to leverage code that has been written many years ago. Delphi has allowed me to develop faster and with better quality and thus been one important basis of commercial success during all these years.</p>
<p>The most amazing part in retrospect of Delphi is how constant innovation has kept the language / IDE / framework up to date, while maintaining a very high degree of compatibility.
Turbo Pascal 5.5 introduced object oriented programming, Delphi 1 introduced components and RAD programming. Delphi 2 introduced 32bit. The improvements went on, with every release and now with Delphi 2009 we have generics, Unicode, unit testing, refactoring and much much more.
All these improvements happened in a way that allowed me to develop my skill set with the language and improve my code base. </p>
<p>I do development in a number of different languages (e.g. C on micro controllers, Java on mobile phones, C#.net, PHP, assembly language on various micro controllers / processors, ...). I have used other languages (Basic, Forth, Fortran, ...).
The tool set is dictated by the platform / purpose of the development task. For Win32 there is nothing that comes close to Delphi.</p>
<p>We cannot forsee the future, but with the history of Delphi and the current developments/ roadmaps and engagement if Delphi at Embarcadero (Delphi Prism, cross platform developments, Win64) my initial decision of 1986 continuous to be excellent!</p>
http://stackoverflow.com/questions/422539/energy-efficient-application-development/423671#4236716Answer by Jan Mitrovics for Energy efficient application developmentJan Mitrovics2009-01-08T09:21:07Z2009-01-08T09:21:07Z<p>Energy efficiency depends on the hardware and the OS that you are running on, as well as the library, that you are using.</p>
<p>If you are doing application development on a typical PC, then your application will be waiting for system messages most of the time.
Typical frameworks (e.g. C#, Java, Delphi, Visual Basic) contain the basic functionality for these messaged to trigger events that your program will react to (e.g. OnClick). If you stick to this way of programming, there is not much that you need to think about. When your application is waiting for system messages, the OS knows, that the application is not busy and can make use of its built in power saving functionality. Things that you might consider are improvements on the IO-part of your program (e.g. combining several file reads or writes into one combined one).</p>
<p>If your application involve a lot of processing (e.g. when you need to create independent threads to handle the processing without freezing the UI) you will need to think more about power efficiency. Optimizing the IO-part may be a good starting point. </p>
<p>Things that you should generally avoid are busy loops polling for an event (e.g. change of a bit in a register, or the availability of data from another thread). Use synchronization functions of your OS (e.g. Events, Semaphores, Mutexes, WaitForSingleObject, ...) instead.</p>
<p>In embedded systems there are many more things to consider ( / under your control).</p>
<p>I am working at the moment on a wireless sensor network, where each node will be able to run on small batteries for years. In order to achieve that, two things had to be done.</p>
<p>1) Design a very power efficient hardware by selecting low power consumption parts with efficient sleep modes. Many Microcontrollers have the possibility to switch off sub systems when not in use. They also have various power reduction or sleep modes. During a sleep mode program execution is stopped, while all RAM is kept. Depending on the specific mode certain sub systems are still alive and will wake up the controller when needed.</p>
<p>2) Program the firmware to make use of low power modes, whenever possible. Switch off sensors / transmitters when not in use. Let the controller sleep as often as possible (e.g. use timers to wake up from programmed delays instead of busy wait delays, when waiting for external events program a wakeup interrupt and go to sleep).
As a result of these endeavours your firmware becomes much more complex. There are many more states, that your program maybe in, and error conditions (e.g. timeouts) need to be cought by making use of subsystems.</p>