adem0x
adem0x
cities.json inclues a lot of string values that have unescaped forward slashes ('/'). According to https://www.json.org/json-en.html , these are the characters than must be escaped; and forward slash ('/') is...
I am not going to claim to understand DPQS (DualPivotQuicksort) algorihm nor the implementation. All I did was to convert the generic parts to straight forward Cardinal types --so that...
in unit 'pascalscada.protocols.customprotocol.pas' ``` procedure TpSCADACustomProtocol.TagScanTick; var list: TpSCADAThreadTagAddressInfoList.TpSCADAGenericThreadListType; i: Integer; begin if Assigned(FTagList) then begin list:=FTagList.LockList; try {irrelevant code} finally FTagList.LockList; {
I am trying to get PascalSCADA to compile with both D7 and Tokyo. Except for the HMI stuff, I have managed the rest to compile. While doing that, Tokyo highlighted...
I went through PUCU.pas as carefully as I could, but I couldn't find an answer to changing case (i.e. upper/lower/title) of a codepoint based on language. Let me try to...