Ordisoftware Ingénierie https://www.ordisoftware.com Création agile d'applications orientées objet Sat, 16 Aug 2025 16:52:58 +0000 fr-FR hourly 1 https://www.ordisoftware.com/uploads/2024/05/favicon-144x144.png Ordisoftware Ingénierie https://www.ordisoftware.com 32 32 191347058 Mise à jour de Hebrew Calendar, Letters et Words (fichier SSL #2) https://www.ordisoftware.com/blog/2025/08/mise-a-jour-de-hebrew-calendar-et-letters-et-words-fichier-ssl-2/ Sat, 16 Aug 2025 16:51:19 +0000 https://www.ordisoftware.com/?p=9116

Publication des installateurs des logiciels Hebrew Calendar et Letters et Words en version 10.4.2 et 6.14.2 et 3.17.2 afin de mettre a jour le fichier de verification du certificat SSL pour le domaine ordisoftware.com suite au changement d'hebergement.

Le probleme de verification provenait de l'utilisation de Let's Encrypt, celui-ci a ete a priori definitivement resolu tout en maintenant un minimum de securite concernant l'origine du telechargement via l'application (nom de domaine et checksum SHA512).

Hebrew Calendar Hebrew Letters Hebrew Words

Lire la suite

]]>
9116
Ajout de la page Agile Progressive Spike Driven Development https://www.ordisoftware.com/blog/2024/11/added-agile-progressive-spike-driven-development-page/ Tue, 05 Nov 2024 08:42:45 +0000 https://www.ordisoftware.com/?p=8936

Le PSDD, Progressive Spike Driven Development ou Developpement Progressif Guide par l'Experimentation, est une methodologie Agile de developpement logiciel hybride qui combine l'exploration par spiking et le raffinement iteratif du code. Elle repose sur une alternance structuree de phases d'exploration, de validation et de refactoring pour progressivement construire un code final propre et maintenable.

Agile PSDD

]]>
8936
Mise à jour de Hebrew Calendar et Letters et Words (fichier SSL) https://www.ordisoftware.com/blog/2024/05/updated-hebrew-calendar-and-letters-and-words/ Sat, 11 May 2024 06:28:07 +0000 https://www.ordisoftware.com/?p=8854

Publication des installateurs des logiciels Hebrew Calendar et Letters et Words en version 10.4.1 et 6.14.1 et 3.17.1 afin de mettre a jour le fichier de verification du certificat SSL pour le domaine ordisoftware.com suite au changement d'hebergement.

Hebrew Calendar Hebrew Letters Hebrew Words

Lire la suite

]]>
8854
Publication de Hebrew Words 3 https://www.ordisoftware.com/blog/2022/08/release-of-hebrew-words-3/ Mon, 01 Aug 2022 16:00:01 +0000 https://www.ordisoftware.com/?p=8452

]]>
8452
Nouvelle carte de visite 2022 https://www.ordisoftware.com/blog/2022/01/new-business-card-2022/ Sat, 29 Jan 2022 09:00:32 +0000 https://www.ordisoftware.com/?p=8172

Nouvelle carte de visite double face 2022 avec images de :

Trefle rouge me sauvant la vie d'une naissance en 1973 immunodeprime (necessite des immunoglobulines) et infecte mais fort des os et des organes. Bruyere vulgaire me sauvant partiellement des mechants qui ont tort de vouloir depuis 1984 me faire souffrir et mourir prematurement depuis ma petite enfance pour ce qu'ils font et ce qu'ils ne font pas car ils se trompent de cible et de moyens.

]]>
8172
Next Techno Composition Preview (2021​.​06) https://www.ordisoftware.com/blog/2021/11/next-techno-composition-preview-2021%e2%80%8b-%e2%80%8b06/ Sat, 06 Nov 2021 10:32:33 +0000 https://www.ordisoftware.com/?p=8068

Compose et arrange en juin 2021 avec :

Renoise Tracker 3 AAS Ultra Analog VA-3 All Packs Native instruments Kontakt 6, SuperCharger GT, Replika XT, Raum, Flair, Choral, Phasis Toontrack EZdrummer MetalHeads and EZmix 2 Tone2 AkustiX Blue Cat Audio TripleEQ 4 Free

Image libre de Pixabay

License Creative Commons Attribution-NonCommercial-ShareAlike 4.0

BandCamp

SoundCloud

YouTube

[embedyt]https://www.youtube.com/watch?v=JrTRHIJsZoY[/embedyt]

]]>
8068
Est-ce que tout est un objet en .NET et C# ? https://www.ordisoftware.com/blog/2021/09/is-everything-an-object-in-dotnet-and-csharp/ Sat, 04 Sep 2021 12:37:53 +0000 https://www.ordisoftware.com/?p=7930

In .NET and C# all is object.

Simply said.

Even a value type, a struct, an interface and an enum.

One can not approve, but the point is that everything is object, except pointers/references, and literals from binary files, even CPU optimized primitive types, since it is the OOP Theory as well as the. NET specifications and therefore the facts.

About classes and types

From the dotnet/csharplang/Type:

Value types differ from reference types in that variables of the value types directly contain their data, whereas variables of the reference types store references to their data, the latter being

Lire la suite

]]>
7930
Que sont les classes et les interfaces en C# ? https://www.ordisoftware.com/blog/2021/09/what-are-classes-and-interfaces-in-c/ Sat, 04 Sep 2021 08:15:02 +0000 https://www.ordisoftware.com/?p=7912

Interfaces are to make an abstraction, an archetype, of the abstraction, the classes, of the reality, the objects.

Interfaces are to specify contract terms without providing implementation provided by classes.

Interfaces are specifications:

Interfaces are design time artifacts to specify the immobile behavior of the concept as it is alone and static. Classes are implementation time artifacts to specify the mobile structure of the reality as it interacts and move. What is an interface?

When we observe a cat we can say that it is an animal that has four paws, a head, a trunk, a tail and

Lire la suite

]]>
7912
Qu'est-ce que le polymorphisme en POO ? https://www.ordisoftware.com/blog/2021/09/what-is-polymorphism-in-oop/ Fri, 03 Sep 2021 18:40:30 +0000 https://www.ordisoftware.com/?p=7879

Polymorphism in OOP Theory is the ability to:

Invoke an operation on an instance of a specialized type by only knowing its generalized type while calling the method of the specialized type and not that of the generalized type: this is dynamic polymorphism. Define several methods having the save name but having differents parameters: this is static polymorphism.

The first if the historical definition and the most important.

It allows to create strongly-typed consistency of the class hierarchy and to do some magical things like managing lists of objects of differents types without knowing their types but only

Lire la suite

]]>
7879
Qu'est-ce que l'encapsulation en POO ? https://www.ordisoftware.com/blog/2021/09/what-is-encapsulation-in-oop/ Fri, 03 Sep 2021 18:02:47 +0000 https://www.ordisoftware.com/?p=7866

Encapsulation in OOP Theory is the process to mask some properties and operations in the class that will become inaccessible from the exterior: these are only internal things and behaviours like a digestive system.

It's a compartmentalization.

Here is a short and reduced description of what access modifiers do in C#:

Public : fields (variables) and properties (variables encapsulation) and methods (functions and procedures) are visible and accessible by the class itslef, by its childs and by any other external classes. Private : members (fields, properties and methods) are visible and accessible only by the class, not by

Lire la suite

]]>
7866