-
Content Count
432 -
Joined
-
Last visited
-
Days Won
13
elGringo last won the day on January 6 2020
elGringo had the most liked content!
Community Reputation
48 ExcellentAbout elGringo
-
Rank
Advanced Member
-
elGringo started following GarbageCollector class - what do you think?, UniGui and Spring4d, Hints in Messages on build and 2 others
-
Hi, if i use ServiceLocator from spring4d and need singleton per thread, then where shoud i put my container better - in serverModule or mainModule? I do smth. like this var container: TContainer; begin container := GlobalContainer; container.RegisterInstance<TContainer>(container); container.RegisterType<TServiceLocatorAdapter>.AsSingletonPerThread; container.RegisterType<TTestService>.AsSingletonPerThread; container.Build; end;
-
Hi, on build having hints. Is it my glitch or common? Delphi Sydney UniGUi 1.90.0.1539 All of them from uIndyFolder, so it could be fixed, but anyway it is interesting to me is that trash that should be removed in future? [dcc32 Hint] uIdStackWindows.pas(1428): H2077 Value assigned to 'LAddress' never used [dcc32 Hint] uIdStackWindows.pas(1794): H2077 Value assigned to 'TIdSocketListWindows.GetItem' never used [dcc32 Hint] uIdIOHandler.pas(2590): H2077 Value assigned to 'TIdIOHandler.WriteFile' never used [dcc32 Hint] uIdThread.pas(670): H2443 Inline function 'TList.R
-
Forever Young !) I'm coding on Delphi and enjoy it )))
-
Hi, yes, Desktop Applications directly connected to a DB server. DB used local as usually.
-
Delphi forever young! UniGUI is the best!
-
Hi, everyone. On my work, we have a lot of programs on Delphi. But ! Our government told that we have to move to national software to that is in registry of government to 2021 year. And in this registry only one operational system - Linux. So, we have 2 years to do smth. Could anyone give an advice what variants possible to not to change stack ? We have variant to move everything to .net core and react. So, is any way to solve this in Delphi way ? I found fmx linux framework, so could it be a decision ? Or maybe some server side on Delphi for Linux ? Is smth. interesting in UniGUI roadmap
-
Disappointed with Unigui? There are alternatives coming!
elGringo replied to d.bernaert's topic in General
No! I use UniGUI in my projects. It looks like this is the best Web framework for Delphi. Hope Mr. Farshad will develop it to next years! Regards... -
hi, the answer is )
-
Thnks! Just thought there is the way that shows "SomeUnit, string 157, memoryLeak 120 Kb, TStringList" ))
-
And what about this example? Wrapper for classes, based on ARC ? Looks smart ))) So, you may avoid try... finally... and just Create Use Forget ))) unit uSmartPointer; interface type ISmartPointer<T> = reference to function: T; TSmartPointer<T: class, constructor> = class(TInterfacedObject, ISmartPointer<T>) private FValue: T; function Invoke: T; procedure SetValue(const Value: T); public constructor Create; overload; constructor Create(AValue: T); overload; destructor Destroy; override; function Extract: T; property Value:
-
and besides, my topic start code here gives 2 possibilities -manage code manually as usual, by grouping instances by tag -100 % clear on App Close if you have forgotten to clear smth inside the scope (protection from human factor...) Regards...
-
Another alternative to the class i showed is ARC, but here we should know about weak, unsafe links and raw pointers I'm reading now book Delphi Memory Management for Classic and ARC Compilers...
-
hm... agree with you, just it was start for discussion about the memory management in Delphi. So, could you say how do you look for memory leaks with fastMM - i don't know that for the moment. I use only ReportMemoryLeaksOnShutdown := true; But this approach only says me that there is a memory leak and what is leaking TStringList or etc... But how, for example you find memory leak in special exact place of code? Regards, Stan
-
look at this class unit uGC; interface uses System.Generics.Collections, Rtti, System.Classes; type TGarbageCollector = class(TComponent) public const DEFAULT_TAG = 'DEFAULT_TAG'; private items: TDictionary<TObject, string>; public destructor Destroy; override; constructor Create(AOwner: TComponent); override; function Add<T>(item: T): T; overload; function Add<T>(item: T; const tag: string): T; overload; procedure Collect(const tag: string); end; var GC: TGarbageCollector; implementation uses System.Types, Syste
-
Great ))) We can open museum here ))) But as for seriously, we could be any age, any technology stack, more important is the love of what you are doing and how. On any language we can do good and bad things, popularity will always be changable. Choose yours! When i started this topic, i tried to understand, should i continue with Delphi or switch to C#, as for now, i understand - both of them will always have their lovers) And i have projects on both as for now. Knowledge of different technologies enriches your skills as a programmer. For ex. i love mvc pattern from asp mvc and