Jump to content

chmichael

Members
  • Content Count

    52
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by chmichael

  1. chmichael

    DNS Query & Lookup Synced

    Where is the blocking function ? Also wouldn't be nice to have a timeout for that ?
  2. chmichael

    DNS Query & Lookup Synced

    Well the TSSLSmtpCli has blocking functions which they work nicely. eg, OpenSync; MailSync;
  3. Hmm, it crashes with i5 750 ....
  4. They fixed ryzen problems with bios updates. I'm running the library (SeaMM & SeaRTL) on my Ryzen 5800 and it's working fine!
  5. chmichael

    Is this project still Alive ?

    eg ... Error 1400 bug
  6. chmichael

    Is this project still Alive ?

    Well a couple reported bugs are making the library unable. Anyway
  7. chmichael

    Is this project still Alive ?

    There some bugs in the github issues list for months
  8. Hello! Do you plan any desktop version of FGX in the future ?
  9. chmichael

    Indy & OpenSSL 1.1.1 & TLS 1.3

    @Remy LebeauI'm also using Indy Openssl 1.1.1 patch to download the upgrades with not problems and it works quite well on very slow connections compared to 1.0.2 The code is there so i guess make a poll for the merge or something ?
  10. Hello Guys & Girls, Since i'm getting bored to wait from Embarcadero to speed up delphi i thought it would be nice for us ("the community") to help out the things a bit. So i started a new project on the GitHub which it will allow us to build the Fastest RTL is possible for Delphi. The targets are: CPU: PASCAL, SSE3, AVX, ARM Operating Systems: Windows, MacOS, Linux, iOS, Android GPU: OpenCL, Vulkan (Just an idea to use GPU to accelerate RTL) (Single & Parallel routines) What do you think ? I hope anyone will start contribute and make Delphi Fastest Again! Thank you Github: https://github.com/chmichael/UltraCode64 Poll for 32 bit: http://www.easypolls.net/poll.html?p=5d24b2c8e4b02fae1dda847d
  11. Well i made him notice you! Post the report on his forums and if it's an Indy bug i'm sure that @Remy Lebeau will help!
  12. cod3r are you sure that it isn't a kbmMW bug that you should report to Kim ?
  13. chmichael

    Small Christmas present: DEC V6.0 released

    Nice! Are these CPU accelerated when it's supported ? Thank you
  14. Hello, How can i Terminate/Kill a Parallel.Async ? example: Parallel.Async( procedure begin // Call a Winapi Blocking API which take 5000 ms to complete end ); Sleep(1000); //WaitFor 1000ms if MyParallelAsync still running kill it! Thank you
  15. chmichael

    Terminate/Kill Parallel Async after timeout

    Hello, Yes i know but i couldn't find any timeout for this API. It's the Winsock.Connect. Do you know how i can use the TerminateThread on Parallel.Async ? Thank you
  16. chmichael

    Thread programming without sleep or WaitFor events

    Take a look at this: https://github.com/winddriver/Delphi-Cross-Socket
  17. Hello, Any ideas why the below code does not send the email: (it doesn't through an exception either) var vSMTP: TSmtpCli; begin vSMTP := TSmtpCli.Create(nil); with vSMTP do begin Host := 'my.mailhost.com'; Username := 'user@mailhost.com'; Password := 'password'; OwnHeaders := True; ContentType := smtpPlainText; CharSet := 'UTF-8'; HdrFrom := 'user@mailhost.com'; HdrTo := 'user@mailhost.com'; HdrSubject := UTF8Encode('Subject'); MailMessage.Text := UTF8Encode('Body'); Connect; while State <> smtpReady do begin ProcessMessages; Sleep(50); end; Mail; FreeAndNil(vSMTP); end; end; Thank you
  18. chmichael

    Delphi 10.3 Update 2 available

    Is it me or there isn't 64-bit macOS target for 10.3.2 Community Edition ?
  19. Yes, but I think that we have some FreePascal developers in here to sort this out. See my answer to Tommi
  20. 1. I already have this in my design plans but it seems i can not host a database on the Github so currently i'll have to use my personal hosting. 2. Thanks! I'll contact him after Benchmark/Validation apps are made.
  21. Well i was on updating the FastCode "RTL replacement" then. Anyhow that is not my point, if you want to be the leader be my guest! My point is that all these years after FastCode nothing else is done and Microsoft has already made .Net Core open source. At least to me it's a start man to motivate your minds! I'll start to work moving the old FastCode code into this new project and on new Benchmark and Validation tools (on my free time), just follow the repository to see updates. That's all i can do for now. Thank you
  22. Poll is clear so i removed the "64" suffix from the repository. If anyone wants to contribute code please let me know! (I'll move the old FastCode code for start) Thank you
  23. I just want to know how many people will spend time on this project so i can focus on the benchmark/validation tools for start. (Since i'm not an assembler expert) IOW, if nobody cares the project will die like the FastCode.
×