<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://cyrille.giquello.fr/lib/exe/css.php?s=feed" type="text/css"?>
<rss version="2.0">
    <channel xmlns:g="http://base.google.com/ns/1.0">
        <title>Cyrille Giquello</title>
        <description></description>
        <link>https://cyrille.giquello.fr/</link>
        <lastBuildDate>Wed, 10 Jun 2026 16:40:46 +0000</lastBuildDate>
        <generator>FeedCreator 1.8</generator>
        <image>
            <url>https://cyrille.giquello.fr/_media/wiki/dokuwiki.svg</url>
            <title>Cyrille Giquello</title>
            <link>https://cyrille.giquello.fr/</link>
        </image>
        <item>
            <title>mcp-inspector</title>
            <link>https://cyrille.giquello.fr/informatique/ai_lm/mcp-inspector</link>
            <description>MCP Inspector

&lt;https://github.com/modelcontextprotocol/inspector&gt;

Docker et Php STDIO

Pour utiliser le transport STDIO il faut que le moteur soit dans le container, en l’occurrence Php.

Le Dockerfile, un mix avec les images ghcr.io/modelcontextprotocol/inspector et php:8.4-cli-bookworm :


# ── Stage 1 : récupérer les fichiers de l&#039;inspector ──────────────────────────

FROM ghcr.io/modelcontextprotocol/inspector:latest AS inspector

# ── Stage 2 : PHP + Composer + dépendances du projet ─────…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 29 May 2026 08:35:13 +0000</pubDate>
        </item>
        <item>
            <title>laravel_1</title>
            <link>https://cyrille.giquello.fr/informatique/php/laravel_1</link>
            <description>Laravel

Laravel The PHP Framework For Web Artisans.

Voir aussi :

	*  Lumen une version micro-framework de Laravel 5.
	*  informatique/web/Tailwind Css

Documentation

	*  Laravel 8.x
		*  La TALL Stack Tailwind CSS, AlpineJS, Laravel et Livewire
		*  laravel-frontend-presets, en plus des quelques ui presets fournis par Laravel pour un simple dashboard ou la tall stack ou</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 11 Jun 2025 07:22:20 +0000</pubDate>
        </item>
        <item>
            <title>sql</title>
            <link>https://cyrille.giquello.fr/informatique/sql</link>
            <description>SQL

Voir aussi /informatique/SGBD

Articles

Cours SQL:

	*  Les bases de données relationnelles par Jean-Claude SOHM avec notamment Chap 20, Chap 21
	*  Sql Tutorial sur dofactory.com
		*  SQL Join


Tips

Sql Join

	*  (INNER) JOIN: Select records that have matching values in both tables.
	*  LEFT (OUTER) JOIN: Select records from the first (left-most) table with matching right table records.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sun, 24 Aug 2025 07:12:29 +0000</pubDate>
        </item>
        <item>
            <title>ai_lm</title>
            <link>https://cyrille.giquello.fr/informatique/ai_lm</link>
            <description>AI Language Model

Les modèles d’intelligence artificielle (IA), des simples algorithmes de régression jusqu’aux réseaux neuronaux complexes utilisés dans l’apprentissage profond, fonctionnent grâce à une logique mathématique. Toutes les données utilisées par un modèle d’intelligence artificielle, y compris les données non structurées comme le texte, l’audio ou les images, doivent être exprimées sous forme numérique. Le plongement vectoriel, ou représentation vectorielle, est une méthode qui per…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 10 Jun 2026 07:36:53 +0000</pubDate>
        </item>
        <item>
            <title>zend_framework</title>
            <link>https://cyrille.giquello.fr/informatique/php/zend_framework</link>
            <description>Zend Framework

[Zend Framework]

&lt;http://framework.zend.com/&gt;

Programmer&#039;s Reference Guide : fr en

Comparaison Zend_Framework et Symfony

Etude perso

Sources de documentation

sur developpez.net/.com : Accueil Cours, FAQ, Forums

	*  
	*  Les cours de Julien Pauli sur developpez.com sont très pertinents (sécurité, ZendFramework, ...).
	*  le Zend Framework Francophone: &lt;http://www.z-f.fr&gt;
	*  &lt;http://mikaelkael.fr/&gt; pour la traduction fr du guide de référence.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:57 +0000</pubDate>
        </item>
        <item>
            <title>play_framework_old</title>
            <link>https://cyrille.giquello.fr/informatique/java/frameworks/play_framework_old</link>
            <description>Play! framework (old page)

The Playframework makes it easier to build Web applications with Java.

Finally a Java framework made by Web developers. Discover a clean alternative to bloated enterprise Java stacks. Play focuses on developer productivity and targets RESTful architectures.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 28 Dec 2015 00:16:52 +0000</pubDate>
        </item>
        <item>
            <title>docker</title>
            <link>https://cyrille.giquello.fr/informatique/docker</link>
            <description>Docker


Docker propose des conteneurs logiciels, les conteneurs partagent le même système d&#039;exploitation (noyaux, processus d&#039;initialisation, drivers réseaux ...).

Principes

Docker propose un certains nombre d&#039;images « standard » notamment:</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 28 Mar 2025 08:08:38 +0000</pubDate>
        </item>
        <item>
            <title>design_pattern</title>
            <link>https://cyrille.giquello.fr/informatique/design_pattern</link>
            <description>Design Pattern

Patrons de conception pour la programmation informatique.

Documentation

Commencer par lire:

	*  Principes avancés de conception objet.
	*  Design Patterns du Gang of Four appliqués à Java
	*  

Sources :

	*  Wikipedia (fr) et Wikpedia (en)
	*  Martin Fowler&#039;s Patterns of Enterprise Application Architecture (P of EAA) catalog
	*  Core J2EE Patterns sur java.sun.com.
	*  &lt;http://www.dofactory.com/Patterns/Patterns.aspx&gt;
	*  (en) &lt;http://davidhayden.com/blog/dave/category/22.asp…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 03 Mar 2023 13:56:48 +0000</pubDate>
        </item>
        <item>
            <title>javascript</title>
            <link>https://cyrille.giquello.fr/informatique/javascript</link>
            <description>Javascript

Voir aussi;

	*  /informatique/javascript/jquery
	*  A Map To Modern JavaScript Development (2017)

De la doc:

	*  Centre de documentation Mozilla
	*   Object-oriented JavaScript for beginners
			*  Introduction to Object-Oriented JavaScript, Javascript OOP patterns (POO)

	*  OOP Javascript, Jquery, Binding events and keep the context (this) (POO)
	*  Callbacks vs Events
			*  Callbacks vs Events well presents the difference
			*  performance test


News, listes d&#039;outils et librair…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 15 May 2026 12:05:03 +0000</pubDate>
        </item>
        <item>
            <title>oauth</title>
            <link>https://cyrille.giquello.fr/informatique/oauth</link>
            <description>OAuth

An open protocol to allow secure authorization in a simple and standard method from web, mobile and desktop applications.

&lt;http://oauth.net/&gt;

Voir aussi : Single Sign-On

	*  Comprendre le framework OAuth 2.0 et les roles et mécanismes en jeu durant le processus d&#039;autorisation

RFC:

	*  6749 The OAuth 2.0 Authorization Framework
		*  8252 OAuth 2.0 for Native Apps
		*  8996 Deprecating TLS 1.0 and TLS 1.1</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 09 Sep 2025 09:30:34 +0000</pubDate>
        </item>
        <item>
            <title>php</title>
            <link>https://cyrille.giquello.fr/informatique/php</link>
            <description>PHP

Sources d&#039;information :

	*  /informatique/php/Tips &amp; Tricks
	*  Les cours de Julien Pauli sur developpez.com sont très pertinents (sécurité, ZendFramework, ...).
	*  Les nouveautés de PHP 5.3

PHP8 Attributes

	*  &lt;https://stitcher.io/blog/attributes-in-php-8&gt;
	*  &lt;https://github.com/TWithers/laravel-php-attributes&gt;

Compiler PHP et PECL pour Windows

Installer différentes versions de Php grâce au dépôt de Ondřej Surý (un développeur Debian) :


sudo apt install software-properties-common
…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sun, 26 Apr 2026 15:21:50 +0000</pubDate>
        </item>
        <item>
            <title>pkcs</title>
            <link>https://cyrille.giquello.fr/informatique/pkcs</link>
            <description>Public Key Cryptographic Standard

Tous les PKCS sont sur rsa.com.

	*  PKCS#1: RSA Cryptography Standard
	*  PKCS#3: Diffie-Hellman Key Agreement Standard
	*  PKCS#5: Password-Based Cryptography Standard
	*  PKCS#6: Extended-Certificate Syntax Standard
	*</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sun, 27 Aug 2023 09:31:17 +0000</pubDate>
        </item>
        <item>
            <title>dotnet</title>
            <link>https://cyrille.giquello.fr/informatique/dotnet</link>
            <description>DotNet (.NET)

A étudier

WPF / XAML et la 3D dans les UI.

	*  &lt;http://www.codeproject.com/KB/WPF/MyFriends.aspx&gt;
	*  &lt;http://www.codeproject.com/Articles/37371/Viewport2DVisual3D.aspx&gt;

De la doc

developpez.com deviendrait-il une bonne référence ...

Un super point d&#039;entrée pour .NET :

&lt;http://www.csharpfriends.com/quickstart/howto/&gt;

Geaorge Shepherds&#039;s Windows Forms FAQ : Très complète sur les contrôles, le Framework et tout plein d&#039;autres choses autour de .NET. Un must have !</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:56 +0000</pubDate>
        </item>
        <item>
            <title>flutter</title>
            <link>https://cyrille.giquello.fr/informatique/flutter</link>
            <description>Flutter

Le langage dart

Quelques notes sur le debuggage.

Et des Tips/Tutos/Examples.

Ma 1ère appli : CroustiWiki

Flutter documentation

	*  &lt;https://flutter.dev&gt;
	*  Flutter Cookbook contains recipes that demonstrate how to solve common problems
	*  Flutter CodeLabs
	*  Layout
	*  Widgets
		*  Cupertino widgets for iOS style and behavior 
		*  Material Components widgets
			*  &lt;https://flutter-experimental-m3-demo.web.app/&gt;


	*  Theme
	*  assets and images
	*  Examples</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 02 Dec 2025 09:41:23 +0000</pubDate>
        </item>
        <item>
            <title>gephi</title>
            <link>https://cyrille.giquello.fr/informatique/gephi</link>
            <description>Gephi

The Open Graph Viz Platform

Gephi is an interactive visualization and exploration platform for all kinds of networks and complex systems, dynamic and hierarchical graphs.

	*  Exploratory Data Analysis: intuition-oriented analysis by networks manipulations in real time.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 25 Mar 2022 14:39:14 +0000</pubDate>
        </item>
        <item>
            <title>syntax</title>
            <link>https://cyrille.giquello.fr/wiki/syntax</link>
            <description>Formatting Syntax

DokuWiki supports some simple markup language, which tries to make the datafiles to be as readable as possible. This page contains all possible syntax you may use when editing the pages. Simply have a look at the source of this page by pressing</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 04 Mar 2024 07:50:07 +0000</pubDate>
        </item>
        <item>
            <title>tips</title>
            <link>https://cyrille.giquello.fr/informatique/java/tips</link>
            <description>Java Tips

Plein de choses interressantes dans le livre “Killer Game Programming in Java”. Des extraits de chapitres et de codes: &lt;http://fivedots.coe.psu.ac.th/~ad/jg/index.html&gt;.

&lt;http://filthyrichclients.org/&gt; Le bouquin de Romain Guy &amp; Chet Haase. In Filthy Rich Clients, we explain how to create filthy rich effects in your applications, from the fundamental graphics,</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 16 Jun 2023 08:02:05 +0000</pubDate>
        </item>
        <item>
            <title>actualites</title>
            <link>https://cyrille.giquello.fr/informatique/opendata/actualites</link>
            <description>Actualités de l&#039;Opendata

Actualités de l&#039;Opendata en France, et puis parfois d&#039;ailleurs quand c&#039;est trop bon ;-)

2012

décembre

2012-12-27 - Diffusion des données naturalistes de l&#039;ONF au grand public: L&#039;ONF, dans le cadre de sa contribution au Système d&#039;information sur la nature et des paysages (SINP) et de son partenariat avec le Muséum national d&#039;histoire naturelle (</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 18 Sep 2013 15:41:03 +0000</pubDate>
        </item>
        <item>
            <title>zeroshell</title>
            <link>https://cyrille.giquello.fr/informatique/reseau/zeroshell</link>
            <description>Zeroshell



&lt;http://www.zeroshell.org&gt;

Zeroshell is a Linux distribution for servers and embedded devices aimed at providing the main network services a LAN requires. It is available in the form of Live CD or Compact Flash image and you can configure and administer it using your web browser. The main features of this Linux distribution for Network Appliances are listed below:</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 31 Jan 2014 16:04:29 +0000</pubDate>
        </item>
        <item>
            <title>tux_droid</title>
            <link>https://cyrille.giquello.fr/electronique/tux_droid</link>
            <description>Tux Droid

Sur le web

	*  Le site officiel et communautaire : &lt;http://www.tuxisalive.com/&gt; et son Wiki
	*  code source
	*  Une présentation en français : &lt;http://electronique.magellan.fpms.ac.be/wiki/index.php/Tux_Droid&gt;

Quelques projets

un cerveau pour Tux

	*  &lt;http://wiki.tuxisalive.com/index.php/AI&gt;
	*  (fr) TuxBrain

librairies

communication avec le d
aemon tuxd :

	*  Java
	*  Ruby

Qlqs idées de dev</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:46 +0000</pubDate>
        </item>
        <item>
            <title>android</title>
            <link>https://cyrille.giquello.fr/informatique/android</link>
            <description>Android

Les statistiques des versions utilisées d&#039;Android, tailles d&#039;écran et versions d&#039;OpenGL, publication par Google.

Divers outils

recopier écran Android sur un bureau Linux

Developement

SDK &amp; Tools

	*  /informatique/mobile_app
	*  Flutter
	*  Android Studio &lt;https://developer.android.com/studio/index.html&gt;
		*  Device Manager pour créer des device pour l&#039;émulateur
			*  choix de la version API
			*  choix des services :</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sun, 13 Jul 2025 10:07:07 +0000</pubDate>
        </item>
        <item>
            <title>egpu</title>
            <link>https://cyrille.giquello.fr/informatique/egpu</link>
            <description>eGpu

En anglais “GPU enclosures”. Nécessite un port Thunderbolt 3, 4 ou à venir 5.

Installer nvidia-drivers et CUDA.

Mes expériences eGpu avec mon Mint 21.3 (Ubuntu 22.04) kernel 6.8.

	*  &lt;https://egpu.io/best-egpu-buyers-guide/&gt;
	*  eBay th3p4
		*  Thunderbolt 3/4 PD 40Gbps DC/ATX TH3P4 GPU Dock Graphics Card Extension Bracket $207

	*  &lt;https://www.sonnetstore.com/collections/gpu-solutions&gt;
	*  DIY Thunderbolt eGPU with EXP GDC TH3P4 and 3D-printed chassis

	*  WKGL17 Wikingoo
		*  acheté
…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 09 Jun 2026 11:38:51 +0000</pubDate>
        </item>
        <item>
            <title>ign_bdortho</title>
            <link>https://cyrille.giquello.fr/informatique/ign_bdortho</link>
            <description>IGN BdOrtho

Des versions de la BdOrtho sont accessibles en TMS via &lt;https://data.geopf.fr/tms/1.0.0/&gt;

Il y a aussi des version à télécharger sur &lt;https://geoservices.ign.fr/telechargement-api/BDORTHO&gt; le lien est maintenant &lt;https://cartes.gouv.fr/rechercher-une-donnee/dataset/IGNF_BD-ORTHO&gt; -&gt; penser à scroller !!

Pour récupérer automatiquement ou détecter les nouveautés:

	*  &lt;https://data.geopf.fr/telechargement/resource/BDORTHO?format=JP2-E080&amp;page=2&gt;
	*  &lt;https://data.geopf.fr/telecharge…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 08 Apr 2026 09:25:34 +0000</pubDate>
        </item>
        <item>
            <title>ai_vision</title>
            <link>https://cyrille.giquello.fr/informatique/ai_lm/ai_vision</link>
            <description>AI Vision

Voir aussi:

	*  IGN BdOrtho

llama.cpp

Il y a YOLO et tout plein d&#039;outils dédiés à la détection dans des images. Là je teste avec des modèles multimodaux, sans entraînement spécifique.

Le prompt demande s&#039;il y a des panneaux solaire dans l&#039;image fournie, avec sa bbox, et si &lt;img src=&quot;https://tools.comptoir.net/maproulette-completion-badge/badge.php?id=54541&quot; height=&quot;25&quot;/&gt;&lt;img src=&quot;https://tools.comptoir.net/maproulette-completion-badge/badge.php?id=54542&quot; height=&quot;25&quot;/&gt;&lt;img src=&quot;htt…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 21 Apr 2026 06:52:47 +0000</pubDate>
        </item>
        <item>
            <title>symfony</title>
            <link>https://cyrille.giquello.fr/informatique/php/symfony</link>
            <description>Symfony

&lt;https://symfony.com/&gt; Symfony

! NEW ! Symfony3

! NEW ! Symfony2

[Symfony logo]

	*  Drupal 7 vs Symfony 2: overview after 1 year of Symfony development

Etude perso

Gestion de la langue de l&#039;utilisateur

Documentation

Accès rapide:

	*  Symfony Reference Book v1.4
		*  Tasks (chap 16)

	*  Doctrine ORM v1.2
		*  Manual - Table of Contents


Les livres Sensio Labs (buy or read online for free)

	*  Tous les livres en anglais.
	*  Plus loin avec Symfony 1.3 &amp; 1.4 en français.

symfo…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 24 Jan 2025 19:40:20 +0000</pubDate>
        </item>
        <item>
            <title>postfix</title>
            <link>https://cyrille.giquello.fr/informatique/reseau/postfix</link>
            <description>Postfix

MTA, Service SMTP

voir aussi

	*  Exim4
	*  /informatique/spam pour de la “bonne” configuration

	*  Documentation officielle
		*  Postfix SMTP relay and access control 
		*  Postfix Before-Queue Content Filter
		*  Postfix After-Queue Content Filter
		*  Postfix Address Rewriting

	*  Postfix Howtos and FAQs
	*  Doc en français
	*  Postfix Debugging Howto

	*  &lt;http://www.posluns.com/guides/&gt;
	*  &lt;https://calomel.org/postfix.html&gt;

	*  Installation d’un serveur mail brique par brique……</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sat, 09 Aug 2025 07:40:38 +0000</pubDate>
        </item>
        <item>
            <title>mysql</title>
            <link>https://cyrille.giquello.fr/informatique/sgbd/mysql</link>
            <description>MySQL

	*  mariadb
	*  sql

Books

High Performance MySQL Optimization, Backups, Replication, and More (Paperback)

Tools

Myterm

Myterm: Extensible mysql command line client with pipe chaining

“Tail -f table with myterm” Ever found yourself running the same query over and over again to see if a table has got new content, just waiting for that magic row to appear? The tail command will watch for new lines in a table, just like you might tail a log file in Linux.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 31 Oct 2022 17:37:15 +0000</pubDate>
        </item>
        <item>
            <title>distributed_computing</title>
            <link>https://cyrille.giquello.fr/informatique/distributed_computing</link>
            <description>Distributed Computing

Sources d&#039;info

&lt;http://fgouget.free.fr/distributed/&gt;

Voir aussi:

	*  HPC

Les projets

Human Proteome Folding (grid.org) 

The Human Proteome Folding Project analyzes sequence data from the Human Genome to predict how the proteins coded there are likely to function. Since proteins directly affect human health and are key targets in developing disease treatments, understanding their structure and function is critical. At present only a fraction of human protein structure…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sun, 20 May 2012 18:57:02 +0000</pubDate>
        </item>
        <item>
            <title>wordpress</title>
            <link>https://cyrille.giquello.fr/informatique/wordpress</link>
            <description>Wordpress

&lt;http://wordpress.org&gt;

WP-Cli

wp-cli WP Cli.

Documentation

Pour les développeurs

	*  Theme Development
		*  Template hierarchy (visual overview)
		*  Wordpress Theme Anatomy
		*  Stepping into Templates

	*  Plugin Handbook
		*  Settings &amp; Options
			*  la classe jeremyHixon/RationalOptionPages
			*  online ]WordPress Option Page Generator
			*  5 Ways to Create a WordPress Plugin Settings Page


	*  Wordpress hooks
		*  liste des hooks sur Codex WP
		*  WordPress Hooks Database
…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 23 Oct 2025 07:53:06 +0000</pubDate>
        </item>
        <item>
            <title>model_bench</title>
            <link>https://cyrille.giquello.fr/informatique/ai_lm/model_bench</link>
            <description>Model bench

Avec OpenCode et le prompt “hello”.

gemma-4-26B-A4B-it-Q4_K_M

~/Code/bronx/AI_Coding/llama.cpp-86/build/bin/llama-server --host 0.0.0.0 --port 8012 -m ~/Data/AI_Models/gemma-4-26B-A4B-it-Q4_K_M.gguf --jinja -c 0


0.20.076.426 I srv          init: init: chat template, thinking = 1
0.20.076.461 I srv  llama_server: model loaded
0.20.076.464 I srv  llama_server: server is listening on http://0.0.0.0:8012
0.20.076.470 I srv  update_slots: all slots are idle
0.35.420.649 I srv  params…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 26 May 2026 08:15:39 +0000</pubDate>
        </item>
        <item>
            <title>orphanswanted</title>
            <link>https://cyrille.giquello.fr/wiki/plugins_installes/orphanswanted</link>
            <description>Orphans &amp; Wanted pages

&lt;http://www.dokuwiki.org/plugin:orphanswanted&gt;

Use this plugin to find orphan pages and wanted pages.

OrphansWanted show which pages are:

	*  Orphans (the page exists, but it has no links to it)
	*  Wanted (the page does not exist, but there are link(s) to it elsewhere on the site)</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:19:00 +0000</pubDate>
        </item>
        <item>
            <title>play_framework</title>
            <link>https://cyrille.giquello.fr/informatique/java/frameworks/play_framework</link>
            <description>Play! framework

The High Velocity Web Framework For Java and Scala : www.playframework.org

C&#039;est le Symfony (Php) de Java ! Ce framework n&#039;est pas basé sur J2EE, il embarque directement sont serveur (Netty).

Play Framework is the High Velocity Web Framework for Java and Scala. Play is based on a lightweight, stateless, web-friendly architecture. Built on</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sat, 05 Nov 2016 12:37:05 +0000</pubDate>
        </item>
        <item>
            <title>filamentphp</title>
            <link>https://cyrille.giquello.fr/informatique/php/laravel/filamentphp</link>
            <description>Filament

	*  &lt;https://filamentphp.com&gt;
	*  docs, plugins, code

Documentation

Filament documentation:

	*  &lt;https://filamentphp.com/docs/3.x/&gt;
	*  Resource Authorization
	*  Authorizing access to the panel
	*  Multi-tenancy

Other docs &amp; tuto:

	*  Render hooks cheat-sheet
	*  &lt;https://filamentexamples.com/tutorials&gt;

Json data

	*  &lt;https://filamentphp.com/docs/3.x/forms/fields/repeater&gt;
	*  Storing form data to JSON columns
	*  &lt;https://github.com/filamentphp/filament/discussions/11140&gt;

Pro…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 11 Jun 2025 07:53:43 +0000</pubDate>
        </item>
        <item>
            <title>jaws</title>
            <link>https://cyrille.giquello.fr/glossaire/jaws</link>
            <description>JAWS

Job Access With Speech

JAWS, Job Access With Speech, is the world’s most popular screen reader, developed for computer users whose vision loss prevents them from seeing screen content or navigating with a mouse. JAWS provides speech and Braille output for the most popular computer applications on your PC. You will be able to navigate the Internet, write a document, read an email and create presentations from your office, remote desktop, or from home.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 21 Feb 2023 17:03:08 +0000</pubDate>
        </item>
        <item>
            <title>crypto</title>
            <link>https://cyrille.giquello.fr/informatique/crypto</link>
            <description>Cryptographie

	*  &lt;http://cyrille.giquello.fr/labs/crypto/&gt; quelques outils en-ligne.
	*  Php &amp; openssl benchmark &lt;https://framagit.org/Cyrille37/php-openssl-encryption&gt;
	*  RSA: /glossaire/rsa, /informatique/crypto/rsa
	*  DSA: /glossaire/dsa
	*  Schnorr: /informatique/crypto/Schnorr
	*  Shamir_secret_sharing
	*  /informatique/igc

For asymmetric encryption, use elliptical curve cryptography (ECC) with a secure curve such as Curve25519 as a preferred algorithm. If ECC is not available and RSA …</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sun, 06 Aug 2023 12:40:25 +0000</pubDate>
        </item>
        <item>
            <title>gps</title>
            <link>https://cyrille.giquello.fr/informatique/gps</link>
            <description>GNSS / GPS



Voir aussi centipede

Visual art

	*  &lt;http://joshuaalbers.com/&gt;

OpenStreetMap

&lt;http://www.openstreetmap.org/&gt;

OpenStreetMap est une carte du monde entier librement modifiable, faite par des gens comme vous.
OpenStreetMap vous permet de voir, modifier et utiliser des données géographiques de n&#039;importe quel endroit dans le monde.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 27 Dec 2022 21:20:04 +0000</pubDate>
        </item>
        <item>
            <title>issue_tracking_system</title>
            <link>https://cyrille.giquello.fr/informatique/issue_tracking_system</link>
            <description>Issue tracking system

Synonymes : “ticket Manager”, “trouble ticket system”, “incident ticket system”, “help desk”.

En fait “Bug Tracker” n&#039;est pas concidéré comme un synonyme, mais pour moi le “bug tracker” n&#039;est qu&#039;un “</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:55 +0000</pubDate>
        </item>
        <item>
            <title>kinect</title>
            <link>https://cyrille.giquello.fr/informatique/kinect</link>
            <description>Kinect

&lt;http://openkinect.org&gt;

The OpenNI framework is an open source SDK used for the development of 3D sensing middleware libraries and applications. =&gt; Website will be closed on April 23rd 2014

Plein de ressources sur le Wiki du Labomedia.

&lt;http://www.johnstowers.co.nz/blog/&gt;

reacTIVision a toolkit for tangible multi-touch surfaces

Ludique&#039;s Kinect Bundle (LKB) : Use your Kinect camera to turn different surfaces to multitouch surfaces, send users skeleton joint positions as TUIO message…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sun, 01 Jun 2014 09:25:15 +0000</pubDate>
        </item>
        <item>
            <title>mrtg</title>
            <link>https://cyrille.giquello.fr/informatique/mrtg</link>
            <description>MRTG

&lt;http://oss.oetiker.ch/mrtg/&gt;

Docs

	*  &lt;http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/&gt;
	*  &lt;http://www.linux-sottises.net/mrtg.php&gt;
	*  &lt;http://fabien.cei.free.fr/mrtg/&gt;

Softs dérivés

&lt;http://www.linux-sottises.net/software.php#mrtnk&gt;

&lt;http://www.cacti.net/&gt;

QMailMRTG7

Data acquisition

External Monitoring Scripts
If you want to monitor something which does not provide data via snmp you can use some external program to do the data gathering.
The external command must return 4 …</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:58 +0000</pubDate>
        </item>
        <item>
            <title>sgbd</title>
            <link>https://cyrille.giquello.fr/informatique/sgbd</link>
            <description>Système de gestion de base de données (SGBD)

Voir aussi /informatique/SQL, /informatique/NoSql, 
/informatique/GraphDB, /informatique/web semantique (RDF), Low Code Databases, Column-Oriented Database

SGBD Relationnels (SGBDR)

MySQL

MySQL

DuckDB

DuckDB

Oracle

MsSQL

Microsoft SQL Server

PostgreSQL

&lt;http://www.postgresql.org&gt;

H2 Database engine

H2, the Pure Java SQL database. The main features of H2 are:</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sat, 18 Oct 2025 08:14:06 +0000</pubDate>
        </item>
        <item>
            <title>sms</title>
            <link>https://cyrille.giquello.fr/informatique/sms</link>
            <description>SMS (Short Message Service)

Documentation

Deux abréviations sont souvent utilisées dans le monde du SMS :

	*  MO : Mobile Originated - sont les messages qui proviennent d&#039;un mobile (un utilisateur mobile envoie un SMS vers une application)
	*  MT : Mobile Terminated - sont les messages qui vont vers un mobile (une application envoie un SMS à un utilisateur mobile)</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 27 Jan 2022 11:01:19 +0000</pubDate>
        </item>
        <item>
            <title>undelete_unformat</title>
            <link>https://cyrille.giquello.fr/informatique/undelete_unformat</link>
            <description>UnDelete / UnFormat

J&#039;ai effacé accidentellement des fichiers, formaté un disque ...

	*  &lt;https://help.ubuntu.com/community/DataRecovery&gt;

Logiciels

Smart Recovery

Pour PC

&lt;http://www.softpedia.com/get/System/Back-Up-and-Recovery/smart-recovery.shtml&gt;

Recuva

Pour PC

&lt;http://www.piriform.com/recuva&gt;

Foremost

Linux shell

Application console permettant de récupérer des fichiers en se basant sur leurs données de début (en-tête) et de fin pour réaliser des analyses « post mortem ».…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:59 +0000</pubDate>
        </item>
        <item>
            <title>web_semantique</title>
            <link>https://cyrille.giquello.fr/informatique/web_semantique</link>
            <description>Web Sémantique

Le site Semantic Web et la page Semantic Web sur le W3C.

	*  glossaire: RDF, RDFS, OWL, SPARQL, PURL
	*  Linked Data
	*  microformats

	*  Google Search supporte les données structurées au format json-ld
	*  Votre page est-elle compatible avec les résultats enrichis ?

Semantic Web Labs des Petites Cases

Les Slides d&#039;Antidot

Le cours de www.multiformat.fr

The Politics of Vocabulary Control Musings on schema.org and Linked Open Data &lt;http://www.academia.edu/12364988/The_Politi…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 22 Dec 2020 07:46:02 +0000</pubDate>
        </item>
        <item>
            <title>ai_coding</title>
            <link>https://cyrille.giquello.fr/informatique/ai_lm/ai_coding</link>
            <description>AI Coding

Coder avec une IA LLM.

	*  Build a local AI co-pilot using IBM Granite 4, Ollama, and Continue

Autres pages:

	*  La page d&#039;index AI LM
	*  Quelques essais perso
	*  Un peu de GPU bench
	*  AI Image pour la génération d&#039;image avec un LM
	*  Pour d&#039; que la programmation informatique (codage)

	*  STM (Short Term Memory): permet à un agent IA de se souvenir des entrées récente. Généralement mise en œuvre à l’aide d’une mémoire tampon circulaire ou d’une fenêtre contextuelle (context w…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 04 Jun 2026 06:53:11 +0000</pubDate>
        </item>
        <item>
            <title>gpu_bench</title>
            <link>https://cyrille.giquello.fr/informatique/ai_lm/gpu_bench</link>
            <description>GPU Bench

	*  RTX AI Garage sur blog de nvidia

	*  Gigabyte Windforce OC 12GB Geforce RTX 3060, 354 €TTC neuve 2025-11
	*  PNY OC 16 Go Geforce RTX 5060 Ti, 450 €TTC neuve 2025-11

Benchmark d&#039;IA pour extraction de noms :

	*  avec service Mistral, modèle Codestral = 00j 01h 02m 48s</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 09 Jun 2026 20:23:33 +0000</pubDate>
        </item>
        <item>
            <title>tips_tutos_examples</title>
            <link>https://cyrille.giquello.fr/informatique/flutter/tips_tutos_examples</link>
            <description>Tips, Tutos, Examples Flutter

Build optimisation

kDebugMode

kDebugMode étant un constante, le compilateur peut supprimer du code: Tree Shaking. Il faut donc l&#039;utiliser pour réduire la taille de la compilation release.

J&#039;ai vérifié en recherchant des chaînes de caractères dans</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 03 Sep 2025 09:39:02 +0000</pubDate>
        </item>
        <item>
            <title>mantis_bt</title>
            <link>https://cyrille.giquello.fr/informatique/gestion_de_projet/mantis_bt</link>
            <description>Mantis BT

Mantis BT (BT: BugTracker)

	*  &lt;http://www.mantisbt.org&gt;
	*  tech: php/MySQL/web

The goals for this project are to produce and maintain a lightweight and simple bugtracking system. Additions of complexity and/or features are modular and configurable so that users can be shielded from unwanted clutter.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:58 +0000</pubDate>
        </item>
        <item>
            <title>librairies</title>
            <link>https://cyrille.giquello.fr/informatique/java/librairies</link>
            <description>Librairies Java

Voir aussi:

	*  Documentation Java
	*  Frameworks Java.
	*  Sélection d&#039;APIs sur developpez.com

File format

Microsoft Documents

Apache POI

&lt;http://poi.apache.org/&gt;

the Java API for Microsoft Documents. Voir la Apache POI - Component Overview pour la liste des formats “Microsoft Office” supportés (97-2003-2007, 2007+, OOXML ...)

	*  Tutoriel pour extraire des données depuis une feuille Excel, les transformer et les sauvegarder : utilisation d&#039;Apache POI par Marc AUTRAN 201…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 26 Aug 2016 12:22:20 +0000</pubDate>
        </item>
        <item>
            <title>ubuntu</title>
            <link>https://cyrille.giquello.fr/informatique/linux/ubuntu</link>
            <description>Ubuntu

Notes précédentes (my Ubuntu old page)

Trucs &amp; Astuces

	*  Nautilus scripts (terminal here, ...)

Add PPA / remove PPA

To install open a terminal window and enter
sudo add-apt-repository ppa:oibaf/graphics-drivers
sudo apt-get update
sudo apt-get upgrade
To remove, you can use ppa-purge
sudo apt-get install ppa-purge
sudo ppa-purge ppa:oibaf/graphics-drivers</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 26 Nov 2025 09:37:51 +0000</pubDate>
        </item>
        <item>
            <title>windows</title>
            <link>https://cyrille.giquello.fr/informatique/microsoft/windows</link>
            <description>Microsoft Windows

Voir aussi:

	*  Windows-Vista

Sur BernieClub ya quelques bons trucs.

Sur la sécurité de Windows, sur ses DLLs et autres astuces de la Base de Registre.

&lt;http://users.skynet.be/BernieClub/index.html&gt;

Windowing

The following sections describes the elements of an application with a Windows-based graphical user interface.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 24 Dec 2014 09:52:14 +0000</pubDate>
        </item>
        <item>
            <title>performance</title>
            <link>https://cyrille.giquello.fr/informatique/php/performance</link>
            <description>PHP Performance

Voir aussi:

	*  /informatique/php/Cache

Articles

	*  More on PHP performance by Stanislav Malyshev (alias Stas) on 2009-07-13
	*  More defensive programming practices to survive Web site traffic peaks by Manuel Lemos on 2007-05-29

	*  PHP compiler performance comparaison by Manuel Lemos on 2010-02-05

At developpment time

Profiling

Profile you code before you start optimizing it! Otherwise it would be like travelling around a foreign city with signs written in an unreadabl…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sat, 23 Jul 2016 11:49:15 +0000</pubDate>
        </item>
        <item>
            <title>prometheus</title>
            <link>https://cyrille.giquello.fr/informatique/system_admin/prometheus</link>
            <description>Prometheus

&lt;http://Prometheus.io&gt;

	*  Monitoring with Prometheus Grafana Tutorial (with Mysql exported)
	*  Monitoring Exim (Exim4) with grok_exporter. The grok_exporter aims at porting Grok from the ELK stack to Prometheus monitoring. The goal is to use Grok patterns for extracting Prometheus metrics from arbitrary log files.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 08 May 2023 17:30:18 +0000</pubDate>
        </item>
        <item>
            <title>rsync</title>
            <link>https://cyrille.giquello.fr/informatique/system_admin/rsync</link>
            <description>rsync

	*  man page
	*  &lt;http://rsync.samba.org/&gt;

Voir aussi:

	*  &lt;https://rclone.org&gt;

Si l&#039;on veut passer des options à la commande ssh on ajoute des guillemets &#039;“&#039;:


  rsync -avz -e &quot;ssh -i ~/.ssh/une_cle_privee&quot; remote_user@remote.com:/home/remote_folder/ /home/rsync/from_remote


À noter la présence ou l&#039;absence du slash &#039;/&#039; à la fin du répertoire source qui détermine si c&#039;est le répertoire lui-même qui sera synchronisé (sans le /) ou bien son contenu (avec le /).</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 20 Jan 2025 08:26:42 +0000</pubDate>
        </item>
        <item>
            <title>webstats</title>
            <link>https://cyrille.giquello.fr/informatique/web/webstats</link>
            <description>Statistiques site Web

Web Stats, web analytics

Tips &amp; Tricks

	*  How to prevent your analytics data from being blocked by ad blockers

Softwares

Open Web Analytics (OWA)

&lt;https://www.openwebanalytics.com&gt;

Github Contributors : 25 (2024-01-16)

Umami

	*  &lt;https://umami.is/&gt;
	*  &lt;https://github.com/umami-software/umami&gt;

Github Contributors : 225 (2024-01-16)

Matomo

&lt;https://matomo.org/&gt;

Github Contributors : 346 (2024-01-16)</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 16 Jan 2024 07:23:33 +0000</pubDate>
        </item>
        <item>
            <title>virtual_file</title>
            <link>https://cyrille.giquello.fr/informatique/windows/virtual_file</link>
            <description>Virtual File (windows)

Zero and Random device driver

&lt;http://www.acc.umu.se/~bosse&gt;. Windows driver examples with free source code related to file systems, virtual disks and network communication from kernel mode (HttpDisk, ...).

&lt;http://stackoverflow.com/questions/1325568/easiest-way-to-program-a-virtual-file-system-in-windows-with-python&gt;

&lt;http://www.eldos.com/cbfs/&gt;

&lt;http://www.codeproject.com/KB/dotnet/DataObjectEx.aspx&gt;

I would look at a container file format. VHD is well documented a…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:57 +0000</pubDate>
        </item>
        <item>
            <title>etude_perso</title>
            <link>https://cyrille.giquello.fr/informatique/php/symfony/etude_perso</link>
            <description>Etude perso

Multi-sites avec héritage

Dans un site on doit pouvoir surcharger : assets, action, view, model, lib, DSN, Config:

&lt;note important&gt;Pour des classes qui porteraient le même nom mais seraient dans différents sites : Quid du cache de l&#039;op-code ??&lt;/note&gt;</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:57 +0000</pubDate>
        </item>
        <item>
            <title>jobs</title>
            <link>https://cyrille.giquello.fr/divers/jobs</link>
            <description>Jobs

----------

HP Labs seeking an agile Java contract web programmer to Do Amazing in (palo alto)

&lt;http://sfbay.craigslist.org/pen/eng/2220442902.html&gt;

If the following description sounds like you then we should talk. 

You are one of the best programmers you know and have several years demonstrable experience in Java on a cloud-deployed web stack. Although Java is your prime language you are also a skilled JavaScript programmer and understand the fundamentals of web technologies, from the …</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:45 +0000</pubDate>
        </item>
        <item>
            <title>arduino</title>
            <link>https://cyrille.giquello.fr/electronique/arduino</link>
            <description>Arduino

Voir aussi hacklab, raspberrypi

Doc

Débutant

	*  Le FlossManual Arduino en français
	*  Arduino pour bien commencer en électronique et en programmation sur le Site du Zéro.
	*  Le Logiciel Arduino : Espace de développement Intégré (EDI) Arduino et Comment écrire et compiler vos programmes avec le logiciel Arduino sur &lt;http://arduino.cc/fr/&gt;.

 Advanced 

	*  Advanced Arduino ADC – Faster analogRead()

Librairie

	*  Protocole de communication série (serial protocol) : called Firmata.…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 23 Dec 2013 20:20:12 +0000</pubDate>
        </item>
        <item>
            <title>inarp</title>
            <link>https://cyrille.giquello.fr/glossaire/inarp</link>
            <description>INARP

Inverse Address Resolution Protocol

The Inverse Address Resolution Protocol, also known as “Inverse ARP” or “InARP”, is a protocol used for obtaining Layer 3 addresses (e.g., IP addresses) of other nodes from Layer 2 addresses (e.g. the DLCI in Frame Relay networks). It is primarily used in Frame Relay and ATM networks, where Layer 2 addresses of virtual circuits are sometimes obtained from Layer 2 signaling, and the corresponding Layer 3 addresses must be available before these virtual …</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:52 +0000</pubDate>
        </item>
        <item>
            <title>jdo</title>
            <link>https://cyrille.giquello.fr/glossaire/jdo</link>
            <description>JDO

Java Data Objects

JDO est un standard informatique basé sur Java permettant l&#039;accès aux données de façon transparente et unifiée.

JDO is a standard way to access persistent data in databases, using plain old Java objects (Plain Old Java Objects (POJO)) to represent persistent data. The approach separates data manipulation (done by accessing Java data members in the Java domain objects) from database manipulation (done by calling the JDO interface methods). This separation of concerns lead…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:48 +0000</pubDate>
        </item>
        <item>
            <title>rarp</title>
            <link>https://cyrille.giquello.fr/glossaire/rarp</link>
            <description>RARP

Reverse Address Resolution Protocol

Reverse Address Resolution Protocol (RARP) is a Link layer networking protocol used by a host computer to obtain its Internet Protocol (IPv4) address when it has available its link-layer address, such as an Ethernet address. RARP is described in</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:53 +0000</pubDate>
        </item>
        <item>
            <title>etherpad</title>
            <link>https://cyrille.giquello.fr/informatique/etherpad</link>
            <description>Etherpad

Tips

Paramètres

L&#039;url d&#039;etherpad peut prendre qlqs paramètres, utile par exemple pour encapsuler (embed) un pad dans une page web.

&lt;https://github.com/ether/etherpad-lite/wiki/Embed-Parameters&gt;

HTTP API

Etherpad-lite possède une API pour créer ou effacer des pads, gérer les droits d&#039;accès, retrouvé ou écrire du contenu.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sat, 30 Aug 2014 08:49:55 +0000</pubDate>
        </item>
        <item>
            <title>gearman</title>
            <link>https://cyrille.giquello.fr/informatique/gearman</link>
            <description>Gearman

Gearman provides a generic application framework to farm out work to other machines or processes that are better suited to do the work. It allows you to do work in parallel, to load balance processing, and to call functions between languages. It can be used in a variety of applications, from high-availability web sites to the transport of database replication events. In other words, it is the nervous system for how distributed processing communicates.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:55 +0000</pubDate>
        </item>
        <item>
            <title>git</title>
            <link>https://cyrille.giquello.fr/informatique/git</link>
            <description>Git

Gestionnaire de code sources.

Voir aussi: gitlab, Gogs

&lt;http://git-scm.com&gt;

A successful Git branching model (January 05, 2010), This article talks about GIT as a tool for the versioning of source code and explains a sucessful branching and release management strategy (with a very comprehensive graph).</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sat, 18 Apr 2026 13:02:20 +0000</pubDate>
        </item>
        <item>
            <title>gpartedlivecd</title>
            <link>https://cyrille.giquello.fr/informatique/gpartedlivecd</link>
            <description>GParted Live CD/USB/PXE/HD

GParted : Gnome Partition Editor

Permet, entre autre, de manipuler les partitions NTFS (create,delete,resize,...).

Voir la page Features sur le site gparted.sourceforge.net.

Je viens de retailler 2 partitions NTFS et ça fonctionne nickel. Merci les Gnomes !</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:58 +0000</pubDate>
        </item>
        <item>
            <title>linux</title>
            <link>https://cyrille.giquello.fr/informatique/linux</link>
            <description>Linux

system_admin

Tools

	*  Tester des distributions en ligne !
			*  &lt;https://distrotest.net&gt;

	*  LinuxLive USB Creator

Distributions

Ubuntu

Ubuntu, XUbuntu

Small Linux

	*  8 of the best tiny Linux distros (posted on 2010-04-20)

SliTaz

&lt;http://www.slitaz.org/&gt;

xPUD

&lt;http://www.xpud.org&gt;

The desktop has never been this easy -- Get your favorite web browser with a simple web-based interface on top.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 15 Jan 2026 19:24:20 +0000</pubDate>
        </item>
        <item>
            <title>mobile_app</title>
            <link>https://cyrille.giquello.fr/informatique/mobile_app</link>
            <description>Mobile App

Aussi:

	*  /informatique/android
	*  l’appli CroustiWiki

tags: smartphone, application

responsive vs adaptive

Une application réactive (responsive) ajuste la disposition des éléments graphiques afin de s&#039;adapter à l&#039;espace disponible. Une application adaptative (</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sat, 30 Aug 2025 10:53:41 +0000</pubDate>
        </item>
        <item>
            <title>nginx</title>
            <link>https://cyrille.giquello.fr/informatique/nginx</link>
            <description>NGINX

Serveur HTTP.

Documentation

	*  &lt;https://www.nginx.com/resources/admin-guide/&gt;
		*  NGINX Reverse Proxy
			*  fastcgi
			*  uwsgi


	*  &lt;http://wiki.nginx.org&gt;
		*  &lt;http://wiki.nginx.org/NginxConfiguration&gt;


Nginx &quot;how to&quot; - Fast and Secure Web Server

CGI

	*  Module ngx_http_fastcgi_module
	*  Understanding and Implementing FastCGI Proxying in Nginx
	*  Php-fpm
		*  NGINX + PHP-FPM + APC = Awesome
		*  La mise en place de Nginx avec PHP-fpm


Securité

WAF (Web Application Firewall)…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 21 Sep 2023 09:47:59 +0000</pubDate>
        </item>
        <item>
            <title>opendata</title>
            <link>https://cyrille.giquello.fr/informatique/opendata</link>
            <description>Open Data

Tags: opendata, ouverture données publiques, egov, opengov, edemocracy.

développement local

Draft Conférence, Draft Conférence2

Les slides en SVG, sur SlideShare en PDF.

L&#039;État n&#039;existe pas pour lui même, mais pour le peuple : donc diffusion libre de ce qu&#039;il finance.

Ouverture des données publiques, une nouvelle ressource pour l’innovation et la participation</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 28 Dec 2022 13:05:58 +0000</pubDate>
        </item>
        <item>
            <title>ovh</title>
            <link>https://cyrille.giquello.fr/informatique/ovh</link>
            <description>OVH

Hébergement : mutualisé, dédié, housing, téléphonie, ...

Qui sont ils ?



L&#039;hébergement mutualisé à la loupe : les chiffres

Les vidéos :

	*  2010-02-24 Où héberger 300000 serveurs ? 
	*  2009-12-30 EcoDatacenter
	*  2009-12-30 Do you dd ?
	*  2009-09-02 hmm ... question !
	*  2009-06-03 Lundi le 8 juin: le film
	*  2009-05-29 Gérer une entreprise
	*  2009-04-16 Test de groupes
	*  2008-06-08 Housing: Paris DC1
	*  2008-01-13 routage
	*  2007-11-16</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 12 Jan 2024 10:16:52 +0000</pubDate>
        </item>
        <item>
            <title>progressive_web_app_pwa</title>
            <link>https://cyrille.giquello.fr/informatique/progressive_web_app_pwa</link>
            <description>Progressive Web App (PWA)

	*  Google Doc
		*  des tips dans la docs de workbox

	*  MDN Doc (Mozilla Developer Network)
	*  Web.dev PWA by members of the Chrome team, and external experts.
		*  Présentation des notifications push

	*  MDN
		*  ServiceWorker Cookbook
			*  Immediate Claim: Register a service worker, Delete old cache if present, Immediately claim the service worker</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sat, 12 Jul 2025 08:53:06 +0000</pubDate>
        </item>
        <item>
            <title>scanners_reseau</title>
            <link>https://cyrille.giquello.fr/informatique/scanners_reseau</link>
            <description>Scanners Réseau

Network Scanner, Sniffer...

Pour écouter le traffic réseau il faut passer la carte réseau en mode “promiscuous”.

Une liste d&#039;outils basés sur WinPcap (libpcap for windows): 

&lt;http://www.winpcap.org/misc/links.htm#tools&gt;

voir aussi: scanners de vulnérabilités

Softs

Analyseurs

Wireshark

Wireshark is the world&#039;s foremost network protocol analyzer, and is the de facto (and often de jure) standard across many industries and educational institutions.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sat, 10 Jul 2021 11:40:58 +0000</pubDate>
        </item>
        <item>
            <title>screen</title>
            <link>https://cyrille.giquello.fr/informatique/screen</link>
            <description>Screen Terminal Emulator

Doc:

	*  &lt;https://doc.ubuntu-fr.org/screen&gt;

Alternatives:

	*  byobu

Handbook


.-----------------------------------------------------------------------.
|                                                                       |
|                  Screen VT100/ANSI Terminal Emulator                  |
|                      Default Keyboard Shortcut                        |
|                            Cheat Sheet                                |
|                    …</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 30 Aug 2019 07:05:45 +0000</pubDate>
        </item>
        <item>
            <title>security</title>
            <link>https://cyrille.giquello.fr/informatique/security</link>
            <description>Security

Chiffrement

AxCrypt

Analyseurs réseau

WireShark

Scanners de vulnérabilités

SSH

Voir ssh.

commande wget

De nombreuses failles de securités exploités via le duo PHP/Apache font très souvent intervenir la fonction linux WGET.

Partant de cette constatation, je me suis posé la question suivante : est-il possible de désactiver la fonction wget pour le user nobody ?</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sat, 10 Jul 2021 12:25:24 +0000</pubDate>
        </item>
        <item>
            <title>virtualbox</title>
            <link>https://cyrille.giquello.fr/informatique/virtualbox</link>
            <description>Virtualbox

Menu perdu: Ctrl droit (host) + Home

Guest additions:

	*  HOWTO: Install Linux Guest Additions + Xorg config

Shared folders:

	*  HOWTO: Use Shared Folders on Linux

Networking

SSH into a VirtualBox Linux guest from your host

Accès réseau à une machine virtuelle depuis le réseau hôte:

Configurer le réseau de la VM en mode Pont (Bridge) :</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 04 Jul 2025 07:04:11 +0000</pubDate>
        </item>
        <item>
            <title>visual_studio</title>
            <link>https://cyrille.giquello.fr/informatique/visual_studio</link>
            <description>Microsoft Visual Studio

Tools and AddIns

Visual Studio Gallery Products and Extensions for Visual Studio.

OxyProject Metrics

OxyProject Metrics is an application that provides quantitative information for software projects that empowers software professionals to assess the complexity and maturity of a software product.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:59 +0000</pubDate>
        </item>
        <item>
            <title>wireshark</title>
            <link>https://cyrille.giquello.fr/informatique/wireshark</link>
            <description>Wireshark

&lt;http://www.wireshark.org/&gt;

Wireshark is the world&#039;s foremost network protocol analyzer, and is the de facto (and often de jure) standard across many industries and educational institutions.

Wireshark development thrives thanks to the contributions of networking experts across the globe. It is the continuation of a project that started in 1998.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:56 +0000</pubDate>
        </item>
        <item>
            <title>xmlrpc</title>
            <link>https://cyrille.giquello.fr/informatique/xmlrpc</link>
            <description>XML-RPC

Directory at www.xmlrpc.com

Implementations

PHP implementations

XMLRPC-EPI A standalone C API for XML-RPC &lt;http://xmlrpc-epi.sourceforge.net/&gt; 

xmlrpc-epi-php is a PHP C extension that utilizes xmlrpc-epi to provide a high performance, easy to use, php native interface to xmlrpc. 

This extension is used for PHP.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:55 +0000</pubDate>
        </item>
        <item>
            <title>entlib</title>
            <link>https://cyrille.giquello.fr/informatique/dotnet/entlib</link>
            <description>Framework Enterprise Library (EntLib)

	*  Petit nom: EntLib
	*  Autre nom: Enterprise Library Blocks
	*  Ancien nom: Application Blocks
	*  inside Microsoft patterns &amp; practices

Sur MSDN Solution Development Fundamentals:

	*  Microsoft Enterprise Library 4.1 – October 2008

Ses domaines fonctionnels sont :

	*    Caching Application Block</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:56 +0000</pubDate>
        </item>
        <item>
            <title>centipede</title>
            <link>https://cyrille.giquello.fr/informatique/gps/centipede</link>
            <description>Centipède

Centipède est un réseau mutualisé de bases GNSS RTK, géré par des Instituts de recherche en Charente-Maritime. Il vise à fournir un signal de correction RTK libre et ouvert afin de disposer d&#039;une précision centimétrique sur un territoire continu - by</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sat, 16 Feb 2019 15:11:05 +0000</pubDate>
        </item>
        <item>
            <title>jquery</title>
            <link>https://cyrille.giquello.fr/informatique/javascript/jquery</link>
            <description>JQuery

&lt;http://jquery.com&gt;

	*  FAQ JQuery sur developpez.com

Tips

	*  How to apply HTML User Interface Effects using jQuery (Hide/show, Fade in/out, Slide up/down, animate)
	*  Créez une fenêtre modale avec CSS et jQuery
	*  Build Dashboard Using jQuery library
		*  &lt;http://software.krimnet.com/sample-build-dashboard-using-jquery-library.htm&gt;


Promise &amp; Deferred

Synchroniser plusieurs appel Ajax :


 // un tableau pour ranger tous les appels ajax
 var calls = new Array();
 $(someArray).eac…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 13 May 2021 11:05:09 +0000</pubDate>
        </item>
        <item>
            <title>ubuntu_old</title>
            <link>https://cyrille.giquello.fr/informatique/linux/ubuntu_old</link>
            <description>Ubuntu (old page)

Après des années de Linux côté serveur, il faut bien que je passe au côté desktop... j&#039;ai choisi Ubuntu. Ubuntu est très célèbre pour être proche de l&#039;utilisateur, Sus aux passionné des octets ! 

Voir aussi:

	*  xubuntu

Configuration</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 13 May 2014 19:08:55 +0000</pubDate>
        </item>
        <item>
            <title>geotools.mennobieringa.nl</title>
            <link>https://cyrille.giquello.fr/informatique/osm/geotools.mennobieringa.nl</link>
            <description>from &lt;http://www.phpclasses.org/package/7147-PHP-Perform-calculations-with-geographic-coordinates.html&gt;


&lt;?php
/**
 * Copyright (c) 2011 by Menno Bieringa - http://www.mennobieringa.nl
 *
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * Redistributions of source code must retain the above copyright notice,
 * this list of conditions and the following disclaimer…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:55 +0000</pubDate>
        </item>
        <item>
            <title>lumen</title>
            <link>https://cyrille.giquello.fr/informatique/php/lumen</link>
            <description>Lumen

Lumen is a “micro-framework” built on top of Laravel&#039;s components, and is the official micro-framework of Laravel. Lumen is built for speed, and is one of the fastest PHP micro-frameworks available - even significantly faster than similar frameworks such as Silex.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 11 Jun 2025 07:31:58 +0000</pubDate>
        </item>
        <item>
            <title>slim</title>
            <link>https://cyrille.giquello.fr/informatique/php/slim</link>
            <description>Slim Framework

Un framework web très léger pour Php.

	*  Slim Framework

RESTful services with jQuery, PHP and the Slim Framework (December 1, 2011)

Simple Blog written with Slim Framework with Slim Framework, Eloquent (ORM), Twig, Bootstrap

Rapid Application Prototyping in PHP Using a Micro Framework with Slim Framework, Slim Extras, Twig, Paris &amp; Idiorm

How to use Laravel&#039;s Eloquent ORM with the Slim Framework

For a Validation framework, look at &lt;http://respect.li/Validation/&gt;

Command l…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 01 May 2015 08:08:38 +0000</pubDate>
        </item>
        <item>
            <title>yacy</title>
            <link>https://cyrille.giquello.fr/informatique/raspberrypi/yacy</link>
            <description>Yacy sur Raspberry-pi

Le moteur distribué de recherche Yacy sur Raspberry:

	*  Running YaCy on Raspbian
		*  et Debian Java Package

	*  Oracle JRE for ARM

Avec un PI 2ème génération

	*  ARMv7 Processor rev 5 (v7l)

Je à suivre Installation of YaCy on Debian et hop, après de longue minutes d&#039;installation, ça fonctionne ;-)

Important File Locations</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 31 Mar 2016 10:38:11 +0000</pubDate>
        </item>
        <item>
            <title>qmail</title>
            <link>https://cyrille.giquello.fr/informatique/reseau/qmail</link>
            <description>QMail

Un bon tutorial pour installer et configurer QMail : Bill&#039;s Linux Qmail Toaster

Sur le wiki de sos-admin la section Serveurs_de_Messagerie et Trucs_et_Astuces.

Tout savoir sur les fichiers de contrôle de QMail :

	*  man qmail-control
	*  &lt;http://www.die.net/doc/linux/man/man5/qmail-control.5.htm&gt;

Les fichiers de contrôle n&#039;existent pas par défaut, il faut donc les créer.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:56 +0000</pubDate>
        </item>
        <item>
            <title>restic</title>
            <link>https://cyrille.giquello.fr/informatique/system_admin/restic</link>
            <description>Restic

outil de sauvegarde.

&lt;https://restic.net/&gt;

Docs:

	*  &lt;https://restic.readthedocs.io&gt;
	*  &lt;https://forum.restic.net&gt;

Articles:

	*  &lt;https://blog.stephane-robert.info/docs/cloud/outils/restic/&gt;
	*  &lt;https://toorop.fr/post/tuto-backup-restic-object-storage-ovh/&gt;

Tips

Mount

[Restic mount view]

On peut monter un repository et accéder aux backups par host, ids, dates ou tags. 😎

Mise à jour

Avec des systems un peu obsolètes on peut mettre à jour le binaire de restic avec</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 12 Dec 2024 10:25:55 +0000</pubDate>
        </item>
        <item>
            <title>server_monitoring</title>
            <link>https://cyrille.giquello.fr/informatique/system_admin/server_monitoring</link>
            <description>Server Monitoring

Voir aussi: /informatique/web/webstats

À lire:

	*  Linux Performance Monitoring and Tuning Introduction
	*  Five Of The Best Free Network Monitoring Software Tools
	*  10 Free Server &amp; Network Monitoring Tools that Kick Ass

Outils

	*  htop permet de monitorer l’activité de son serveur comme top, mais avec une interface plus ergonomqie et amélioré. Il liste les processus, le load average, l’utilisation RAM / SWAP…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 21 Mar 2025 10:30:15 +0000</pubDate>
        </item>
        <item>
            <title>winsock</title>
            <link>https://cyrille.giquello.fr/informatique/windows/winsock</link>
            <description>Winsock

Socket API pour Windows.

Windows Sockets 2 on MSDN.

Tips &amp; Tricks

Winsock Error Code pour dotNat C#

Windows Sockets Error Codes on MSDN



using System;

namespace WinSock
{
	/// &lt;summary&gt;
	/// Description résumée de WinSock.
	/// &lt;/summary&gt;
	public sealed class Error
	{
		private Error()
		{
		}

		public const int WSABASEERR = 10000;
		/*
		* Windows Sockets definitions of regular Microsoft C error constants
		*/
		/// &lt;summary&gt;
		/// Interrupted function call.
		/// A blocking op…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:57 +0000</pubDate>
        </item>
        <item>
            <title>graphgear</title>
            <link>https://cyrille.giquello.fr/wiki/plugins_installes/graphgear</link>
            <description>Graph Gear Plugin

le plugin : &lt;http://www.dokuwiki.org/plugin:graphgear&gt;

Graph Gear : &lt;http://www.creativesynthesis.net/blog/projects/graph-gear/&gt;

Une page sur GraphGear

Démo
&lt;graphgear width=600,height=400,label=&quot;My first Graph&quot;&gt;
  node1 [label=&quot;My first node&quot;, fillcolor=&quot;lightblue&quot;]
  node2 [label=&quot;My second node&quot;]
  
  node1 -&gt; node2 [label=&quot;An edge from node1 to node2&quot;, fontcolor=&quot;red&quot;]
&lt;/graphgear&gt;</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:19:00 +0000</pubDate>
        </item>
        <item>
            <title>horizon</title>
            <link>https://cyrille.giquello.fr/informatique/php/laravel/horizon</link>
            <description>Horizon

	*  Adding HTTP Basic Authentication to Laravel Horizon and Laravel Auth too.
	*  Get your application ready for enterprise success with Laravel Queues — from the basics to Horizon
	*  The basics of Laravel Queues using Redis and Horizon
	*  Laravel Queues and Deployments (2021)



Deploy new code

at deploy time, add composer scripts with :


horizon:terminate
queue:restart


horizon#deploying-horizon</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 20 Dec 2023 13:04:12 +0000</pubDate>
        </item>
        <item>
            <title>play_1.2_bugs</title>
            <link>https://cyrille.giquello.fr/informatique/java/frameworks/play_framework/play_1.2_bugs</link>
            <description>Playframework bugs

Play 1.2: call merge() save entity

2011-04-15


public class Essais02 extends Controller {
	public static void index() {
		Logger.debug(&quot;Person count %d&quot;, Person.count());

		Person p = new Person();
		p.name = &quot;blabla&quot;;

		p.merge();
		...</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 28 Dec 2015 00:16:52 +0000</pubDate>
        </item>
        <item>
            <title>internet_of_things</title>
            <link>https://cyrille.giquello.fr/internet_of_things</link>
            <description>Internet of Things

Ou l&#039;Internet des objets.

Plate-formes de données

	*  &lt;https://pachube.com&gt; Real-Time Web Service and Applications =&gt; &lt;https://cosm.com&gt; =&gt; &lt;https://xively.com&gt; by LogMeIn. Prices start at $999/year
	*  &lt;http://open.sen.se&gt;
	*  &lt;https://thingspeak.com&gt;

	*  &lt;https://data.sparkfun.com&gt;

Articles

	*  Cosm alternatives to record sensor measurements
	*  Alternatives to Cosm part 1, part 2, part 3

Software logger for devices</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 20 Apr 2026 07:22:19 +0000</pubDate>
        </item>
        <item>
            <title>sources_de_donnees</title>
            <link>https://cyrille.giquello.fr/sources_de_donnees</link>
            <description>Sources de données

Datahub.io

&lt;https://datahub.io&gt; (&lt;http://ckan.net&gt;)

Beaucoup de source de données référencées.

DBpedia

DBpedia is a community effort to extract structured information from Wikipedia and to make this information available on the Web.

	*  &lt;http://dbpedia.org&gt;
	*  &lt;http://thedatahub.org/dataset/dbpedia&gt;

Etalab

&lt;http://data.gouv.fr&gt;

GRID</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 05 Nov 2025 15:46:31 +0000</pubDate>
        </item>
        <item>
            <title>cellular_gsm</title>
            <link>https://cyrille.giquello.fr/divers/cellular_gsm</link>
            <description>GSM Cellular

The ITU-T Recommendation E.212 ( international mobile subscriber identity IMSI) defines mobile country codes (MCC) as well as mobile network codes (MNC). 

	*  GSM (GPRS, EDGE), CDMA, UMTS (3G, HSPA, HSPA+, DC-HSPA+), LTE (4G) et 5G 
	*  MCC</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 01 Aug 2025 07:40:26 +0000</pubDate>
        </item>
        <item>
            <title>fablab</title>
            <link>https://cyrille.giquello.fr/divers/fablab</link>
            <description>FabLab

Le terme FabLab pourrait se traduire par Labo/Usine (fabrication laboratory), soit un lieu où sont mises à disposition des utilisateurs des imprimantes d&#039;un nouveau genre, qui usinent des produits en 3D. Et en open source.

C&#039;est un LABoratoire de FABrication, Fab Lab, où toute personne, quelque soit son niveau de connaissance, peut venir expérimenter, apprendre ou fabriquer par elle-même tous types d&#039;objets (prototype technique, objet interactif, artistique ou design, meuble, etc.). Pou…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 28 Nov 2012 13:33:43 +0000</pubDate>
        </item>
        <item>
            <title>iss</title>
            <link>https://cyrille.giquello.fr/divers/iss</link>
            <description>International Space Station (ISS)

Vidéos

La chaîne YouTube de l&#039;ESA

La chaîne YouTube de la NASA

Les réponse des astronautes: 24 vidéos

	*  Présentation de la logistique de fournitures Paolo takes us on a tour of ATV in answer to question from José
	*  Que mange-t-on sur l&#039;ISS ? How does food stay fresh on the ISS?
	*  Waking up, working, and going to sleep in Zero G
	*  Comment lavez vous vos vêtements ?: On ne les lave pas, 1 semaine pour les chaussettes, un mois pour une chemise</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:46 +0000</pubDate>
        </item>
        <item>
            <title>le_salers</title>
            <link>https://cyrille.giquello.fr/divers/le_salers</link>
            <description>La raie du Salers

Le Salers

Et oui, il s&#039;agit bien de la raie du fromage Salers, présenté par l&#039;agriculteur lui-même.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:45 +0000</pubDate>
        </item>
        <item>
            <title>nabaztag</title>
            <link>https://cyrille.giquello.fr/divers/nabaztag</link>
            <description>Nabaztag

Nouvelle vie pour nos Lapins numériques car Mindspace abandonne leurs clapiers !!

Pour en parler :

	*  &lt;http://nabaztag.forumactif.fr/&gt;

&lt;note&gt;Pour les Lapins Nabaztag:Tag (ceux avec le nombril)&lt;/note&gt;

Projets de Serveur:

	*  &lt;http://ojnwiki.psnet.fr&gt;, source: &lt;https://github.com/OpenJabNab&gt;
	*  &lt;http://opennag.byethost5.com/&gt;, &lt;http://opennab.ovh.org/vl/api_demo/&gt;, source: &lt;http://sourceforge.net/projects/opennab/&gt;
	*  &lt;http://www.nabizdead.net/&gt;, pas de source, pour l&#039;instant</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:45 +0000</pubDate>
        </item>
        <item>
            <title>stop-motion</title>
            <link>https://cyrille.giquello.fr/divers/stop-motion</link>
            <description>Stop-Motion

stop-motion = image par image

C&#039;est une affaire de patience, un film d’une minute à 12 images/sec nécessite 720 captures.

Frame rate: 9 à 12 images/seconde.

Softs

Une longue liste de softs: &lt;http://www.stopmotionworks.com/stopmosoftwr.htm&gt;

bink rad video

fast movie processor</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:45 +0000</pubDate>
        </item>
        <item>
            <title>usb_extender</title>
            <link>https://cyrille.giquello.fr/electronique/usb_extender</link>
            <description>USB Extender

Softwares:

	*  VirtualHere - Share USB devices over the LAN or Internet!

Produits

Unitek Y-2505

Unitek Y-2505 USB 50M Extension Over Cat.5e

&lt;http://www.unitek-products.com/en/product_detail.php?id=24&gt;

	*  Compliant with USB 1.1 specification;
	*  Provides support for any full-speed (12 Mb/s) or low-speed (1.5 Mb/s) USB device;</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sun, 18 May 2014 15:53:43 +0000</pubDate>
        </item>
        <item>
            <title>aeronet</title>
            <link>https://cyrille.giquello.fr/glossaire/aeronet</link>
            <description>AERONET

AErosol RObotic NETwork

The AERONET (AErosol RObotic NETwork) program is a federation of ground-based remote sensing aerosol networks established by NASA and PHOTONS (Univ. of Lille 1, CNES, and CNRS-INSU) and is greatly expanded by collaborators from national agencies, institutes, universities, individual scientists, and partners. The program provides a long-term, continuous and readily accessible public domain database of aerosol optical, microphysical and radiative properties for ae…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:50 +0000</pubDate>
        </item>
        <item>
            <title>amf</title>
            <link>https://cyrille.giquello.fr/glossaire/amf</link>
            <description>AMF

Action Message Format

The Flash MX player handles serializing and deserializing ActionScript objects to and from Action Message Format(AMF). AMF serialized objects are the payload of HTTP requests and responses sent between the Flash MX client and the application server.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sun, 20 May 2012 18:58:20 +0000</pubDate>
        </item>
        <item>
            <title>atom</title>
            <link>https://cyrille.giquello.fr/glossaire/atom</link>
            <description>ATOM

Atom Syndication Format

tags: feed, syndication

Atom désigne une famille de formats XML utilisés pour la syndication de contenu Web (journaux, magazines, blogs, ...).

L&#039;appellation Atom se réfère à deux standards liés.

	*  Le Format de Syndication Atom est un format de document basé sur XML conçu pour la syndication de contenu périodique, tel que les blogs ou les sites d&#039;actualités</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sun, 19 May 2013 19:54:52 +0000</pubDate>
        </item>
        <item>
            <title>basda</title>
            <link>https://cyrille.giquello.fr/glossaire/basda</link>
            <description>BASDA

Business Application Software Developers Association

BASDA was founded in 1993. The organisation was formed from a core group of software developers, who recognised that the software industry needed an independent representative body. As a result, BASDA now represents the interests of international suppliers, resellers and user groups, as well as developers of Human Resources, Accounting, Taxation, Payroll, Logistics, Manufacturing, Document management and other business software applica…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:53 +0000</pubDate>
        </item>
        <item>
            <title>ble</title>
            <link>https://cyrille.giquello.fr/glossaire/ble</link>
            <description>BLE

Bluetooth Low Energy

As the name implies, Bluetooth Low Energy (BLE) is built specifically to consume small amounts of energy and make phone batteries last longer. But there are limitations with BLE when it comes to transferring data. BLE only supports very low data rates and you cannot stream audio using BLE.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 13 Sep 2013 12:30:02 +0000</pubDate>
        </item>
        <item>
            <title>blueprint</title>
            <link>https://cyrille.giquello.fr/glossaire/blueprint</link>
            <description>Blueprint

Le terme blueprint désigne, en anglais, un plan détaillé, ce que l&#039;on appelle en dessin technique un dessin de définition. Le terme, signifiant littéralement « impression en bleu », provient d&#039;un procédé d&#039;imprimerie, la cyanotypie.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:54 +0000</pubDate>
        </item>
        <item>
            <title>cldc</title>
            <link>https://cyrille.giquello.fr/glossaire/cldc</link>
            <description>CLDC

Connected Limited Device Configuration

The Connected Limited Device Configuration (CLDC) is a fundamental part of the architecture of the Java 2 Platform, Micro Edition (J2ME). J2ME technology is delivered in API bundles called configurations, profiles, and optional packages. A J2ME application environment includes both a configuration like CLDC and a profile like the Mobile Information Device Profile (MIDP). In addition, optional packages provide capability in specific areas of functiona…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:47 +0000</pubDate>
        </item>
        <item>
            <title>cors</title>
            <link>https://cyrille.giquello.fr/glossaire/cors</link>
            <description>CORS

Cross-Origin Resource Sharing

Cross-site HTTP requests are HTTP requests for resources from a different domain than the domain of the resource making the request.

	*  &lt;http://www.w3.org/TR/cors/&gt;
	*  &lt;https://developer.mozilla.org/en/http_access_control&gt;

Avec Apache:


&lt;IfModule mod_headers.c&gt;
 Header set Access-Control-Allow-Origin *
 ...
&lt;/IfModule&gt;</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 20 Jun 2012 20:22:08 +0000</pubDate>
        </item>
        <item>
            <title>crs</title>
            <link>https://cyrille.giquello.fr/glossaire/crs</link>
            <description>CRS

Core Rule Set (OWASP)

Grâce au OWASP Core Rule Set (CRS), vous profitez d&#039;emblée d&#039;une pré-configuration optimale de votre Mod Security qui vous prémunit contre les attaques les plus courantes :

	*  Trojan,
		*  Injections d&#039;emails,
		*  Faille des fichiers PDF,</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 04 Apr 2025 18:38:00 +0000</pubDate>
        </item>
        <item>
            <title>cte</title>
            <link>https://cyrille.giquello.fr/glossaire/cte</link>
            <description>CTE

A Common Table Expression, or CTE, (in SQL) is a temporary named result set, derived from a simple query and defined within the execution scope of a SELECT, INSERT, UPDATE, or DELETE statement.

CTEs can be thought of as alternatives to derived tables (subquery), views, and inline user-defined functions.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:47 +0000</pubDate>
        </item>
        <item>
            <title>ddsl</title>
            <link>https://cyrille.giquello.fr/glossaire/ddsl</link>
            <description>DDSL

Dynamic Distributed Service Locator

On ne trouve rien sur Google à propos de ce “Dynamic Distributed Service Locator”, c&#039;est un projet tout neuf sans RFC globale.

Where does DDSL help ?

In many big companies you have a lot of services (SOAP, REST, etc) spread  across many servers on several different Web Containers/Application Servers/ESB (Weblogic, Glassfish, Tomcat, Jetty, Mule, etc). At least this is the situation where I work. You also have several different environments: test, prep…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:52 +0000</pubDate>
        </item>
        <item>
            <title>dsn</title>
            <link>https://cyrille.giquello.fr/glossaire/dsn</link>
            <description>DSN

Database Source Name

A data structure used to describe a connection to a database.

Delivery Status Notification

Delivery Status Notification message, an automated electronic mail message about a delivery problem.

In the internet&#039;s standard e-mail</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:54 +0000</pubDate>
        </item>
        <item>
            <title>ebs</title>
            <link>https://cyrille.giquello.fr/glossaire/ebs</link>
            <description>EBS

Amazon Elastic Block Store (EBS)

Amazon Elastic Block Store (EBS) provides block level storage volumes for use with Amazon EC2 instances. Amazon EBS volumes are off-instance storage that persists independently from the life of an instance. Amazon Elastic Block Store provides highly available, highly reliable storage volumes that can be attached to a running Amazon EC2 instance and exposed as a device within the instance. Amazon EBS  is particularly suited for applications that require a da…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:52 +0000</pubDate>
        </item>
        <item>
            <title>eip</title>
            <link>https://cyrille.giquello.fr/glossaire/eip</link>
            <description>EIP

Enterprise Integration Patterns

Patterns and Best Practices for Enterprise Integration and some 66 messaging patterns by Gregor Hohpe and Bobby Woolf.

Voir:

	*  Apache-Camel =&gt; EIP engine : Camel supports most of the “Enterprise Integration Patterns” from the excellent book by Gregor Hohpe and Bobby Woolf.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 28 Dec 2015 11:52:50 +0000</pubDate>
        </item>
        <item>
            <title>guid</title>
            <link>https://cyrille.giquello.fr/glossaire/guid</link>
            <description>GUID

Globally Unique IDentifier

Un GUID (abréviation de l&#039;anglais Globally Unique IDentifier) sert habituellement d&#039;identifiant unique pour un composant logiciel, par exemple un plugin. Sa taille est de 16 octets, soit 128 bits, décomposés en:</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:46 +0000</pubDate>
        </item>
        <item>
            <title>hpc</title>
            <link>https://cyrille.giquello.fr/glossaire/hpc</link>
            <description>HPC

High Performance Computing

Calcul Haute Performance.

Voir:

	*  High Performance Computing, High Performance Computing
	*  The Apache Hadoop project develops open-source software for reliable, scalable, distributed computing. De très nombreux utilisateurs d&#039;Hadoop.
	*  The Storm project from Twitter. Stream processing, Continuous computation, Distributed RPC.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sun, 20 May 2012 18:55:52 +0000</pubDate>
        </item>
        <item>
            <title>ipmi</title>
            <link>https://cyrille.giquello.fr/glossaire/ipmi</link>
            <description>IPMI

Intelligent Platform Management Interface

Interface de gestion intelligente de matériel, (ou IPMI, Intelligent Platform Management Interface) est un ensemble de spécifications d&#039;interfaces communes avec du matériel informatique (principalement des serveurs) permettant de surveiller certains composants (ventilateur, sonde de température, …).</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:52 +0000</pubDate>
        </item>
        <item>
            <title>isc</title>
            <link>https://cyrille.giquello.fr/glossaire/isc</link>
            <description>ISC

Internet Systems Consortium

Internet Systems Consortium, Inc. (ISC) is proud to be the producer and distributor of commercial quality Open Source software for the Internet Community and to offer world-class online and professional services based on our software. Since 1996 ISC has led the industry with the most complete reference standard implementation of</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:46 +0000</pubDate>
        </item>
        <item>
            <title>isf</title>
            <link>https://cyrille.giquello.fr/glossaire/isf</link>
            <description>ISF

Information Security Forum

The Standard of Good Practice for Information Security (the Standard) is the foremost authority on information security. It addresses information security from a business perspective, providing a practical basis for assessing an organisation’s information security arrangements.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:53 +0000</pubDate>
        </item>
        <item>
            <title>jxta</title>
            <link>https://cyrille.giquello.fr/glossaire/jxta</link>
            <description>JXTA

Java JXTA

You can use JXTA technology to create Peer-To-Peer (P2P) applications based on Java technology. JXTA technology is a set of open protocols that enable any connected device on the network, ranging from cell phones and wireless PDAs to PCs and servers, to communicate and collaborate in a P2P manner.
The JXTA protocols defines a suite of six XML-based protocols that standardize the manner in which peers self-organize into peergroups, publish and discover peer resources, communicate…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:52 +0000</pubDate>
        </item>
        <item>
            <title>mms</title>
            <link>https://cyrille.giquello.fr/glossaire/mms</link>
            <description>MMS

Multi-network Metadata System

Metadata are critical to quality assessment, interpretation and utilization of data. MMS, the Multi-network Metadata System, is a long term strategy with the goal of improving consistency of and access to our critical metadata. While metadata include station histories, data inventories, data catalogs and directories and documentation of individual datasets, the initial focus has been on station histories.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:51 +0000</pubDate>
        </item>
        <item>
            <title>ndb</title>
            <link>https://cyrille.giquello.fr/glossaire/ndb</link>
            <description>NDB

Network DataBase protocol

NDB defines a protocol for use with relational database systems in a TCP/IP environment. It has the following objectives:

	*  To allow any workstation/mainframe users and applications to issue SQL statements interactively or imbedded within the application programs, to access any database on any operating system.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:48 +0000</pubDate>
        </item>
        <item>
            <title>ocs</title>
            <link>https://cyrille.giquello.fr/glossaire/ocs</link>
            <description>OCS

Open Collaboration Services

The Open Collaboration Services (OCS) is an open and vendor independent modern REST based API for integration of web communities and web based services into desktop and mobile applications. It allows to exchange relevant data from a Social Network between the site and clients such as other websites and applications or widgets running locally on the user&#039;s machine or mobile device. The protocol has been designed so that all applications can access multiple servic…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:47 +0000</pubDate>
        </item>
        <item>
            <title>opencv</title>
            <link>https://cyrille.giquello.fr/glossaire/opencv</link>
            <description>OpenCV

Open Source Computer Vision

OpenCV (Open Source Computer Vision) is a library of programming functions for real time computer vision.

OpenCV is released under a BSD license, it is free for both academic and commercial use. It has C++, C, Python and soon Java interfaces running on Windows, Linux, Android and Mac. The library has &gt;2500 optimized algorithms. It is used around the world, has &gt;2.5M downloads and &gt;40K people in the user group. Uses range from interactive art, to mine inspect…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 30 May 2014 14:00:57 +0000</pubDate>
        </item>
        <item>
            <title>purl</title>
            <link>https://cyrille.giquello.fr/glossaire/purl</link>
            <description>PURL

Persistent Uniform Resource Locator

PURLs (Persistent Uniform Resource Locators) are Web addresses that act as permanent identifiers in the face of a dynamic and changing Web infrastructure. Instead of resolving directly to Web resources, PURLs provide a level of indirection that allows the underlying Web addresses of resources to change over time without negatively affecting systems that depend on them. This capability provides continuity of references to network resources that may migra…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sat, 11 Jun 2016 15:19:21 +0000</pubDate>
        </item>
        <item>
            <title>rng</title>
            <link>https://cyrille.giquello.fr/glossaire/rng</link>
            <description>RNG

Random Number Generation

Un générateur de nombres aléatoires, random number generator (RNG) en anglais, est un dispositif capable de produire une séquence de nombres dont on ne peut pas « facilement » tirer des propriétés déterministes, de façon à ce que cette séquence puisse être appelée : suite de nombres aléatoires.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:52 +0000</pubDate>
        </item>
        <item>
            <title>spf</title>
            <link>https://cyrille.giquello.fr/glossaire/spf</link>
            <description>SPF

Sender Policy Framework

Standard pour lutter contre l&#039;astuce de “Sender Address Forgery” pour l&#039;envoi de Spam.

Today, nearly all abusive e-mail messages carry fake sender addresses. The victims whose addresses are being abused often suffer from the consequences, because their reputation gets diminished and they have to disclaim liability for the abuse, or waste their time sorting out misdirected bounce messages.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:48 +0000</pubDate>
        </item>
        <item>
            <title>stomp</title>
            <link>https://cyrille.giquello.fr/glossaire/stomp</link>
            <description>Stomp

Streaming Text Orientated Messaging Protocol

Stomp is the Streaming Text Orientated Messaging Protocol, easy to implement http-like protocol for asynchronous messaging (or the Protocol Briefly Known as TTMP and Represented by the symbol :ttmp). For more information take a look at</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:53 +0000</pubDate>
        </item>
        <item>
            <title>topojson</title>
            <link>https://cyrille.giquello.fr/glossaire/topojson</link>
            <description>TopoJson

&lt;https://github.com/mbostock/topojson/&gt;, Specification

TopoJSON is an extension of GeoJSON that encodes topology. Rather than representing geometries discretely, geometries in TopoJSON files are stitched together from shared line segments called arcs. TopoJSON eliminates redundancy, offering much more compact representations of geometry than with GeoJSON; typical TopoJSON files are 80% smaller than their GeoJSON equivalents. In addition, TopoJSON facilitates applications that use topo…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sat, 25 May 2013 17:57:09 +0000</pubDate>
        </item>
        <item>
            <title>udc</title>
            <link>https://cyrille.giquello.fr/glossaire/udc</link>
            <description>UDC

Universal Decimal Classification

The Multilingual Universal Decimal Classification Summary - UDC Summary - represents a selection of around 2,600 classes extracted from the UDC Master Reference File (UDC MRF) 2011 which contains over 70,000 classes.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 23 Sep 2016 18:11:06 +0000</pubDate>
        </item>
        <item>
            <title>wol</title>
            <link>https://cyrille.giquello.fr/glossaire/wol</link>
            <description>WOL

Wake On Lan

Wake on LAN (WOL) is a standard that allows you to turn on a computer from another location over a network connection or Internet.

	*  &lt;http://wakeonlan.me/&gt;
	*  &lt;http://www.rtsecurity.com/kb/tech/wakeonlan.php&gt;</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:54 +0000</pubDate>
        </item>
        <item>
            <title>xa</title>
            <link>https://cyrille.giquello.fr/glossaire/xa</link>
            <description>XA

XA transactions

XA (“eXtended Architecture”) is an X/Open group standard for accessing several back-end data stores within the same global transaction. The specification governs how a transaction manager (such as Atomikos®) can tell a database what work is going on as part of what transaction, and how to conduct the two-phase commit protocol at the end of each transaction. Also included is how to recover pending transactions from the data store.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:53 +0000</pubDate>
        </item>
        <item>
            <title>ansible</title>
            <link>https://cyrille.giquello.fr/informatique/ansible</link>
            <description>Ansible

	*  &lt;http://docs.ansible.com&gt;
	*  Ansible : conseils d&#039;organisation

Installer ansible


sudo apt-add-repository ppa:ansible/ansible

sudo apt install ansible
Les NOUVEAUX paquets suivants seront installés :
  ansible ansible-core python-babel-localedata python3-babel python3-jinja2 python3-jmespath python3-kerberos
  python3-ntlm-auth python3-requests-kerberos python3-requests-ntlm python3-resolvelib python3-winrm python3-xmltodict
  sshpass</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 05 Oct 2023 16:41:09 +0000</pubDate>
        </item>
        <item>
            <title>apache</title>
            <link>https://cyrille.giquello.fr/informatique/apache</link>
            <description>Apache (httpd)

Sur les serveurs web en général: /informatique/httpd

Manuel en français.

Installer Mod_SSL/Apache/Php.

Le module Mod_SSL.

Une bonne présentationFR des modules mod_cache, mod_disk_cache, mod_mem_cache, mod_file_cache : Guide de la mise en cache.

Sécurité

Apache en Chroot

Combiner Apache et la commande chroot

Apache in a chroot jail from “Securing and Optimizing Linux: RedHat Edition - A Hands on Guide”

Une série sur www.cyberciti.biz:

	*  Red Hat / CentOS: Chroot Apache …</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:19:00 +0000</pubDate>
        </item>
        <item>
            <title>arnova</title>
            <link>https://cyrille.giquello.fr/informatique/arnova</link>
            <description>Arnova

Arnova 10b

Arnova 10b, en fait une Archos A101C, rk2818, ARM926Ej-S rev 5 (v5l)

	*  Debian (gnome) pour Archos 101 it BETA 2
	*  Special developer edition firmware (SDE)

Linux Installer

	*  &lt;https://play.google.com/store/apps/details?id=com.galoula.LinuxInstall&gt;
	*  &lt;http://android.galoula.com/en/LinuxInstall/&gt;

ChildPad

This may be a bit late, but I have had the same issues in getting it into flash mode. There is a button inside the case (if you take the back off) then press that a…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 11 Aug 2025 11:25:48 +0000</pubDate>
        </item>
        <item>
            <title>axcrypt</title>
            <link>https://cyrille.giquello.fr/informatique/axcrypt</link>
            <description>AxCrypt

AxCrypt is free and easy to use open source strong file encryption for Windows 95/98/ME/NT/2K/XP, integrated with Windows Explorer. Encrypt, compress, decrypt, wipe, view and edit with a few mouse clicks. Cryptographic primitives are AES-128 and SHA-1.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:57 +0000</pubDate>
        </item>
        <item>
            <title>calendar_adressbook_messaging</title>
            <link>https://cyrille.giquello.fr/informatique/calendar_adressbook_messaging</link>
            <description>microsoft exchange

	*  Outlook

SOGo

&lt;http://www.scalableogo.org/fr/tour/screenshots.html&gt;

	*  Outlook
	*  Thunderbird + Lightning
	*  Apple iCal
	*  More

More

Thunderbird&#039;s Lightning extension

&lt;https://addons.mozilla.org/fr/thunderbird/addon/2313&gt;

Lightning vs. Exchange Server 2003

Synchronising Mozilla, Thunderbird, Lightning Calendard with Exchange

&lt;http://www.cs.bham.ac.uk/~smp/resources/exchange/&gt;

	*  Sync Kolab : &lt;http://www.gargan.org/extensions/synckolab.html&gt; SyncKolab was wri…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:55 +0000</pubDate>
        </item>
        <item>
            <title>cloud_computing</title>
            <link>https://cyrille.giquello.fr/informatique/cloud_computing</link>
            <description>Cloud Computing

 Infrascructure as a Service (IaaS), Platform as a Service (PaaS), Software as a Service (SaaS), Function as a Service (FaaS) (aka ServerLess).

Projets

Simple Cloud API

The Simple Cloud API brings cloud technologies to PHP and the PHPilosophy to the cloud, starting with common interfaces for three cloud application services:

	*  File Storage Services</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 25 Jun 2025 15:18:58 +0000</pubDate>
        </item>
        <item>
            <title>cms</title>
            <link>https://cyrille.giquello.fr/informatique/cms</link>
            <description>Gestionnaire de Contenu - CMS

Gestionnaire de Contenu / Content Managment System

WCM pour Web Content Management.

A Content Repository is a high-level information management system that is a superset of traditional data repositories. A content repository implements</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 02 May 2025 14:07:18 +0000</pubDate>
        </item>
        <item>
            <title>column-oriented-database</title>
            <link>https://cyrille.giquello.fr/informatique/column-oriented-database</link>
            <description>Column-oriented Database

Une base de données orientée colonnes est un système de gestion de base de données (SGBD) qui stocke les tableaux de données par colonne et non par ligne.

Softwares

ClickHouse

ClickHouse® is an open-source column-oriented database management system that allows generating analytical data reports in real-time.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 06 Feb 2026 08:33:14 +0000</pubDate>
        </item>
        <item>
            <title>convention_de_codage</title>
            <link>https://cyrille.giquello.fr/informatique/convention_de_codage</link>
            <description>Convention de codage

La plupart des programmeurs ont leur propre style de codage bien distinct. De petits détails comme comment ils gèrent les exceptions, comment ils commentent le code, quand ils retournent null, etc. Dans certains cas la différence n’a pas d’importance, dans d’autres cas elle peut conduire à une conception système gravement incohérente et du code très difficile à lire. Des normes de codage sont très utiles dans ce cas, du moins tant que vous vous concentrez sur les choses qui…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:57 +0000</pubDate>
        </item>
        <item>
            <title>data_visualization</title>
            <link>https://cyrille.giquello.fr/informatique/data_visualization</link>
            <description>Data Visualization

tags: data visualisation, visualisation de données

voir aussi: informatique/graphdb#graph_db_tools, Sciences-Po Medialab tools

3D Globe

	*  &lt;http://workshop.chromeexperiments.com/projects/armsglobe/&gt;
	*  &lt;http://xseignard.github.io/migrationGlobe/&gt;
	*  &lt;http://cyberwar.kaspersky.com/&gt;

Softwares

RAWgraphs

En ligne, facile d&#039;accès

&lt;https://www.rawgraphs.io/&gt;

code source &lt;https://github.com/rawgraphs&gt;

Gephi

Gephi, The Open Graph Viz Platform.

Sigma.js

Librairie Javas…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sat, 03 Jan 2026 08:55:02 +0000</pubDate>
        </item>
        <item>
            <title>elgg</title>
            <link>https://cyrille.giquello.fr/informatique/elgg</link>
            <description>Elgg

&lt;http://www.elgg.org/&gt;

friends, groups, messages, pages, blogs, comments, forum, files, tags, rss, widgets

En autres, utilisé par les université Paris-Descartes et Versailles Saint-Quentin, &lt;http://www.reseaufing.org&gt;, &lt;http://departements-en-reseaux.fr&gt;

Documentation

	*  Vazco - Professional Elgg developers from Poland, with articles about optimizing Elgg</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 23 Apr 2013 22:05:09 +0000</pubDate>
        </item>
        <item>
            <title>fop</title>
            <link>https://cyrille.giquello.fr/informatique/fop</link>
            <description>Formatting Objects Processor (FOP)

&lt;http://xmlgraphics.apache.org/fop&gt;

FOP uses XSL-FO as input.

iText

xmlRoff

Tips

FOP from PHP

&lt;http://wiki.apache.org/xmlgraphics-fop/HowTo/PHPJavaBridge&gt;</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:56 +0000</pubDate>
        </item>
        <item>
            <title>httpd</title>
            <link>https://cyrille.giquello.fr/informatique/httpd</link>
            <description>HTTPD

	*  Comparison of lightweight web servers
	*  The C10k problem is a limitation that most web servers currently have.

Apache

Voir /informatique/Apache.

lighttpd

&lt;http://www.lighttpd.net&gt;

Nginx

Voir /informatique/Nginx.

Cherokee

&lt;http://www.cherokee-project.com&gt;

Voir:

	*  &lt;http://lacuisinedegandi.net/post/2010/04/29/Cherokee-arrive-chez-Gandi&gt;

TinyWeb

TinyWeb is an extremely small (executable file size is 53K), simple (no configuration other than through the command line) and fa…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:57 +0000</pubDate>
        </item>
        <item>
            <title>igc</title>
            <link>https://cyrille.giquello.fr/informatique/igc</link>
            <description>Infrastructure de Gestion de Clefs

En anglais: Public Key Infrastructure (PKI).

Voir :

	*  /glossaire/IGC, /informatique/openssl, informatique/crypto
	*  Introduction à la cryptographie sur commentcamarche.net.

Softs

	*  &lt;http://www.ejbca.org/complimentary.html&gt;

PKIF &amp; Webcullis

The PKI Framework

&lt;http://pkif.sourceforge.net&gt;

Webcullis, Simple PKI-based access control for the Web. Webcullis
is a security plug-in formultiple https servers. It is designed to strengthen
the web server’s ab…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 12 Sep 2014 15:33:43 +0000</pubDate>
        </item>
        <item>
            <title>leaflet</title>
            <link>https://cyrille.giquello.fr/informatique/leaflet</link>
            <description>Leaflet JS

&lt;http://leafletjs.com/&gt;

Voir aussi:

	*  OpenLayers
	*  Crosslet is a JavaScript widget for interactive visualisation and analysis of geostatistical datasets. You can also use it for visualizing and comparing multivariate datasets.
	*  Leaflet Tag Filter Button permet de filter les markers selon des tags</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sun, 15 Jan 2023 09:20:19 +0000</pubDate>
        </item>
        <item>
            <title>linkeddata</title>
            <link>https://cyrille.giquello.fr/informatique/linkeddata</link>
            <description>Linked Data

Description des données -&gt; Semantic Web (SW) -&gt; Relations entre les données -&gt; Linked Data (LD)

Voir aussi:

	*  /informatique/web_semantique

Application area of SW technologies: portal, improved search, data integration, service integration, content discovery, content management, semantic annotation, provenance tracking, domain modeling, social networks</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 21 Dec 2020 19:32:12 +0000</pubDate>
        </item>
        <item>
            <title>memory_test</title>
            <link>https://cyrille.giquello.fr/informatique/memory_test</link>
            <description>Memory Test

Outils pour tester la mémoire vive d&#039;un computer

Outils

Ultimate Boot CD

UBCD 4.1.1 Contient de nombreux outils dont les testeurs de mémoire suivants :
 Memory Tests  Memtest86 3.3  Memtest86+ 1.70  Windows Memory Diagnostic  DocMem RAM Diagnostic 3.1beta  TestMemIV 
MemTest86 +

&lt;http://www.memtest.org/&gt;

Based on the well-known original memtest86 written by Chris Brady, memtest86+ is a port by some members of the x86-secret team, now working at</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:58 +0000</pubDate>
        </item>
        <item>
            <title>microformats</title>
            <link>https://cyrille.giquello.fr/informatique/microformats</link>
            <description>Micorformats

Microformats est une méthode pour apporter plus de sens au HTML.

Les microformats (parfois abrégés μF) sont un ensemble de conventions pour intégrer une sémantique en HTML et fournir une API utilisable par les moteurs de recherche, les agrégateurs et d&#039;autres outils (© MDN).</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 22 Apr 2026 14:23:04 +0000</pubDate>
        </item>
        <item>
            <title>mini-ordi</title>
            <link>https://cyrille.giquello.fr/informatique/mini-ordi</link>
            <description>mini-ordi

Voir aussi:

	*  Smartbook - EeePC
	*  Tablette PC

vendeurs

	*  &lt;http://www.thinkitx.com/&gt; (un bundle à 220€
	*  &lt;http://www.itx-france.com/&gt;
	*  &lt;http://www.materiel.net/&gt;
	*  &lt;http://www.ldlc.com/&gt;
	*  &lt;http://www.actualis.biz/&gt;

Produits

Divers:

	*  &lt;https://ssl.kundenserver.de/ssl.taskit.de/xtc/shop_content.php?coID=9&gt;

Gooseberry

&lt;http://gooseberry.atspace.co.uk/&gt;

Raspberry pi

raspberrypi

Ionics plug

	*  Nimbus: 100$ &lt;http://www.ionicsplug.com/nimbus.html&gt;
	*  Stratus: 1…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 06 Jul 2012 20:13:34 +0000</pubDate>
        </item>
        <item>
            <title>netbeans</title>
            <link>https://cyrille.giquello.fr/informatique/netbeans</link>
            <description>Netbeans

Code IDE from SUN, Oups! Oracle.

Tips

GNOME.Accessibility.AtkWrapper

java.awt.AWTError: Assistive Technology not found: org.GNOME.Accessibility.AtkWrapper


# /etc/java-11-openjdk/accessibility.properties
# Doesn&#039;t work, see LP: #935296
#assistive_technologies=org.GNOME.Accessibility.AtkWrapper</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 16 Jun 2023 07:54:57 +0000</pubDate>
        </item>
        <item>
            <title>node.js</title>
            <link>https://cyrille.giquello.fr/informatique/node.js</link>
            <description>Node.js

&lt;http://nodejs.org/&gt;

En vrac

Functional Reactive Programming (FRP).

NeDB: a lightweight Javascript database using MongoDB’s API - NeDB is a lightweight database written entirely in Javascript, and that implements the well-known and loved MongoDB API. It is packaged as a Node module that be used with a simple require and can be used as an in-memory only or persistent datastore. You can think of it as SQLite for MongoDB projects.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 17 Nov 2022 06:45:48 +0000</pubDate>
        </item>
        <item>
            <title>open-xchange</title>
            <link>https://cyrille.giquello.fr/informatique/open-xchange</link>
            <description>Open-Xchange

Open-Xchange Community Edition

Open-Xchange Community Edition differs from other Open-Xchange editions in not being supported by Open-Xchange. It has the very same functionality like all other editions and shares the same code base.

When you choose to install packages for one of the maintained platforms as listed below, you can later buy maintenance and a support contract without migrating any data.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:57 +0000</pubDate>
        </item>
        <item>
            <title>openssl</title>
            <link>https://cyrille.giquello.fr/informatique/openssl</link>
            <description>OpenSSL

Voir aussi :

	*  Infrastructure de Gestion de Clefs
	*  Mod_SSL

On line tools:

	*  &lt;http://www.sslshopper.com/ssl-certificate-tools.html&gt;

Code Signing with OpenSSL

	*  &lt;http://huddledmasses.org/code-signing-with-openssl-and-powershell/&gt;
	*  &lt;http://www.top20toolbar.com/misc/codesigncert.htm&gt;

Vérification de certificat avec OpenSSL

	*  &lt;http://isc.sans.edu/diary.html?storyid=8686&gt;


 openssl s_client -connect isc.sans.org:443


on line tools:

	*  Thawte SSL Toolbox Check certific…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 17 Aug 2021 13:43:43 +0000</pubDate>
        </item>
        <item>
            <title>openstack</title>
            <link>https://cyrille.giquello.fr/informatique/openstack</link>
            <description>Openstack

Migrer une VM de OVH vers Scaleway

	*  &lt;https://docs.ovh.com/fr/public-cloud/transferer-la-sauvegarde-dune-instance-dun-datacentre-a-lautre/&gt;
	*  &lt;https://www.scaleway.com/en/docs/create-an-image-from-scratch/&gt;</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 14 May 2021 06:42:55 +0000</pubDate>
        </item>
        <item>
            <title>orm</title>
            <link>https://cyrille.giquello.fr/informatique/orm</link>
            <description>ORM

Doc

Un article pour expliquer le problème du “Lazy Loading”: ORMs : L&#039;Entity Framework de Microsoft aura meilleure réputation que NHibernate

Implémentations

	*  Implémentations pour PHP

Hibernate / NHibernate

Hibernate is a powerful, high performance object/relational persistence and query service. Hibernate lets you develop persistent classes following object-oriented idiom - including association, inheritance, polymorphism, composition, and collections. Hibernate allows you to expres…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:59 +0000</pubDate>
        </item>
        <item>
            <title>owncloud</title>
            <link>https://cyrille.giquello.fr/informatique/owncloud</link>
            <description>OwnCloud

&lt;http://owncloud.org/&gt;

Un cousin de unhosted

&lt;irc://irc.freenode.net#owncloud&gt;

docs

	*  &lt;http://owncloud.org/support/usage/calendars/&gt;
	*  &lt;http://www.owncloud.fr/forum&gt; Forum français

blogs

	*  &lt;http://wiki.lolica.org/doku.php/membre/pierre/owncloud&gt;
	*  &lt;http://dmfs.org/wiki/index.php?title=OwnCloud&gt;

Il manque un addon FileLink pour Thunderbird. Le seul que j&#039;ai trouvé, mais qui ne fonctionne pas encore (2014-01-05) : &lt;https://github.com/guillaumev/owncloud_for_filelink&gt;

	*  …</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sat, 02 May 2015 14:51:03 +0000</pubDate>
        </item>
        <item>
            <title>powerpoint</title>
            <link>https://cyrille.giquello.fr/informatique/powerpoint</link>
            <description>Microsoft Powerpoint

Automating Powerpoint

Ok, c&#039;est facile de piloter Powerpoint d&#039;une autre application, mais quand on veut approcher la perfection les ennuis commencent. 

Sur ce site beaucoup d&#039;astuces pour améliorer le rendu et les performances :</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:56 +0000</pubDate>
        </item>
        <item>
            <title>rpm</title>
            <link>https://cyrille.giquello.fr/informatique/rpm</link>
            <description>RPM

checkinstall

Use CheckInstall when installing from Source.

Pas de paquet pour ce programme, et l&#039;installer depuis une compilation va casser la gestion des paquets et vous ennuyer lors de la résolution des dépendances.

Une solution rapide pour compiler à la mano puis informer le gestionnaire de packages de la nouvelle installation:</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:58 +0000</pubDate>
        </item>
        <item>
            <title>rss</title>
            <link>https://cyrille.giquello.fr/informatique/rss</link>
            <description>RSS

Voir RSS

Agregateur côté serveur

Magpie RSS

&lt;http://magpierss.sourceforge.net&gt;

FOF

Feed OnFeeds

&lt;http://feedonfeeds.com&gt;

Tips

Strip html from RSS elements
/&lt;(script|noscript|object|embed|style|frameset|frame|iframe)[&gt;\s\S]*&lt;\/\1&gt;/i
/&lt;\/?!?(param|link|meta|doctype|div|font)[^&gt;]*&gt;/i
/(class|style|id)=”[^&quot;]*”/i</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:58 +0000</pubDate>
        </item>
        <item>
            <title>safenet_etoken_5110</title>
            <link>https://cyrille.giquello.fr/informatique/safenet_etoken_5110</link>
            <description>SafeNet eToken 5110

[SafeNet eToken 5110]

	*  Product brief by Gemalto &lt;https://www.linux.org/attachments/safenet-etoken-5110-product-brief-pdf.3477/&gt; ou &lt;https://cpl.thalesgroup.com/sites/default/files/content/product_briefs/field_document/2022-09/safenet-etoken-5110-pb.pdf&gt;
	*  Digicert knowledge base Initialize a SafeNet eToken 5110CC
	*  Safenet Authenfication Client (SAC) Linux SafeNet drivers sur globalsign.com (Ubuntu 20.04 et 22.04, CentOS 8 et 9, Debian et RedHat 32 et 64 bit)
	*  Con…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 28 Aug 2023 15:43:21 +0000</pubDate>
        </item>
        <item>
            <title>tinymce</title>
            <link>https://cyrille.giquello.fr/informatique/tinymce</link>
            <description>TinyMCE

The free version comes with the Open Source license LGPL 2.1 and is supported by the community.

&lt;http://tinymce.moxiecode.com/&gt;

Options

content_css

This option enables you to specify a custom CSS file that extends the theme content CSS. This CSS file is the one used within the editor (the editable area). This option can also be a comma separated list of URLs.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 02 Jun 2017 18:59:54 +0000</pubDate>
        </item>
        <item>
            <title>vector_tiles</title>
            <link>https://cyrille.giquello.fr/informatique/vector_tiles</link>
            <description>Tuiles vectorielles

Le format de tuiles vectorielles Mapbox Vector Tiles (MVT) fourni un stockage pyramidale des tuiles pour représenter des données géographiques (une carte 🙂).

Ce format peut être contenues dans les formats d&#039;archive:

	*  MBTiles (sqlite)
	*  PMTiles, an open archive format for pyramids of tile data, accessible via</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sun, 05 Jan 2025 09:32:26 +0000</pubDate>
        </item>
        <item>
            <title>vpn</title>
            <link>https://cyrille.giquello.fr/informatique/vpn</link>
            <description>VPN

il faut forwarder le port tcp 1723 (pptp), mais aussi le protocole gre (47) qui lui n&#039;est pas un port, ça n&#039;est pas possible sur tous les routeurs. 

PPTP uses IP protocol 47, designed for “General Routing Encapsulation” or GRE packets. A common mistake in configuring firewalls for use with PPTP is to open PPTP port 1723 (allowing connections to be established) but forget to forward GRE protocol type 47 (denying port data from passing through the tunnel). Some operating systems include</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:58 +0000</pubDate>
        </item>
        <item>
            <title>web_automation</title>
            <link>https://cyrille.giquello.fr/informatique/web_automation</link>
            <description>Web Automation

On-line services

[https://ifttt.com] &lt;https://ifttt.com&gt; - Put the internet to work for you : If This Then That.

[https://zapier.com] &lt;https://zapier.com&gt; - superpowers to get your work done
connect and automate over web apps.

[http://wappwolf.com] &lt;http://wappwolf.com&gt; - Wappwolf is focused on deconstructing the barriers of the Cloud. By connecting your Evernote, Facebook, Flickr, and other web services / apps to Dropbox, Google Drive &amp; Box.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 28 Nov 2013 22:12:12 +0000</pubDate>
        </item>
        <item>
            <title>web_scraping</title>
            <link>https://cyrille.giquello.fr/informatique/web_scraping</link>
            <description>Web Scraping

Libraries

	*  Scrapy (Python) &lt;http://www.scrapy.org/&gt;

On line services

	*  Yahoo Query Language &lt;http://developer.yahoo.com/yql/&gt;, &lt;http://yuilibrary.com/yui/docs/yql/&gt;
		*  exemple query état des stations Vélo Toulouse : &lt;http://query.yahooapis.com/v1/public/yql?q=select%20%2A%20from%20xml%20where%20url%20%3D%20%22http%3A%2F%2Fwww.velo.toulouse.fr%2Fservice%2Fstationdetails%2Ftoulouse%2F1%22&amp;format=json&amp;diagnostics=true&amp;callback=&gt;

	*  Bobik &lt;http://usebobik.com/api/docs&gt;
	*  …</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 21 Apr 2026 08:50:58 +0000</pubDate>
        </item>
        <item>
            <title>xmind</title>
            <link>https://cyrille.giquello.fr/informatique/xmind</link>
            <description>XMind


Popular brainstorming and mind mapping tool,Eclipse Community Award 2008 winner,often used for capture ideas,knowledge/project management and GTD,supporting fishbones/org-charts/tree charts/spreadsheets,compatible with Freemind/Mindmanager,easy-to-use.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 02 Dec 2016 03:19:26 +0000</pubDate>
        </item>
        <item>
            <title>brouillon</title>
            <link>https://cyrille.giquello.fr/japon/brouillon</link>
            <description>You would like to offer a temporary home to Japanese people, so they can be safe during this agitated period. Here is the Forum where world&#039;s people can offer free and temporary home. We accept propositions from all around the world 

Vous souhaitez offrir gracieusement un foyer temporaire à des japonais pour qu&#039;ils trouvent un peu de sécurité en ces temps agités, n&#039;hésitez pas à vous connectez sur notre forum et à faire des propositions de logement gratuit et temporaire. Nous acceptons des prop…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:19:00 +0000</pubDate>
        </item>
        <item>
            <title>mastodon</title>
            <link>https://cyrille.giquello.fr/web/mastodon</link>
            <description>Mastodon

	*  Un guide rapide de Mastodon Joachim 2022-04-29
	*  La doc officielle en anglais

Serveurs (Instances)

Trouver une instance:

	*  &lt;https://joinmastodon.org/fr/servers&gt; pour choisir un serveur
	*  &lt;https://instances.social&gt; pour choisir un serveur et aussi connaître leur statut (up/down, users...)

Qlqs instances:

	*  &lt;https://mastodon.social&gt;
	*  &lt;https://mamot.fr&gt;
	*  &lt;https://pouet.april.org&gt;
	*  &lt;https://piaille.fr&gt;
	*</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sun, 06 Nov 2022 20:37:49 +0000</pubDate>
        </item>
        <item>
            <title>protocole_version_http</title>
            <link>https://cyrille.giquello.fr/divers/nabaztag/protocole_version_http</link>
            <description>Protocole version HTTP

&lt;note warning&gt;
Le Lapin étudié est un Nabaztag:Tag : version avec le nombril (micro et lecteur RFID).

Le bytecode utilisé est celui du projet OpenNab. Ce n&#039;est pas la dernière version éditée par Violet puisqu&#039;on ne veut pas bosser avec XMPP, mais avec HTTP seulement. Il s&#039;agit de celui du projet OpenNab. Ce bytecode a été modifier pour utiliser des URLs adaptées au projet OpenNab qui utilise PHP:</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:45 +0000</pubDate>
        </item>
        <item>
            <title>ai_nlp_rag</title>
            <link>https://cyrille.giquello.fr/informatique/ai_lm/ai_nlp_rag</link>
            <description>AI NLP and RAG

	*  NLP: Natural Language Processing, Traitement automatique du langage naturel
	*  RAG: Retrieval-Augmented Generation, récupération d’informations et génération de texte

Voir aussi: OCR (AI Vision)

Outils RAG:

	*  &lt;https://github.com/run-llama/llama_index&gt;
	*  RAGatouille : bridging the gap between state-of-the-art research and alchemical RAG pipeline practices</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 04 Jun 2026 06:21:14 +0000</pubDate>
        </item>
        <item>
            <title>installation</title>
            <link>https://cyrille.giquello.fr/informatique/apache/installation</link>
            <description>Installer Apache/Php/Mod_SSL

Récupération des sources


ApacheArchiveBase=apache_1.3.41
PhpArchiveBase=php-5.2.9
ModgzipArchiveBase=mod_gzip.c
ModsslArchiveBase=mod_ssl-2.8.31-1.3.41

wget ftp://mir1.ovh.net/ftp.apache.org/dist/httpd/${ApacheArchiveBase}.tar.gz
wget http://www.modssl.org/source/${ModsslArchiveBase}.tar.gz
wget ftp://ftp.ovh.net/made-in-ovh/maj-ovh/${ModgzipArchiveBase}.gz
wget http://www.php.net/get/${PhpArchiveBase}.tar.gz/from/fr.php.net/mirror -O ${PhpArchiveBase}.tar.gz

rm…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:57 +0000</pubDate>
        </item>
        <item>
            <title>sharepoint</title>
            <link>https://cyrille.giquello.fr/informatique/cms/sharepoint</link>
            <description>SharePoint

Windows Sharepoint Services (WSS).

	*  Windows SharePoint Services 3.0 Tools: Visual Studio 2008 Extensions, Version 1.2, Tools for developing custom SharePoint applications: Visual Studio project templates for Web Parts, site definitions, and list definitions; and a stand-alone utility program, the SharePoint Solution Generator.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:58 +0000</pubDate>
        </item>
        <item>
            <title>applications_faites_avec_flutter</title>
            <link>https://cyrille.giquello.fr/informatique/flutter/applications_faites_avec_flutter</link>
            <description>Applications faites avec Flutter

Pour documentation, inspiration et savoir-faire.

	*  &lt;https://github.com/instaflutter/awesome-flutter?tab=readme-ov-file#open-source-apps&gt;
	*  Rechercher sur github.

CroustiWiki

	*  Panoramax mobile app &lt;https://gitlab.com/panoramax/clients/mobile-app/&gt;
	*  &lt;https://github.com/deckerst/aves&gt; is a gallery and metadata explorer app, built for Android with Flutter.
		*  pubspec.yaml: get_it, provider, permission_handler, shared_preferences, vector_map_tiles</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 13 Aug 2025 08:41:53 +0000</pubDate>
        </item>
        <item>
            <title>trac</title>
            <link>https://cyrille.giquello.fr/informatique/issue_tracking_system/trac</link>
            <description>Trac

&lt;http://trac.edgewall.org/&gt;

Installation

&lt;http://trac.edgewall.org/wiki/TracInstall&gt;

CentOS 5.5 + RPMForge

Installation de Trac et mod_wsgi

	*  &lt;http://trac.edgewall.org/wiki/TracModWSGI&gt;
	*  &lt;http://zxmax.wordpress.com/2010/09/19/installing-trac-0-12-on-centos-5-5/&gt;
yum install python-setuptools python-tz
easy_install Pygments
easy_install docutilsyum install httpd-devel apxs python-devel
wget http://modwsgi.googlecode.com/files/mod_wsgi-3.3.tar.gz
tar zxf mod_wsgi-3.3.tar.gz
cd mod_…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:57 +0000</pubDate>
        </item>
        <item>
            <title>laravel</title>
            <link>https://cyrille.giquello.fr/informatique/php/laravel</link>
            <description>Laravel

Ancienne page Laravel avant la version 12, mais avec plein de packages ;-)

Installation

Version 1

Plusieurs façons d&#039;installer Laravel:

	*  Avec son Installateur
		*  Qui vous propose de choisir un Starter-Kit entre Vue, React ou Livewire
		*  pour d&#039;autres starter-kit voir la suite</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 18 May 2026 15:44:13 +0000</pubDate>
        </item>
        <item>
            <title>orm</title>
            <link>https://cyrille.giquello.fr/informatique/php/orm</link>
            <description>Object Relational Mapping (ORM) pour PHP

Voir aussi :

	*  Glossaire: Object Relational Mapping (ORM)
	*  Page: Database Abstraction Layers (DAL) for Php.

Articles

Symfony: bench des ORM Propel et Doctrine

ORM in PHP using Propel 3. September 2007

Etudes comparatives

2009-05-16 doctrine-vs-propel-2009-update

2009-02-22 benchsymfonyorm

2008-07-17 Reconciling Propel and Doctrine

2008-04-10 Propel is not hard anymore

Implémentations

En vrac

&lt;http://swik.net/orm?popular&gt;

Eazy PHP Data O…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:57 +0000</pubDate>
        </item>
        <item>
            <title>closed_lines</title>
            <link>https://cyrille.giquello.fr/informatique/processing/closed_lines</link>
            <description>ClosedLine

from &lt;http://jmartinho.net/digitalArt-html5/index.php?art=closedLine&gt;


// JOAO MARTINHO MOURA //
// www.jmartinho.net //
// //
int tamanhoWIDTH = 950;
int tamanhoHEIGHT = 500;
int numeroPontos = 200;
int[] NumerosArrayX = new int[numeroPontos];
int[] NumerosArrayY = new int[numeroPontos];
int[] RND_NumerosArrayX = new int[numeroPontos];
int[] RND_NumerosArrayY = new int[numeroPontos];
int contaMouse=0;
void setup() {
 frameRate(20);
 background(255,255,255);
 size(tamanhoWIDTH, tama…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sun, 23 Sep 2012 07:59:31 +0000</pubDate>
        </item>
        <item>
            <title>extraire_pages_pdf</title>
            <link>https://cyrille.giquello.fr/informatique/python/extraire_pages_pdf</link>
            <description>Extraire les pages d&#039;un PDF

Extraire les pages d&#039;un PDF et nommer les fichiers résultant avec une donnée contenu dans chaque page.

	*  Using PDFPlumber for PDF data extraction
	*  &lt;https://github.com/jsvine/pdfplumber&gt;


import os
import pdfplumber
from pypdf import PdfReader, PdfWriter
import re

# Le fichier source PDF
pdf_path = &quot;./le gros fichier.pdf&quot;

# Dossier de sortie
output_folder = &quot;pages&quot;
os.makedirs(output_folder, exist_ok=True)

# Lecture avec pdfplumber pour extraire le texte
wit…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 09 Jul 2025 08:21:32 +0000</pubDate>
        </item>
        <item>
            <title>exim4</title>
            <link>https://cyrille.giquello.fr/informatique/reseau/exim4</link>
            <description>Exim4

MTA, Service SMTP

Voir aussi:

	*  Postfix
	*  /informatique/spam pour de la “bonne” configuration

Documentation:

	*  Exim Cheatsheet
	*  main configuraiton
	*  exim4-base manpage

Tips &amp; Tricks

fallback (wildcard) alias

In /etc/exim4/exim4.conf.template replace:


system_aliases:
  ...
  data = ${lookup{$local_part}lsearch{/etc/aliases}}</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 11 Aug 2021 17:35:12 +0000</pubDate>
        </item>
        <item>
            <title>securite</title>
            <link>https://cyrille.giquello.fr/informatique/reseau/securite</link>
            <description>Sécurité réseau

Documentation

CWE - Common Weakness Enumeration: International in scope and free for public use, CWE™ provides a unified, measurable set of software weaknesses that is enabling more effective discussion, description, selection, and use of software security tools and services that can find these weaknesses in source code and operational systems as well as better understanding and management of software weaknesses related to architecture and design.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 18 May 2026 09:36:03 +0000</pubDate>
        </item>
        <item>
            <title>ssh</title>
            <link>https://cyrille.giquello.fr/informatique/reseau/ssh</link>
            <description>Secure SHell (SSH)

Configuration

Dans /etc/ssh/sshd_config tu change la ligne


PermitRootLogin Yes
en
PermitRootLogin No


Et si tu veux autoriser l&#039;accès ssh en root uniquement avec clé ssh tu mets :


PermitRootLogin without-password


Mais bon ça marche pas …</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 16 Oct 2025 12:29:23 +0000</pubDate>
        </item>
        <item>
            <title>crowdsec</title>
            <link>https://cyrille.giquello.fr/informatique/securite/crowdsec</link>
            <description>Crowdsec

Documentation

	*  crowdsec_configuration
	*  scenarios
	*  Decisions management

“Average Malevolent Duration (In Days) of Most Reported AS” page 11 sur CrowdSec Majority Report

Installer crowdsec

	*  &lt;https://docs.crowdsec.net/docs/getting_started/install_crowdsec&gt;


# Ajouter le dépôt
curl -s https://packagecloud.io/install/repositories/crowdsec/crowdsec/script.deb.sh | sudo bash 
sudo apt install crowdsec</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 11 Nov 2025 08:27:16 +0000</pubDate>
        </item>
        <item>
            <title>wordfence</title>
            <link>https://cyrille.giquello.fr/informatique/securite/wordfence</link>
            <description>Wordfence (wordpress WAF plugin)

Pare-feu d&#039;applications Web (WAF) pour Wordpress.

Wordfence plugin &amp; Wordfence Web site

Super plugin que je utilise depuis des années sur de nombreux sites.

Configuration

General Wordfence Options

Cocher “Bypass the LiteSpeed “noabort” check”.

Advanced Firewall Options</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 02 Aug 2024 10:02:11 +0000</pubDate>
        </item>
        <item>
            <title>systemd</title>
            <link>https://cyrille.giquello.fr/informatique/system_admin/systemd</link>
            <description>systemd

Voir aussi journalctl

	*  &lt;https://systemd.io/&gt;
	*  &lt;https://www.freedesktop.org/software/systemd/man/latest/&gt;

Les directives:

	*  &lt;https://www.freedesktop.org/software/systemd/man/latest/systemd.directives.html&gt;

Outil d&#039;analyse:

	*  &lt;https://www.freedesktop.org/software/systemd/man/latest/systemd-analyze.html&gt;

Pour envoyer une notification en cas d&#039;échec d&#039;exécution, créer un template service :

	*  &lt;https://www.baeldung.com/linux/systemd-service-fail-notification&gt;
	*  &lt;https://s…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 01 Dec 2025 09:15:01 +0000</pubDate>
        </item>
        <item>
            <title>webfont</title>
            <link>https://cyrille.giquello.fr/informatique/web/webfont</link>
            <description>WebFont

Voir aussi: css/fonts-and-formatting

Web-safe fonts

Polices standards pour le Web (Web-safe fonts)

font-family: Arial, Helvetica, Verdana, sans-serif;

	*  Police souhaitée : Arial
	*  Police alternative : Helvetica et verdana
	*  Famille : sans-sérif

Un peu d&#039;hitoire: &lt;span style=&quot;Courier New&quot;&gt;Courier New&lt;/span&gt;</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 24 Apr 2023 10:07:53 +0000</pubDate>
        </item>
        <item>
            <title>well-known-uris</title>
            <link>https://cyrille.giquello.fr/informatique/web/well-known-uris</link>
            <description>well-known uris

	*  Well-Known URIs at IANA.
	*  RFC 5785

Qlqs fichiers dans le dossier “/.well-known”

	*  .well-known/apple-app-site-association
	*  .well-known/assetlinks.json
		*  Valider Android App Links

	*  .well-known/traffic-advice
		*  Traffic Advice from private prefetch proxies and other sources other than direct user traffic</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 15 Oct 2024 08:25:10 +0000</pubDate>
        </item>
        <item>
            <title>azure</title>
            <link>https://cyrille.giquello.fr/informatique/windows/azure</link>
            <description>Windows Azure

The Windows® Azure™ Platform is an internet-scale cloud computing and services platform hosted in Microsoft data centers. The Windows Azure Platform provides a range of functionality to build applications that span from consumer web to enterprise scenarios and includes a cloud operating system and a set of developer services. Fully interoperable through the support of industry standards and web protocols such as REST and SOAP, you can use the Azure services individually or togethe…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:18:57 +0000</pubDate>
        </item>
        <item>
            <title>wp_mysql_inner_join</title>
            <link>https://cyrille.giquello.fr/informatique/wordpress/wp_mysql_inner_join</link>
            <description>Wordpress INNER JOIN plante MySql

Wordpress et certains INNER JOIN plante MySql.

Quand je chercher events après une date ça fonctionne, on a seulement des OR sur les meta contenant la date de fin.

Par contre pour chercher events entre 2 dates c&#039;est là que MySql part dans les choux, on a dans ce cas des</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 07 Sep 2021 18:52:08 +0000</pubDate>
        </item>
        <item>
            <title>searchtext</title>
            <link>https://cyrille.giquello.fr/wiki/plugins_installes/searchtext</link>
            <description>SearchText plugin

&lt;http://www.dokuwiki.org/plugin:searchtext&gt;

This plugin searches pages rendered as text instead of raw wiki.
This plugin displays search result snippets from text.

:!: This plugin requires:

	*  A text renderer, such as the text plugin
		*  A slight modification to add a FULLTEXT_SNIPPET_GETTEXT event to inc/fulltext.php if you wish to use the snippet capability</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 18 May 2012 22:19:00 +0000</pubDate>
        </item>
        <item>
            <title>samples</title>
            <link>https://cyrille.giquello.fr/informatique/ai_lm/ai_coding/samples</link>
            <description>AI coding samples

Elvire, Valère et Léandre

En avril 2025 à la question “Elvire arrive après Léandre. Valère était déjà là quand Elvire est arrivée. Léandre était-il présent quand Valère est arrivé ?”:

	*  ChatGpt répondait OUI. Cette fin 2025 il répond bien que l&#039;énoncée n&#039;est pas suffisante.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 12 Jan 2026 10:35:09 +0000</pubDate>
        </item>
        <item>
            <title>voyager</title>
            <link>https://cyrille.giquello.fr/informatique/php/laravel/voyager</link>
            <description>Voyager: Admin &amp; Bread for Laravel

Voyager -&gt; Laravel 6, 7, 8 &lt;https://laravelvoyager.com&gt;

	*  documentation
		*  code
		*  discussions/forum

Le BREAD c&#039;est un CRUD avec le browse: Browse, Read, Edit, Add, Delete.

On peut installer le projet avec ou sans données. Les données installées avec --with-dummy sont une bonne source d&#039;exemple.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sat, 05 Jun 2021 13:39:52 +0000</pubDate>
        </item>
        <item>
            <title>acf-openstreetmap-field</title>
            <link>https://cyrille.giquello.fr/informatique/wordpress/acf/acf-openstreetmap-field</link>
            <description>acf-openstreetmap-field

	*  &lt;https://github.com/mcguffin/acf-openstreetmap-field&gt;

Un plugin ACF pour intégrer une carte à partir d&#039;OpenStreetMap et Leaflet.

Proposed changes

different geocoders

The plugin already use leaflet-control-geocoder so it miss the UI, decoding and storing stuff

	*  Other library nominatim to geocoder

Étude ...


// plugin view
// in wp-content/plugins/acf-openstreetmap-field/src/js/lib/media/views/map-input.js
initGeocode() {
 geocoder_options = Object.assign({
 …</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 25 Dec 2024 20:56:23 +0000</pubDate>
        </item>
    </channel>
</rss>
