Outils pour utilisateurs

Outils du site


start

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
Prochaine révision
Révision précédente
start [2025/09/19 13:01] – [Éditeur de source, Environnement de Développement IDE] : ajout de Visual Studio Installer rootstart [2025/10/27 14:54] (Version actuelle) – [Amélioration] : précision sur iwyu root
Ligne 58: Ligne 58:
 |Annotations / \\ Attributs|  [[lang:c:attribut|X]]  |  [[lang:cpp:attribut|X]]  |  [[lang:csharp:attribut|X]]  |  [[lang:java:annotation|X]]  |  [[lang:python:annotation|X]]  |  [[lang:recommandation:annotation|X]]  | |Annotations / \\ Attributs|  [[lang:c:attribut|X]]  |  [[lang:cpp:attribut|X]]  |  [[lang:csharp:attribut|X]]  |  [[lang:java:annotation|X]]  |  [[lang:python:annotation|X]]  |  [[lang:recommandation:annotation|X]]  |
 |Variables|  [[lang:c:variable|X]]  |  [[lang:cpp:variable|X]] (et pointeurs)  |  [[lang:csharp:variable|X]]  |  [[lang:java:variable|X]]  |  [[lang:python:variable|X]]  |  [[lang:recommandation:variable|X]]  | |Variables|  [[lang:c:variable|X]]  |  [[lang:cpp:variable|X]] (et pointeurs)  |  [[lang:csharp:variable|X]]  |  [[lang:java:variable|X]]  |  [[lang:python:variable|X]]  |  [[lang:recommandation:variable|X]]  |
-|Coding style|  [[lang:cpp:codingstyle|X]]  |  [[lang:cpp:codingstyle|X]]  |  [[lang:csharp:codingstyle|X]]  |  [[lang:java:codingstyle|X]]  |  [[lang:python:codingstyle|X]]  |  [[lang:recommandation:codingstyle|X]]  |+|Coding style (formatage et codage)|  [[lang:c:codingstyle|X]]  |  [[lang:cpp:codingstyle|X]]  |  [[lang:csharp:codingstyle|X]]  |  [[lang:java:codingstyle|X]]  |  [[lang:python:codingstyle|X]]  |  [[lang:recommandation:codingstyle|X]]  |
 |Cast|  [[lang:c:cast|X]]  |  [[lang:cpp:cast|X]]  |  [[lang:csharp:cast|X]]  |  [[lang:java:cast|X]]  |  [[lang:python:cast|X]]  |  [[lang:recommandation:cast|X]]  | |Cast|  [[lang:c:cast|X]]  |  [[lang:cpp:cast|X]]  |  [[lang:csharp:cast|X]]  |  [[lang:java:cast|X]]  |  [[lang:python:cast|X]]  |  [[lang:recommandation:cast|X]]  |
 |Conditions (''if''/''switch'')|  [[lang:c:condition|X]]  |  [[lang:cpp:condition|X]]  |  [[lang:csharp:condition|X]]  |  [[lang:java:condition|X]]  |  [[lang:python:condition|X]]  |  [[lang:recommandation:condition|X]]  | |Conditions (''if''/''switch'')|  [[lang:c:condition|X]]  |  [[lang:cpp:condition|X]]  |  [[lang:csharp:condition|X]]  |  [[lang:java:condition|X]]  |  [[lang:python:condition|X]]  |  [[lang:recommandation:condition|X]]  |
Ligne 153: Ligne 153:
   * [[lang:python:thread|Thread]]   * [[lang:python:thread|Thread]]
   * [[lang:python:package|Package]]   * [[lang:python:package|Package]]
-  * [[lang:python:linter|Qualité]] (pylint, mypy, Black)+  * [[lang:python:linter|Linter]] (pylint, mypy, black, flake8, pyright, pycodestyle)
   * [[lang:python:wasm|Web Assembly]] (pyodide)   * [[lang:python:wasm|Web Assembly]] (pyodide)
   * Tests : [[lang:prog:selenium|Selenium]]   * Tests : [[lang:prog:selenium|Selenium]]
Ligne 234: Ligne 234:
     * C/C++ : [[lang:c:gtk|GTK]]/[[https://www.gtkmm.org/|gtkmm]] (UI), [[lang:cpp:qt|Qt]] (UI), [[https://www.sfml-dev.org/|SFML]] (SDL), [[lang:cpp:wxwidgets|wxWidgets]]     * C/C++ : [[lang:c:gtk|GTK]]/[[https://www.gtkmm.org/|gtkmm]] (UI), [[lang:cpp:qt|Qt]] (UI), [[https://www.sfml-dev.org/|SFML]] (SDL), [[lang:cpp:wxwidgets|wxWidgets]]
     * Tcl : [[lang:tcl|Tcl/Tk]]     * Tcl : [[lang:tcl|Tcl/Tk]]
 +    * Web : [[prog:tauri|Tauri]] (+Rust)
   * Scientifique :   * Scientifique :
     * C++ :     * C++ :
Ligne 286: Ligne 287:
       * [[prog:wpr|Windows Performance Recorder]]       * [[prog:wpr|Windows Performance Recorder]]
     * Désassembleur / décompilateur :     * Désassembleur / décompilateur :
-      * [[prog:ghidra|Ghidra]], [[prog:reko|Reko]], [[prog:snowman|snowman]] (obsolète), [[audit:retdec|RetDec]] (obsolète ?) : décompilateurs en C.+      * [[prog:ghidra|Ghidra]], [[prog:reko|Reko]], <del>[[prog:snowman|snowman]]</del><del>[[audit:retdec|RetDec]]</del> : décompilateurs en C.
       * [[prog:x64dbg|x64dbg]] : désassembleur et débogueur 32 et 64 bits pour Windows.       * [[prog:x64dbg|x64dbg]] : désassembleur et débogueur 32 et 64 bits pour Windows.
       * [[prog:ilspy|ILSpy]] : décompilateur en C#       * [[prog:ilspy|ILSpy]] : décompilateur en C#
Ligne 299: Ligne 300:
         * [[prog:gammaray|GammaRay]] : introspection sur des applications en cours d'exécution.         * [[prog:gammaray|GammaRay]] : introspection sur des applications en cours d'exécution.
       * [[prog:cppinsights|C++ Insights]] : affiche le code source avec la vision du compilateur.       * [[prog:cppinsights|C++ Insights]] : affiche le code source avec la vision du compilateur.
-      * [[prog:iwyu|iwyu]] : optimise la liste des ''#include'' dans les fichiers source.+      * [[prog:iwyu|iwyu]] / ''include-what-you-use'' : optimise la liste des ''#include'' dans les fichiers source.
     * Intégration continue : [[prog:jenkins|Jenkins]], [[prog:travis|Travis]], [[prog:githubactions|Github Actions]], [[prog:gitlab|GitLab]] ([[prog:gitlab:api|API]]).     * Intégration continue : [[prog:jenkins|Jenkins]], [[prog:travis|Travis]], [[prog:githubactions|Github Actions]], [[prog:gitlab|GitLab]] ([[prog:gitlab:api|API]]).
     * Code review : [[prog:phabricator|Phabricator]], [[projets:libreoffice|Gerrit]]     * Code review : [[prog:phabricator|Phabricator]], [[projets:libreoffice|Gerrit]]
Ligne 409: Ligne 410:
     * [[ide:vs:editeur|Editeur]]     * [[ide:vs:editeur|Editeur]]
     * [[ide:vs:cmd|Ligne de commandes]]     * [[ide:vs:cmd|Ligne de commandes]]
-    * Modules : +    * Cache <del><color #ed1c24>[[prog:clcache|clcache]] (intégrable à Visual Studio)</color></del>, [[prog:ccache|ccache]] (support C++ / gcc et clang), [[prog:sccache|sccache]] : comme ccache avec le support du stockage en cloud et de Rust, [[prog:fastbuild|FASTBuild]] (compilation parallèle et cache).
-      * [[prog:ccache|ccache]] : compiler cache intégrable à Visual Studio+
-      * [[prog:sccache|sccache]] : compiler cache sur cloud non intégrable à Visual Studio. +
-      * [[prog:fastbuild|FASTBuild]] compilation parallèle et cache. Syntaxe particulière. Support peut-être par cmake.+
     * Utilitaire : [[prog:vcperf|vcperf]]     * Utilitaire : [[prog:vcperf|vcperf]]
   * [[prog:vsc|Visual Studio Code]] : [[prog:vsc:extension|extensions]], [[prog:vsc:module_highlight|coloration syntaxique sur mesure]]   * [[prog:vsc|Visual Studio Code]] : [[prog:vsc:extension|extensions]], [[prog:vsc:module_highlight|coloration syntaxique sur mesure]]
Ligne 617: Ligne 615:
     * [[prog:magicescalier|Magic Escalier]]     * [[prog:magicescalier|Magic Escalier]]
     * [[prog:structurepoint|Structure Point]] (payant)     * [[prog:structurepoint|Structure Point]] (payant)
 +  * [[prog:lefuxcompany|Le Fux Company]]
 +  * [[prog:danielyrondi|Daniel Yrondi]]
 ===Géotechnique=== ===Géotechnique===
  
Ligne 674: Ligne 674:
   * [[gc:afgc|AFGC]]   * [[gc:afgc|AFGC]]
   * Divers documentations : [[gc:doc:geotechnique|Géotechnique]]   * Divers documentations : [[gc:doc:geotechnique|Géotechnique]]
 +  * [[gc:doc:vieux|Vieux livres]]
 =====Curiosités===== =====Curiosités=====
   * Technologies   * Technologies
start.1758279677.txt.gz · Dernière modification : de root