First of all: I'm Sorry about by short blogpost from march 2018 about Neural Networks.
It is the second most-read post I've ever done and it has nearly no information in it...
It is part of my FDK - and normally I do not share this code - but perhaps I will do it this time.
If I have some samples to show I will come back to the topic.
Friday, September 28, 2018
Is wrong always bad?
In software development, there are often (too) many ways you can solve a goal.
But how do I find the right way?
Perhaps you saw this approach in other sourcecode or at a conference. You downloaded the code from Bitbucket or GitHub... Perhaps you found it in a book…
I often heard:
- It's the Microsoft way - they know how to do things - don't question this.
- This is a pattern - you have to do it by the book - more intelligent people have hammered this in stone
or the other side
- don't use this - it's part of the language, but do not use this (With, FreeAndNIL, Goto)
Who is able to decide what is right or wrong and if it is "marked" as wrong is it so bad to use or do it this way?
Is it really so, that out there are only a very few who set the rules? Yes I think so. I call them Book writers or "Head of the Team". Do not get me wrong - these guys are very talented, and they know how to do things. And for our Delphi?
The count for "Head of the Team" is much smaller than on C, C++ or C#. (btw. from my point of view, all other languages do not count, especially if they do not result in CPU binary code)
But what if you do it in another way, what if you like to do it "called wrong" and what if your way is a better way for you?
My Answer is: Then do it this way.
If your code is still: Readable, maintainable, stable and testable. Compile it, ship it and earn you money.
Why should I do things only by the rule book? - But wait… Perhaps another developer doesn't understand your way and could not use your source or library. Yes, you can write it in your documentation and answer RTFM.
For a good library or component, there is no need to look into the documentation. Is it so? If yes we are all using stuff the is build decades ago… And yes we do, and we're dealing with this every day.
You like a small example? OK, find the bug:
var
i : integer;
d : TDateTime;
begin
D := now;
i :=0;
while i < 30 do
begin
incDay(d);
inc(i);
end;
end;
From my point of view - it is a bug - but the answer is "We don't want to cause problems to existing code" - bug-report closed. So we still have to look at the documentation. I would have been so happy if they have used this answer at implementing Unicode as default into the compiler.
If you are working with a team or writing code that is used by many other developers you have to do things as your audience would expect it. OK... I agree.
But I often like to do things my way because it is - from my point of view - the better way. That's why I have my own MVVP 2.5 Pattern, my FluidCreator or Fluent-Creator, my own Binding and not the visual live binding, do things in code and not in the object inspector, create a database with a creation pattern, have a wrapper for FireDac, a wrapper for AppTheathering, a wrapper for Bluetooth, a wrapper for Streams, a wrapper for exception handling, many wrapper to do threading, IDictionary and normally everything thread-safe…
Perhaps one time in the future - I like to do this since 20 years - I will write a book about this and become part of the "Book writers"...
We will see…
But first I had to travel to a planet with a slower rotation speed!
Monday, September 10, 2018
Where to do the Synchronisation?
While designing a new class/function there are some thoughts to do.
- Could it be useful to others?
- Could I use it in other Apps?
- Could it be useful to have it as TWhatever<T>?
So if one of 1-3 is true - I have a new class/function in one FDK-Unit or perhaps a new Unit at all.
The next thing is: Where would I like to execute this stuff - Main-thread or Background? If the answer is Background the next question is how! With existing threads or a new one? Should the User just place it into a TTask.Run?
Threading is a big part of the FDK and there are 14 Units at the moment dealing with threading. Some of them using a basic thread implementation from another unit, some implementing their own Threads because of special needs.
So for this blog post lets assume background operation, but every background execution has some point of the interface into the Main-Thread. And here comes the question:
Where to do the synchronization?
Let's have a little example:
Procedure Button1Click(Sender : TObject)
var
LMemoText : String;
begin
Button1.Enabled := false;
TAsync
{} .Await( Procedure
begin
LMemoText := THTTPRead.URL(SomeURL);
end )
{} .Execute( Procedure
begin
Memo1.Lines.Text := LMemoText;
Button1.Enabled := true;
end );
end;
So the Await procedure is running in a thread, that's why I set a string and not directly the memo. The Execute procedure is called in MainThread to handle UI-Stuff. So the synchronization is handled internally. It could be different... But this is the common usage of this TAsync. I Could write it so:
Procedure Button1Click(Sender : TObject)
begin
Button1.Enabled := false;
Button1.Enabled := false;
TAsync
{} .Await( Procedure
var
LMemoText : String;
begin
LMemoText := THTTPRead.URL(SomeURL);
TThread.Queue(NIL,Procedure
begin
Memo1.Lines.Text := LMemoText;
end);
end )
{} .Execute( Procedure
begin
Button1.Enabled := true;
end );
end;
But in this example the synchronization is done twice...
Back to the question: Is the internal synchronization of the Execute part a good idea? In the example I think yes.
Sometimes internal synchronization could be a bad idea especially if TThread.Synchronize is used and not Queue but in the next example even Queue did not help, and here is the reason:
Normally I would do any HTTP related things with a callback, but for this example I like to show a Modal-Call of an Async function, just for Demonstration.
Normally I would do any HTTP related things with a callback, but for this example I like to show a Modal-Call of an Async function, just for Demonstration.
Procedure THTTPRead.URL(Const AURL : String) : String;
var
LEvent : TEvent;
LResult : String;
begin
LEvent := TEvent.Create(NIL,true,false,'');
try
THTTPTAsync.URL(AURL, Procedure (Const AResult : String)
begin
LResult := AResult;
LEvent.SetEvent;
end);
LEvent.Wait;
finally
LEvent.Free;
end;
Result := LResult;
end;
Don't do this ;-) but if, then hope that the Result procedure is not called in a TThread.Queue, because this would be a dead-lock. If you have a Threaded or Async Class/Function use it always as it was designed for.
On the other hand, I hate to put in a TThread.Queue in every Call-Back that's why I often design an optional parameter.
THTTPTAsync.URL(AURL, Procedure (Const AResult : String)
begin
_Result := AResult;
LEvent.SetEvent;
end,false); // false = no sync
For better code reading perhaps rename the call like
THTTPTAsync.URL_NoSync(AURL, Procedure (Const AResult : String)
begin
// Whatever
end);
or
THTTPTAsync.URL(AURL, Procedure (Const AResult : String)
begin
// Whatever
end,TSync.No); // TSync = (Yes,No);
Honestly, I mostly just use a boolean, but I'll put it on my list for refactoring.
So with this approach, I have the best of both...
Monday, September 3, 2018
App-Development, Cloud-Server and distribution to multi clients!
Cloud-Database.. (And many more...)
OK - It's just a computer at another location - so what is this blog post about?
It's about the next step form my last blogpost: Database and Server synchronization.
It's about the next step form my last blogpost: Database and Server synchronization.
In many conversations with other developers, most of them want to build a mobile app that is kind of an Access Point to the data used by one or more PC-Application(s).
At first - no Form from the Desktop App should be taken into the mobile App!
Designing a mobile App with a "smaller" UI, to achieve some of the basic functionalities that are necessary to handle the data, is not a big deal. If you are new to FMX, it just takes a while.
So how could you overcome the problem of not reinventing the wheel and perhaps reuse the work for the next App, too?
BTW: Thank you for reading my blog… This blogpost is again just for advertising my Firemonkey Development Kit. ;-) (sorry, linked post - is not translated, yet)
Best practice for the development of libraries like my FDK is as always: "Eat Your Own Dog Food".
And I can promise - I eat it every day! It saves me a lot of time and things are always easier.
The next version of the FDK would have some new plugins.
- Simple ORM
Just create a class with some Field-Attributes and you'll get a Database with a Table to store the Fields. (nested Tables are also supported, for multi entries like 1-n Bank accounts or 1-n communication - subtables ) - CRUD IO
You like the easy CREATE / READ / UPDATE / DELETE access of your data. Set some Class-Attributes and use the simple ORM model to build your application.
An Easy SQL-Producer is included. - MVVM 2.5
How to Access the Data? Just bind (in Code) the View to your ViewModel/Model (CRUD->ORM) class and you can easily display the Class from (1) on your View. - All your Events - PropertyChanged - are auto-connected with one line of code. You can multi-connect data to 1-n UI-Fields. Data->View, View-Data and Bidirectional, with optional converter functions. There is no need for a special UI-Component and there is nothing to drop onto your form. As described in this post.
- Async Await
Perhaps you know Async Await from C# - I have a "lite" Version for UI/Async/Threading tasks included. - Async Threading Command Queue
The Threaded-Command Queue is for SQLite/Embedded Databases that can only handle one Thread/Connection at the time. Define your Data-Access-needs and just call them by Name. The Queue will handle all your calls one after another - or if you have some important stuff to do, you can call it prioritized. - JSONStore-Server
A "just use it" Unit to store every data you like in JSON Format on your server database. - REST-JSONStore-Client
To handle the JSONStore Server-Side you get the Units to handle all transfers/updates/locking/rebuild features to do your data-exchange with the Server or/and multi Clients. Of course, this module has the Async Threading Commands for the module (6) included doing everything in the background.
So what is the deal? My goal for mobile App creation was:
Create your UI - create your Classes - just set some Bindings and Field-Attributes. Nothing to drop on your form and nothing to set in the object-inspector!
Just write some uses and have fun...
Saturday, August 18, 2018
Database and Serversyncronisation
As a developer I would like to program fancy stuff, but in 90% of my time I only transfer Data from here to there...
Edit -> Memory -> JSON -> REST -> JSON -> Query -> Database.
or
Database -> Memory -> Form -> Memory -> Database.
Collect data here, combined with data from there, ask the user and write it back.
Sometimes
Client 1 : Form -> Database -> JSON/REST -> Server -> Database;
Client 2 : Server -> JSON/REST -> Client -> Database.
Comparing problems on a single non Server App against a Multi-Client-, Multi-Server-Environment you can find pitfalls on many procedures.
With all the mobile devices you normally have more the one location of your data and if you provide a mobile solution to your desktop application, the user expects a synchronization over the "cloud".
I've always developed it again and again for every new App, but why?
My cloud store is using the same database structure as the desktop and the device database was often nearly the same. So to store the data into the Server database I had to develop it each time.
For my application there is no need for a web interface, so the server must not have access to the actual data.
So finally I've developed a Class/ORM/CRUD/Cloud store interface that can be used by all of my (FDK) Applications. Both interfaces for Client and Server are in the next FDK-Plugin. so stay tuned.
So next time more fancy stuff and less hassle with the data.
Edit -> Memory -> JSON -> REST -> JSON -> Query -> Database.
or
Database -> Memory -> Form -> Memory -> Database.
Collect data here, combined with data from there, ask the user and write it back.
Sometimes
Client 1 : Form -> Database -> JSON/REST -> Server -> Database;
Client 2 : Server -> JSON/REST -> Client -> Database.
Comparing problems on a single non Server App against a Multi-Client-, Multi-Server-Environment you can find pitfalls on many procedures.
With all the mobile devices you normally have more the one location of your data and if you provide a mobile solution to your desktop application, the user expects a synchronization over the "cloud".
I've always developed it again and again for every new App, but why?
My cloud store is using the same database structure as the desktop and the device database was often nearly the same. So to store the data into the Server database I had to develop it each time.
For my application there is no need for a web interface, so the server must not have access to the actual data.
So finally I've developed a Class/ORM/CRUD/Cloud store interface that can be used by all of my (FDK) Applications. Both interfaces for Client and Server are in the next FDK-Plugin. so stay tuned.
So next time more fancy stuff and less hassle with the data.
Wednesday, July 18, 2018
Delphi & C++ Builder Community Editions are online...
For many years a Community Edition was missing…
Now it is out:
Registration and download:
For the moment you could not install both in one VM.
Info from embarcadero.com:
Info from embarcadero.com:
Embarcadero® Delphi 10.2 Tokyo Community Edition is a great way to get started building high-performance Delphi apps for Windows, mac OS, iOS, and Android. Delphi Community Edition includes a streamlined IDE, code editor, integrated debugger, two-way visual designers to speed development, hundreds of visual components, and a limited commercial use license.
To learn more about Delphi Community Edition Click here
Friday, July 6, 2018
IIS an Plugin-loading
The Loadlibrary Problem!
Since many many years I do all my Web stuff with ISAPI.DLL's on one of my Windows Server. Starting with the support of ASP.NET in Delphi I use only ASPX and background code for the Webdesign. (Only one project I've done with VCL for the Web.)
The benefit with ASP.NET was, that you do not have to restart the IIS to change the code behind.
There was an ISAPI Loader from egg-Soft that was able to update the working DLL on the fly if you upload your dll as name.upd - works great for many years.
After updating the server to 2008 R2 this loader did not work anymore… So every time I had a new version of my DLL's I had to stop and restart the IIS. Normally a 1-second interruption, if your IIS is only handling local stuff or just producing websites.
But for 5 years I have a web service for my customer running, that depends on an external service. The service sometimes takes some time and I have many requests. So stopping and restarting the IIS take 5-25 seconds and that is bad for my customer. Every development took place only at night.
Inspired by the EMBT Rad-Server project I want to build my own Service (perhaps as part of my FDK)
Project/New/ISAP.DLL but this time with loadable and unloadable plugins. My idea was - I provide you with the hard stuff and you only have to write your business code.
The FRS - Firemonkey REST - Server was born.
Or Fast-Remote-Service? Because in some parts the Firemonkey part in FDK is wrong, because you could use it in VCL, too - I do not have finally considered the Name.
A working demo was done in one day (2016) - LOCAL - but my first try on a real server - nothing. No plugin could be loaded, only the root admin things are running. No idea where to look. But as always: While starting a new project - there was no time for digging into this problem.
Sometimes before I build a new ISAPI.DLL I'll try some Ideas (2017), but after a few tries I build a new ISAPI.DLL with copy/paste from the last one.
But not this time. (2018) After some chatting with MVP Andrea Magni (MARS-Curiosity) and after some logging - I found the problem. Loadlibrary did not come back and crashes the AppPool. No Idea. Andrea provided me a Link. DLLMain - What? I have no DLLMain so I did not see the hint at the first read.
The hint was: do not call Loadlibrary in the Main-Thread. From my point of view every ISAPI.DLL is loaded by the IIS and with every request the IIS creates one thread of it.. So never in the Main-Thread.
After a few tries with LoadLibraryEx - I tried to compile my DLL's in 64Bit so this WOW thing is not necessary. LoadlibraryEx worked but no handle or a handle but nur GetProcAddress.
After some googling for a new version of the Egg-Loader I came back to the Best-Practices Link and finally found "Call LoadLibrary or LoadLibraryEx (either directly or indirectly). This can cause a deadlock or a crash." OK - This is the problem - and perhaps the same for the old egg-loader - and now?
Don't do this and don't do that - but how to load a DLL?
You remember : NOT IN THE MAIN THREAD!
After a simple TTask.Run() around my Plugin-Loader everything works fine. Perhaps I will create a normal thread for this task. But for the moment it's working (that are the good news) - the bad news are: Now I'm able to build all that stuff that is on my wish-list and I have no excuse not to do it) ;-)
But as always - not enough time.
Monday, June 25, 2018
German CodeRage 2018
Nur eine kurze Erinnerung: CodeRage 2018 am 26.06.18.
Meine Session ist 18:00 Uhr - 18:45 Uhr
Fluiddesign und andere Techniken um sich den Programmieralltag zu erleichtern.
Ab 18:45 Uhr bin ich für FAQ's online!
Hier der Youtube-Link.
Meine Session ist 18:00 Uhr - 18:45 Uhr
Fluiddesign und andere Techniken um sich den Programmieralltag zu erleichtern.
Ab 18:45 Uhr bin ich für FAQ's online!
Hier der Youtube-Link.
Sunday, May 20, 2018
Formatting Sourcecode
Formatting Delphi/Pascal Sourcecode is an interesting topic.
You disagree?
Take 10 developers and let them all hand-formatter some sample source-codes and you will get 10 different results.
You disagree?
Most developers have developed their own style in formatting source code because they are working alone and nobody else would see the code. Perhaps you are new to Delphi and used another programming language for many years. I can not remember what Delphi version was this first with an included formatter CTRL+D. Perhaps before that, you are using an IDE plugin or external program.
If you are working alone - do whatever you like with your source-code, but if you have to work together with other developers in a team - it's time to think about "your" formatting.
Some developers like many empty lines and indent nearly everything or want to have a description with a Date, Name, and Copyright over every method. Other developers hate empty lines and only ident one space.
Perhaps you have the "begin" at the end of the line and the "end" at the first position like:
if A > B then begin
foo(42);
end;
But since the IDE has Castalia or perhaps you are using a third-party-tool you got the funny colored helper-lines to show the corresponding begin-end's, it is better that begin-end has the same ident.
Is there a right way to format your source-code? You may have the standpoint - only the default formatter-settings are the right way.
Keep in mind - if you are writing a program, you will read more source code then you write or in other words writing source code is not the trick, writing source code that could be read easily and by other developers too, is the goal.
Of course, the formatting is just the start, the next topics are caps, spaces and naming. There are so many rules out in the field.
Class fields have an "F" at the beginning, parameters an "A", local var's an "L". Perhaps you like to mix your local language with English (better not). Are you rename all your visual controls?
Label1 -> lbName
Edit1 -> edName
Edit1 -> edName
Edit1 -> NameEdit
Do you like long var-names "Name_of_the_person" ( hope not with "_" )
So where to start?
In the next day's I will try to introduce some of these rules to a team of four very different developers. Let's see if I can create a set of rules that everyone can live with.
But that will eventually be a topic for another blog post.
Thursday, April 26, 2018
MVVM 2.0 - I did it my way.
If you like, you can compare this with one of my older posts from 2016: MVVM - Or what I think MVVM is. (Translated)
Why MVVM?
- Because it’s cool and I’m a geek
- to show – I’m better than other developers
- so nobody else could maintain the code
no – perhaps – NO!!! Just joking!
Because we like to
- separate forms from code
- to get better maintainable code
- have less-hardcoded dependencies
- to be able to test the business logic
- to test the workflow
Sure? Are you writing tests? If not – stop reading…
But perhaps you like to develop code you can use again in other applications…
Ask 10 developers to explain MVVM – at first; you will get a picture from dotnetpattern.com, msdn.microsoft.com or wikipedia.org, then everybody tells you: “This is the pattern and “so” it has to be implemented”
OT: Like many other patterns… You have to follow the rules of these 4 guys and the book from 1994! More than 500.000 copies of the book have been sold – not so bad at all…
Back to MVVM - If you ask for the details, you will get 10 ideas on how to implement it.
But… We are Delphi developer – why should we try to implement things as Microsoft did in .net? Because this is the right way?
Let us dive into:
The core elements are View, ViewModel, and Model. In the beginning, you could trade a TForm as the View, but this is not the same. A TFrom could be the container for many views at the same time. For the moment, we say TForm = View – the key things of MVVM are the bindings or better, the communication from ViewModel to View and back. (And perhaps to the Model)
If we follow the rules – the view should have no logic, the ViewModel is responsible for handling the view-logic and converting the data to the View and the Model contains the data. (hope this is right) I never took this approach.
Our view is not a stupid XML-only-description of visual controls. Our controls always have their own logic, we have styles and animations, able to do onMouseover/down/up things. Trigger doing fancy stuff.
The Model is dealing with the data and the Database, too? I don’t think so. What is a database?
Neither my ViewModel nor my Model knows what a database is. The Models get an interface to store or load data – without knowing where it ends.
How does communication work?
The Model changes some data and now the ViewModel wants to inform the View or perhaps all Views, about this change.
At first, we need a Multicast event to inform more than one View about the new data. So every view has to sign in for the event. Now the ViewModel could send a PropertyChanged Event like:
PropertyChanged(PersonNameProperty);
Every view – that is able to show the change, gets the Event and could ask the ViewModels Property PersonName.
What?
PersonNameProperty is defined as:
Const PersonNameProperty : String = 'PersonName';
Use Consts and no magic String so we always have the right typo. OK…That is good, but:
In the View, we end up in a
procedure PropertyChanged ( Const APropertyChanged : String);
Comparing with many If then else constructions (first bad thing) and because we have a const in the ViewModel, the reference is not the same so the string-compare must compare all chars. (second bad thing).
If we have a huge view (yes we could perhaps split it) we and up with a too-long comparing procedure.
Since Windows 3.1 - in the early days – Messages are sent with the content or at least with a pointer to the content.
So why are we just sending change “hints”? This is like sending an SMS – I have news call me back, instead of “I will be late, arriving at 8pm”.
Sending Strings is good for testing. Eg: A property change of PersonName := 'NewName'; should fire 'PersonName' – I tried Const ID’s like Const idPersonName : Integer = 42; Not so good for testing but you can use a case at the View.
I don’t like to repeat on every Property:
begin
if FPersonName <> AValue then
begin
FPersonName := AValue;
PropertyChanged(PersonNameProperty);
end;
end;
Same in every setter.
Then to the View:
if APropertyChanged = TPersonViewModel.PersonNameProperty then
PersonName.Text := FViewModel.PersonName;
I first implement the MVVM Pattern the MS-way, but if you think – “Too much writing” or “I did not test my code” – you are right and of course, debugging is not so easy, too…
In fact, development time takes a bit longer. This extra time cut’s down my Test-writing-Time… (Bad thing three), because I love TDD.
We have attributes and the RTTI!
It is faster if you could use the same Model or perhaps the ViewModel in another project, but that is another story.
These problems lead me to “my way” MVVM 2.0…
We have attributes and the RTTI!
I think: The best way to use a pattern is if the pattern is not so far from your normal workflow.
I like to design my Forms and so my Views as Forms, too – Frames are bad and often lead to problems with the IDE. So SubViews are Forms with a TLayout-Container that parent is mapped to the target-parent at runtime.
My new workflow is:
- Create a Form/View
- Change Class(TFrom) to Class (TMVVMForm) / or Frame for SubViews
- Put attributes at FormControls like [ViewModelLink] PersonName : TEdit;
- Create Procedures with attributes like [PropertyChange]Procedure PersonNameChanged(Const AValue : String);
- Register the Form at the ViewLocator with the necessary ViewModel
- That’s it.
In your NavigationService you could get the View from the ViewLocator for a given ViewModel and an optional Name. On Creation the View connects all bindings and propertyChanges.
You like to change Names? All attributes take optional name parameters. For:
[ViewModelLink(TPersonViewModel.PersonNameProperty]
Edit1: TEdit; // Better rename this!
Now to the ViewModel:
- Create a class TPersonViewModel = Class(TRootViewModel)
I don’t like ViewModelBase as Name – it sounds like a database for ViewModels…
All my DBClasses ends with Base – PersonBase not DBPerson! - Define your private Fields as
FPersonName : autochange<string> // FPersonName : String - Property PersonName : String : read GetPersonName write SetPersonName;
- Procedure SetPersonName(Const AValue : String);
begin // Auto-PropertyChanged if different.
FPersonName.Value := AValue;
end; - That’s it.
Most of the stupid code writing is not necessary anymore and done in the background over the RTTI.
Of course, this is only a small part of this pattern, but now I can point my focus on the more advanced parts.
You like this approach? – Please leave a comment – if not…;-)
Wednesday, March 14, 2018
Neural Network
Neural Network or Neuronal Network... Whatever...
For many years I want to test this kind of programming... But never had time for this.
You can find many videos on YouTube, but "all" are full of math or full of the wrong programming language. ( or both )
You can find some source files, but what is the minimum of LOC's you need?
For now: Less the 300 LOC in Delphi for a working network.
At the moment I have many ideas about what I can do with this... But perhaps first dig into the next step:
Genetic algorithm.
I will include this in the FDK, if ready...
Best video I found:
https://youtu.be/-zT1Zi_ukSk (C#)
https://youtu.be/KkwX7FkLfug
This, I take to just live to code this - with many modifications - in Delphi - a little bit of debugging and it works. ( not much longer than it takes to look the video)
Tuesday, February 20, 2018
FDK XE8 - 10.2
Hello!
I've already found the time to compile my FDK for XE8 up to 10.2.2!
I finally found the F2018 error so XE8 and Seattle are working again.
So starting at this point I'll prepare the next update.
I've already found the time to compile my FDK for XE8 up to 10.2.2!
I finally found the F2018 error so XE8 and Seattle are working again.
So starting at this point I'll prepare the next update.
Subscribe to:
Posts (Atom)
