-
Content Count
3481 -
Joined
-
Last visited
-
Days Won
114
Everything posted by Lars Fosdal
-
Internationalized Domain Names (IDN)
Lars Fosdal replied to Angus Robertson's topic in ICS - Internet Component Suite
This one redirects: http://welcometothe.中国 -
Internationalized Domain Names (IDN)
Lars Fosdal replied to Angus Robertson's topic in ICS - Internet Component Suite
I see many Norwegian sites simply do a redirect on the IDN URL to a non-IDN version of it. As for Chinese - here is a slew: https://www.101domain.com/chinese-simplified_idn_domains.htm Edit: Err... where you can register a slew -
Hmm... Wasn't these installer modules - i.e. .msm files? What about PowerShell> Get-ChildItem 'c:\program files (x86)\' -include BDE*.ms* -Recurse
-
I can't find anything BDE but those Delphi version specific variants of the one you mention in my registered user downloads. Have you tried crawling all of your disk for BDE*.msi ? PowerShell> Get-ChildItem c:\ -include *.msi -Recurse I suspect adapting to FireDAC may actually be easier than fighting with the ancient BDE.
-
Skipping the UTF-8 BOM with TMemIniFile in Delphi 2007
Lars Fosdal replied to dummzeuch's topic in Tips / Blogs / Tutorials / Videos
I try to ensure that all my text files have a BOM and are encoded as UTF-8. -
language updates in 10.4?
Lars Fosdal replied to David Schwartz's topic in RTL and Delphi Object Pascal
Optimism is underappreciated. 🖖 -
language updates in 10.4?
Lars Fosdal replied to David Schwartz's topic in RTL and Delphi Object Pascal
No feature freeze until Delphi Antarctica -
Address and port are already in use error after TIdHttp.Get
Lars Fosdal replied to eivindbakkestuen's topic in Indy
Do you have the http.request.connection set to 'keep-alive'? I've seen posts that indicate that it will prevent dropping the port. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Keep-Alive - There are options to limit the life time / number of uses. Is the TIdHttp properly disposed of? Did you try something like TCPView (https://docs.microsoft.com/en-us/sysinternals/downloads/tcpview) to find out what holds the endpoints? -
language updates in 10.4?
Lars Fosdal replied to David Schwartz's topic in RTL and Delphi Object Pascal
I am really looking forward to nullable base types. Variants sort of work, but you have to write a lot of checking code that could be made less complex with nullables + operators + validation. Some food for thought here: https://developers.redhat.com/blog/2020/03/05/c-8-nullable-reference-types/ -
Array size increase with generics
Lars Fosdal replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
I wish there was a way to have the Json engine recognize the T in TObjectList<T> from the RTTI. That would have saved us a ton of scaffolding code. -
Internationalized Domain Names (IDN)
Lars Fosdal replied to Angus Robertson's topic in ICS - Internet Component Suite
https://strøm.no/ i.e. https://xn--strm-ira.no/ -
Array size increase with generics
Lars Fosdal replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
Nice, Uwe! I missed your reply from Friday! Going to test it out. Is it possible to inject this at the root of a class hierarchy, or is it necessary to inject the attribute per objectlist reference in the descending classes? -
If you have Azure AD, using PowerShell and storing credentials in Azure Vault is a good alternative to passing credentials on the command line.
-
Array size increase with generics
Lars Fosdal replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
There is input in the shape of attributes. I was just disappointed that they didn't go the whole nine yards with TObjectList<T> support in addition to TArray<T>. -
Which delphi version creates 17.3 project files?
Lars Fosdal replied to dummzeuch's topic in Delphi IDE and APIs
What about that renamed Delphi thing? Can't even remember it's name now - App...something. -
10.4 10.4 Beta with Update Subscription
Lars Fosdal replied to ŁukaszDe's topic in Delphi IDE and APIs
I didn't read that as a conclusion, but as defining a goal for testing. More diverse testing = better testing. Naturally, the quality of the bug reports is important. Good description of context: OS, platform, libs, etc Good description of symptom / problem Proper steps to reproduce -
Internationalized Domain Names (IDN)
Lars Fosdal replied to Angus Robertson's topic in ICS - Internet Component Suite
IDN is pretty common in Norway, due to our beloved æ ø and å characters. -
10.4 10.4 Beta with Update Subscription
Lars Fosdal replied to ŁukaszDe's topic in Delphi IDE and APIs
I guess it to a certain degree reduces rumors and opinions on thin foundations - but, yeah... it is an antiquated approach for a public beta. -
10.4 10.4 Beta with Update Subscription
Lars Fosdal replied to ŁukaszDe's topic in Delphi IDE and APIs
Note that even if every update subscriber gets access to the beta, they are still under NDA and may not discuss testing 10.4 Denali in public. -
Array size increase with generics
Lars Fosdal replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
For me, using JSON is a must. The same single JsonRPC server serves Google Glass Java applets, Python clients in VoCollect A500 hip computers, Delphi FireMonkey touch applications under Windows 10, and various APIs to PLCs and third-party autonomous robots from Toshiba, Elettric80 and others. If I can find a viable alternative that allows me to replace the TArray<T>'s with TObjectList<T>, I'll be happy to have a look at it for robustness and speed, but the current solution handles a very large number of transactions daily, and the serializing and deserializing is not something that raises issues. -
Array size increase with generics
Lars Fosdal replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
@Uwe Raabe Both ways. I implemented a generic JsonRPC server and client using this method of JSON serializing/deserializing. The protocol endpoint handler code does not see the raw JSON all, only objects. -
Array size increase with generics
Lars Fosdal replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
Suggestions on how would be appreciated. Apart from the generic list thing - this works so well. -
Array size increase with generics
Lars Fosdal replied to Mike Torrettinni's topic in Algorithms, Data Structures and Class Design
I'd like to do that - but when creating Json with the TJson helpers, the TList<T> creates an unwanted effect. TArray<T>: {"int":0,"list":[{"str":"A"},{"str":"B"},{"str":"C"}]} TObjectList<T>: {"int":0,"list":{"ownsObjects":true,"listHelper":[{"str":"A"},{"str":"B"},{"str":"C"}]}} Ideally, I'd like to use TObjectList<T> - but have the Json look like what a TArray produces. program TArrayVSTList; {$APPTYPE CONSOLE} {$R *.res} uses System.SysUtils, System.Classes, Generics.Defaults, Generics.Collections, Rest.Json; type TObj = class(TObject) private FStr: String; public property Str: String read FStr write FStr; constructor Create(const s: String); virtual; end; TListTest<T:TObj> = class(TObject) type TCont = class(TObjectList<T>); private FInt: Integer; FList: TCont; public property Int: Integer read FInt write FInt; property List: TCont read FList write FList; procedure Add(const s: String); constructor Create; virtual; destructor Destroy; override; end; TArrayTest<T:TObj> = class(TObject) type TContA = TArray<T>; private FInt: Integer; FList: TContA; public property Int: Integer read FInt write FInt; property List: TContA read FList write FList; procedure Add(const s: String); constructor Create; virtual; destructor Destroy; override; end; { TObj } constructor TObj.Create(const s: string); begin str := s; end; { TListTest<T> } procedure TListTest<T>.Add(const s: String); begin FList.Add(TObj.Create(s)); end; constructor TListTest<T>.Create; begin FList := TCont.Create; end; destructor TListTest<T>.Destroy; begin FList.Free; inherited; end; { TArrayTest<T> } procedure TArrayTest<T>.Add(const s: String); begin var len := Length(FList); SetLength(FList, len + 1); FList[len] := T.Create(s); end; constructor TArrayTest<T>.Create; begin // Nothing needs to happen here end; destructor TArrayTest<T>.Destroy; begin for var Element:T in List do Element.Free; SetLength(FList, 0); inherited; end; procedure TestJson; begin var Arr := TArrayTest<TObj>.Create; Arr.Add('A'); Arr.Add('B'); Arr.Add('C'); Writeln(TJson.ObjectToJsonString(Arr, [joIgnoreEmptyStrings, joIgnoreEmptyArrays, joDateIsUTC, joDateFormatISO8601])); var List := TListTest<TObj>.Create; List.Add('A'); List.Add('B'); List.Add('C'); Writeln(TJson.ObjectToJsonString(List, [joIgnoreEmptyStrings, joIgnoreEmptyArrays, joDateIsUTC, joDateFormatISO8601])); end; begin try try TestJson except on E: Exception do Writeln(E.ClassName, ': ', E.Message); end; finally Write('Press Enter: '); Readln; end; end. -
Once. That was enough.
-
Every bloody time I've tried to use the 64-bit debugger, breakpoints stopped working, evals were wrong, stepping stopped working, so in the end, I simply decided it was too soon. I really hope they get it right eventually.