-
Content Count
597 -
Joined
-
Last visited
-
Days Won
38
Vincent Parrett last won the day on September 24
Vincent Parrett had the most liked content!
Community Reputation
586 ExcellentTechnical Information
-
Delphi-Version
Delphi XE7
Recent Profile Visitors
-
I looked at sgcWebSockets today - but the price is really steep - I don't need the rest of the library but http/2 is only in the most expensive version - and then I need to get gprc working on top of that. I'm actually leaning towards doing this project in c# (the server is already c#) - testing with .net 8.0 AOT compilation so far produced a 4.5MB exe (+ a 12MB dll for google protocol buffers). Obviously it will be larger than that once done. As much as I want to use delphi for this project - the libraries are just not there - contrast to dotnet - grpc is a first class citizen (and the performance is impressive). I was able to get up and running in less than 10 minutes - contrast that to having spent most of today looking for a delphi grpc client that works.
-
I've been looking at that - since the DelphiGRPC makes use of it. Down the rabbit hole I go..
-
Can anyone recommend a GRPC client library for delphi. I have had a quick look around and only found a 1 open source lib - https://github.com/ultraware/DelphiGrpc (no updates in 5 yrs), and nsoftware (which I will not buy as no source available). Any others I have missed (open source or commercial with source code).
-
How to attach a DigiCert Token certificate to exeutable
Vincent Parrett replied to Bart Kindt's topic in Delphi IDE and APIs
In the context of code signing, where do you get a pfx these days? the only certificates being issued are on tokens or HSM's, neither of which allow exporting the private key. We can debate the merits of the decisions taken with regards to the future of code signing but the reality is what we have in front of us right now... and that is what people are struggling with. -
How to attach a DigiCert Token certificate to exeutable
Vincent Parrett replied to Bart Kindt's topic in Delphi IDE and APIs
No, you only need to do that if the machine you are signing on is different to the one where the usb token is installed. pfx files are a thing of the past (except for self signed certificates), so forget about that bit. Do not expect the IDE to support code signing with tokens. You need to understand how to call signtool.exe You could perhaps setup a post buld event for your project to do the signing - but bear in mind signing takes time so only add it to the release config. Alternatively - (vendor plug) - use FinalBuilder to generate your release builds - in which case code signing is pretty easy. -
How to attach a DigiCert Token certificate to exeutable
Vincent Parrett replied to Bart Kindt's topic in Delphi IDE and APIs
https://www.finalbuilder.com/resources/blogs/code-signing-with-usb-tokens -
ANN: 50% off FinalBuilder, Continua CI and Automise
Vincent Parrett posted a topic in Delphi Third-Party
Black Friday Sale - 50% off FinalBuilder, Continua CI and Automise - until midnight Tues 28th UTC FinalBuilder - create your build process with an easy to use GUI - debug the build on your desktop, run on your desktop or CI server https://www.finalbuilder.com/finalbuilder Continua CI - an affordable, scalable and easy to use Continuous Integration Server. https://www.finalbuilder.com/continua-ci Automise - windows automation for power users and system administrators https://www.finalbuilder.com/automise No discount code required, just add to the cart and the discount will be automatically applied.-
- sale
- finalbuilder
-
(and 1 more)
Tagged with:
-
MAP2PDB - Profiling with VTune
Vincent Parrett replied to Anders Melander's topic in Delphi Third-Party
This is awesome, embarcadero have no excuse for poor performance now! 🤣Nice one As someone who uses runtime packages (due to the plug architecture of my application) - this is a god send - I have profiled the crap out of my code, found a lot of small improvements and a couple of large ones - but quite often the profiler shows the majority of the per ends up somewhere inside the RTL - this will allow me to do another round of profiling. The only down side is I have an amd cpu, and uProf is nowhere near as good as VTune (although both suck when it comes to UI/UX). -
Script Errors galore when launching Delphi
Vincent Parrett replied to instrumentally's topic in Delphi IDE and APIs
I can reproduce this here (only tested with berlin). -
Call for Delphi 12 Support in OpenSource projects.
Vincent Parrett replied to Tommi Prami's topic in Delphi Third-Party
FWIW, all my open source delphi projects at https://github.com/VSoftTechnologies/ support Delphi 12. -
Library for modifying windows PE files?
Vincent Parrett replied to Vincent Parrett's topic in General Help
Interesting, license is "as is" - so does that overrider the gpl of the other project - it doesn't appear to be any attribution of the original project - kinda disingenuous to misrepresent another's work as your own and then apply a GPL license to it 💁♂️ -
Library for modifying windows PE files?
Vincent Parrett replied to Vincent Parrett's topic in General Help
Yes thanks, I have seen this (and learned from it). I'm looking into building a remote signing tool - so that I can sign from multiple machines without needing the token drivers installed - right now we have to run all code signing on a single build agent that has access to the token - it's caused us a lot of work splitting out the code signing on all our build processes - which results in longer build times as we move files between agents and the server - ie agentX builds, sends artifacts back to server, server sends them to agent5 (the one that can sign), agent 5 signs them and sends them back to the server, which then sends them to agentX to continue the build process (pacakging and deployment etc). All very unsatisfactory. I haven't been able to work on it for a few weeks as other more urgent tasks popped up (like replacing confluence) but hope to get back to it soon. -
Library for modifying windows PE files?
Vincent Parrett replied to Vincent Parrett's topic in General Help
Yes seems so, I saw that and decided against using it. -
Library for modifying windows PE files?
Vincent Parrett replied to Vincent Parrett's topic in General Help
Thanks, hadn't seen this one. -
Library for modifying windows PE files?
Vincent Parrett replied to Vincent Parrett's topic in General Help
Actually this is really useful - I've been working from some C based examples - I do actually need to add another section so this is is exactly what I need thanks.