Langsung ke konten utama

Nick Hodges Keluar Dari Embarcadero

Nick Hodges Keluar Dari Embarcadero
Salah satu orang penting di Embarcadero telah keluar, lebih tepatnya dikeluarkan. Dia ungkapkan hal itu di akun Facebook-nya.




Free Image Hosting

Di forum embarcadero dia juga mengatakan yang sama.
Folks --

There have been some rumors floating around, and I wanted to set things
straight.

I was let go by Embarcadero on Monday. This wasn't my decision.

About twenty years ago, a friend in the Navy gave me a copy of Tom
Swan's Mastering Turbo Pascal series, and right from the start, I loved
the elegance and beauty of it. I taught myself, and I used Borland
Pascal for Windows to write what was possibly the world's crappiest
shareware. :-)

Then Delphi came along, and I was totally hooked. I loved it. The
beauty of the VCL, the speed of the compiler, the awesome design-time
experience -- it was quite intoxicating. I was fortunate enough to get
on the beta, which allowed me to get smart enough to stumbled my way on
to TeamB. I became what Guy Kawasaki calls a "customer evangelist". I
attended my first Borcon in 1995, I became a Borcon speaker, and then
even a Borcon Advisory Board member. I'd like to think that you could
say that there was no greater or more passionate Delphi fan and
supporter than I -- except maybe for Dr. Bob. ;-)

In 2006 I moved my family half way across the country to become the
Delphi Product Manager. Later, I moved over to be R&D Manager, a job I
truly loved. Working at a place that raises your IQ 20 points just by
walking in the door is terrific. During my time with the company, I
continued to be a tireless advocate for Delphi, for CodeGear and then
Embarcadero, for the development team, and for you customers. I pretty
much ate, breathed, and slept Delphi.

It's a real bummer that there no longer room at Embarcadero for
Delphi's biggest supporter -- again, with props to Dr. Bob :-)

Obviously, moving forward, I'm going to have to cast a wide net to find
a position, so I don't know if I'll be able to remain a "direct" member
of the community. (That may actually please some of you, I know. ;-)
) But Delphi is still the best and coolest development tool around. It
will easily survive the loss of one guy. I won't be posting as much
here in the coming weeks, I don't think, but I'll be around. And of
course, if anyone has any job leads, please let me know. I've got
lots of time for interviews. ;-)
--

Nick

Komentar

Postingan populer dari blog ini

Cara Efektif Menggunakan StringGrid

StringGrid merupakan salah satu VCL yang sangat berguna. Jika anda sudah familiar dengan Webbased Application, anda bisa analogikan StringGrid dengan Table. Table digunakan untuk meenampilkan data. Adapun StringGrid, selain sebagai komponen untuk menampilkan data, dia juga juga bisa sebagai tempat untuk memasukkan data, lihat gambar di bawah ini : Pada gambar di atas, saya menampilkan form jurnal umum sebagai contoh penggunaan StringGrid. Pada contoh di atas, stringgrid dipakai untuk memasukkan data item jurnal berupa Kode dan nama perkiraan, status Debet/Kredit dan Nominal. Untuk memanfaatkan Stringgrid saya mempunyai beberapa konstanta yang mencerminkan nomor urut kolom, misalnya _KolKode merujuk pada kolom Kode Perkiraan, _KolNama merujuk pada kolom Nama. Lebih jelasnya lihat baris kode berikut : Const _KolKode : Integer = 0; _KolNama : Integer = 1; _KolDK : Integer = 2; _KolNominal : Integer = 3; Konstanta-konstanta tersebut saya pakai di beberapa tempat. Diantaran...

Object Oriented Programming (OOP) Pada Delphi - Bag 1

Object Pascal, adalah sebuah bahasa dimana delphi menjadi salah satu IDE (Integrated Development Environment) nya, adalah sebuah bahasa yang mendukung penuh konsep OOP. Sederhananya, bahasa ini memungkinkan bagi programmer untuk membuat dan memanipulasi object. Lebih detailnya, bahasa ini mendukung empat prinsip pokok OOP yaitu : Data Abstraction, Encapsulation, Inheritance, Polymorphism. Mempelajari OOP berbeda dengan mempelajari Delphi. Apalagi bagi seorang yang sudah mengenal bahasa Pascal. Bisa jadi ada orang yang sangat mahir delphi/pascal namun sangat lemah pada konsep OOP. Apa itu OOP? Apa Itu Object? Apa Itu Kelas? OOP adalah semua hal yang berkaitan dengan writing programs that manipulate objects : ). Delphi, Java, C++ adalah beberapa contoh bahasa yang mendukung OOP. Ketiga bahasa di atas mempunyai prinsip-prinsip OOP yang sama, tentunya dengan sintaks (penulisan baris kode program) yang berbeda. Sekali kita sudah menguasai konsep OOP, maka akan begitu mudah mempelaja...

Menambahkan Function Pada Fast Report

Fast report merupakan salah satu reporting tool yang banyak dipakai oleh para developer delphi. Fast Reprt menyediakan built-in function yang sangat memudahkan kita dalam membuat sebuah laporan. Namun adakalanya kita membutuhkan function/procedure yang tidak ada pada built-in function bawaan fast report. Oleh karena itu kita harus menambahkan sendiri. Untuk menambahkan function pada fast report kita perlu membuat kelas yang diturunkan dari TfsRTTIModule. Lebih jelasnya lihat baris kode berikut ini : unit uTSFastReportFunction; interface uses SysUtils, Classes, fs_iinterpreter, Forms; type TTSFastReportFunction = class(TfsRTTIModule) private function CallMethod(Instance: TObject; ClassType: TClass; const MethodName: String; var Params: Variant): Variant; public constructor Create(AScript: TfsScript); override; function Quot(AString : String): String; end; const _Kategori : string = 'My Functions'...