julkas
Members-
Content Count
44 -
Joined
-
Last visited
Community Reputation
12 GoodRecent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
v0.5.1 is out.
-
Delphi 10.3 Community Edition $ dcc32 --version dcc (Embarcadero Delphi for Windows) 33.0 Embarcadero Delphi for Win32 compiler version 33.0 Copyright (c) 1983,2018 Embarcadero Technologies, Inc. $ dcc64 --version dcc (Embarcadero Delphi for Windows) 33.0 Embarcadero Delphi for Win64 compiler version 33.0 Copyright (c) 1983,2018 Embarcadero Technologies, Inc.
-
Opinions about Pascal vs C/C++ IDE
julkas replied to TimCruise's topic in Tips / Blogs / Tutorials / Videos
If it is for learning - try Pascal.- 39 replies
-
- programming hardware
- rad studio
-
(and 1 more)
Tagged with:
-
Opinions about Pascal vs C/C++ IDE
julkas replied to TimCruise's topic in Tips / Blogs / Tutorials / Videos
Difficult question. Revise your project requirements. Don't forget CI, maintenance, community support, open source ... C or Pascal, front-end or back-end, firmware or UI, storage? Can you give more info about project?- 39 replies
-
- programming hardware
- rad studio
-
(and 1 more)
Tagged with:
-
For web reporting I use Tibco. Good option - Apache SuperSet.
-
UPDATE mytable SET DOCNO = CAST(CONCAT('21', DOCNO) AS INT)
-
Try recommendation-for-compressing-jpg-files-with-imagemagick
-
May be - kolmck
-
Fast lookup tables - TArray.BinarySearch vs Dictionary vs binary search
julkas replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
FPC benchmarks -
Fast lookup tables - TArray.BinarySearch vs Dictionary vs binary search
julkas replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
Take a look - LGenerics -
Fast lookup tables - TArray.BinarySearch vs Dictionary vs binary search
julkas replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
There is no ready to use Pascal implementation 😞 . You can start / take ideas from existing C++ & Java code and create good (without remove/delete 😞) ordered set or order statistics set (array bisection algorithm may be helpful) Object Pascal class. -
Fast lookup tables - TArray.BinarySearch vs Dictionary vs binary search
julkas replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
Take a look - Binary Array Set. Rare, but very useful data structure. -
Good quality Random number generator implementation
julkas replied to Tommi Prami's topic in Algorithms, Data Structures and Class Design
OK, it depends. Anyway, I suggest - xoshiro / xoroshiro generators Or 🙂 start with simple SplitMix64 Efficiently Generating a Number in a Range -
Why Record pointer is not allowed as function parameter and return?
julkas replied to wuwuxin's topic in RTL and Delphi Object Pascal
For parameters you can use const or var qualifiers (option - declare absolute). For return - use generic pointer. See - Parameters Pascal is a strongly typed. :-). https://ideone.com/5r1Uqf -
Request advice on inplementation Modbus-RTU in Tokyo
julkas replied to Dphvw's topic in General Help
See - https://github.com/kandiral/Kandiral/tree/master/Automation Check also - http://www.pascalscada.com/ (I don't know about Delphi support).