Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 11/17/22 in all areas

  1. PingPIng

    Tensorflow without python

    https://github.com/Pigrecos/TensorFlow.Delphi TensorFlow.Delphi provides a Delphi(Pascal)Standard binding for tensorflow It aims to implement the complete Tensorflow API in Delphi which allows Pascal developers to develop, train and deploy Machine Learning models with the Pascal Delphi(porting to free pascal in the future). Note: This is a work-in-progress. please treat it as such.Pull request are welcome
  2. bit Time Professionals s.r.l., a software company based in Rome (IT) with branches in Europe, is looking for 5 Delphi Developers. We have availability for both for contract work or permanent positions. Mandatory qualifications: - In-depth and current knowledge of Delphi (recent versions, at least from Delphi 10 Seattle onwards) - Excellent knowledge of OOP, OOD and design pattern - Knowledge of SQL and interfacing with relational databases - Knowledge in RESTful API design and development - Autonomy and problem solving attitude - Knowledge of Italian and/or English Appreciated optional skills: - DelphiMVCFramework - Python - C# - Javascript/TypeScript - React, Angular, Vuejs or similar Other information: - Work office in Rome (italy) or fully remote - Frequent Internal trainings - Fringe benefit Remuneration commensurate with the experience and knowledge demonstrated during the technical interview. Gross Annual Salary starting from 32K (will be discussed after tech interview) Company website https://www.bittimeprofessionals.com/ Send CV to professionals@bittime.it
  3. Sherlock

    SQL problem

    Everybody cool down please, and don't get personal. Thank you.
  4. David_Lyon

    ANN: Skia4Delphi 4.0.1 compilation error

    Hi, Thank you for your quick reply. Yes, it's Delphi 11.2 Professional. The problem did not occur on a blank project, that was the first thing I tried 😉 I deleted the Win32 and Win64 output folders as you suggested and I could compile successfully! Thanks for your help, awesome project you have there.
  5. Remy Lebeau

    namespace in XML

    Yes. This works for me: procedure TForm1.Button11Click(Sender: TObject); var MyXMLDocument : IXMLDocument; DocElement, FounderNode : IXMLNode; begin MyXMLDocument := NewXMLDocument(); MyXMLDocument.Active := True; DocElement := MyXMLDocument.CreateElement('ab', 'MyString'); MyXMLDocument.DocumentElement := DocElement; // alternatively: // DocElement := MyXMLDocument.AddChild('ab', 'MyString'); DocElement.DeclareNamespace('xsi', 'https://www.guru99.com/XMLSchema-instance'); DocElement.DeclareNamespace('xsd', 'https://www.guru99.com/XMLSchema'); // if this call is present then the 'xmlns=MyString' attribute will be at the end of the element, // but if this is omitted then the attribute will be at the front of the element instead, due to // the earlier CreateElement/AddChild call... DocElement.DeclareNamespace('', 'MyString'); FounderNode := DocElement.AddChild('founder'); FounderNode.Text := 'Krishna'; MyXMLDocument.SaveToFile('TestOne01.XML'); end; It is important that the 'ab' element actually have the 'MyString' namespace assigned to it, so that any child nodes can inherit it. When an `xmlns` attribute appears on a child node, it means the namespace was not inherited correctly.
×