-
Content Count
3586 -
Joined
-
Last visited
-
Days Won
176
Everything posted by David Heffernan
-
What is this syntax?
David Heffernan replied to A.M. Hoornweg's topic in RTL and Delphi Object Pascal
This is interop. -
What is this syntax?
David Heffernan replied to A.M. Hoornweg's topic in RTL and Delphi Object Pascal
Explicit ordinal values tends to be used for interop with external libs. It's rarely useful for pure delphi code. -
StrToFloat () all combinations of decimal separator and lang. settings
David Heffernan replied to bernhard_LA's topic in Algorithms, Data Structures and Class Design
Well, not really. Certainly in my experience when dealing with floating point data, you can just mandate that it doesn't have thousand separators. Perhaps if you are dealing with currency then you'd need to handle thousand separators but for other data it's not necessary. -
StrToFloat () all combinations of decimal separator and lang. settings
David Heffernan replied to bernhard_LA's topic in Algorithms, Data Structures and Class Design
Try passing such a string to StrToFloat and see how it works out for you. -
StrToFloat () all combinations of decimal separator and lang. settings
David Heffernan replied to bernhard_LA's topic in Algorithms, Data Structures and Class Design
So far as I am aware, routines for conversion from string to float do not accept strings with thousand seps so this is just not an issue. -
Memory footprint. InstanceSize is just the instance and not the dynamically allocated data it owns.
-
If you are going to cache them, cache the jpeg stream rather than the decoded image. Then decode the image on demand with LoadFromStream.
-
Isn't it just a REST API? Like so many others? I don't understand why there would need to be anything delphi specific.
-
StrToFloat () all combinations of decimal separator and lang. settings
David Heffernan replied to bernhard_LA's topic in Algorithms, Data Structures and Class Design
That's probably not true. I think I dtoa accepts both, or if not then I modified it. Since I'm in control of the conversion code thats the right way. -
StrToFloat () all combinations of decimal separator and lang. settings
David Heffernan replied to bernhard_LA's topic in Algorithms, Data Structures and Class Design
Yeah I don't do a heap allocation. I use a local fixed length array. -
StrToFloat () all combinations of decimal separator and lang. settings
David Heffernan replied to bernhard_LA's topic in Algorithms, Data Structures and Class Design
I prefer to replace dot or comma with the locale's decimal sep and then use StrToFloat. Although in reality I don't use the Emba conversion functions because they are defective, i.e. not accurate. -
It depends on the locale rather than the os
-
Looks like it. Submit a bug report.
-
EurekaLog vs MadExcept vs manual
David Heffernan replied to Tom F's topic in RTL and Delphi Object Pascal
Subtract $00401000 from the address and look it up in your detailed map file. But yeah, get madExcept or EurekaLog. -
You are concentrating on the time zone, but that's not your issue at all. When you get time from somewhere, you will be able to convert to UTC because you will know the time zone associated with the time. Your problem seems to be that you want to use an authorative time source. You should do research on that rather than worrying about time zone conversion.
-
What source do you want to use for the time, given that you've ruled out the local computer?
-
Can somebody help me to translate a short Delphi console app to C++ Builder?
David Heffernan replied to TurboMagic's topic in General Help
"I need to have XXX translated to YYY" seems a little abrupt to me. -
Can somebody help me to translate a short Delphi console app to C++ Builder?
David Heffernan replied to TurboMagic's topic in General Help
What pay rate are you offering? -
Log the floating point control word and see if it is the same in the two programs.
-
Use a list view. Part of problem solving is exploring the problem space and finding the best solution, given the pros and cons of all possible options. Deciding on the solution first and then trying to force it to work is not the way to solve problems.
-
Refactoring Enum to string using enum helpers
David Heffernan replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
Nothing fundamentally wrong with your option 1, so long as that is the single place where those string literals are written. The array does have the useful benefit of leading to helpful compiler error when enums extended, as discussed. But yeah, none of these options is especially terrible. I'd actually rate option 2 as the worst. -
Refactoring Enum to string using enum helpers
David Heffernan replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
What's your definition of magic string? -
Refactoring Enum to string using enum helpers
David Heffernan replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
Speed isn't the issue. The mistake that you make again and again. Maintainability is the only concern here. -
Const Records and Class/Property Attributes (decoration)
David Heffernan replied to mvanrijnen's topic in Algorithms, Data Structures and Class Design
So, the answer is a definitive no. Yeah, you are right, I just assumed that typed constants would be placed in read only memory, as they are in other tool chains. Oh well. -
Const Records and Class/Property Attributes (decoration)
David Heffernan replied to mvanrijnen's topic in Algorithms, Data Structures and Class Design
Aren't they placed in read only memory?