Majuscules accentuées : un aide-mémoire

Tableau de Combinaisons de Touches
Lettres à saisirCombinaison de touchesLettres à saisirCombinaison de touches
ÁALT 0193ÍALT 0205
ÂALT 0194ÌALT 0204
ÀALT 0192ÎALT 0206
ÄALT 0196ÏALT 0207
æALT 0230ÔALT 0212
ÆALT 0198ÖALT 0214
ÇALT 0199ŒALT 0140
ÉALT 0201œALT 0156
ÈALT 0200ÚALT 0218
ÊALT 0202ÙALT 0217
ËALT 0203ÛALT 0219
ÜALT 0220

Horaires des déchèteries du Pays Solesmois

Pour un accès facilité aux informations car j’ai toujours du mal à les trouver en ligne quand j’en ai besoin. Attention, ces horaires changent régulièrement.

JoursSolesmesBermerain
LUNDI13H30-18H13H30-17H
MARDI8H30-12H / 13H30-18HFERMÉE
MERCREDI8H30-12H / 13H30-18H8H30-12H / 13H30-17H
JEUDI8H30-12H / 13H30-18HFERMÉE
VENDREDI8H30-18H13H30-17H
SAMEDI8H30-18H8H30-12H / 13H30-17H
DIMANCHEFERMÉEFERMÉE
« jusqu’au 31/10/2024 »

Source : SIAVED


Mise à jour : 07/07/2024

Calculer une somme de contrôle facilement sous Windows avec OpenHashTab

https://github.com/namazso/OpenHashTab/releases

À propos

OpenHashTab est une extension qui permet de calculer et vérifier les sommes de contrôle de vos fichiers.

Caractéristiques

  • 28 algorithmes supportés
  • Calculs à haute performance
  • Intégration parfaite au menu contextuel de Windows avec une entrée nommée « Sommes »
  • Support des chemins longs
  • Multilingue
  • Vérification des hashes avec VirusTotal par un bouton
  • Comparaison possible avec un fichier de hash (supportés : hex hash next to file, sortie *sum (hex or base64), corz .hash, SFV)
  • Export du hash vers un fichier ou le presse-papier (supportés : *sum, corz .hash, SFV)
  • Menu contextuel optionnel
  • Associations de fichiers

System requirements

  • Windows 7 ou plus récent (x86 / x64 / ARM64)
  • 1 GB RAM ou plus

Usage

Most of the actions should be obvious. Some not-so-obvious features are listed here:

  • You can select multiple files or folders, all files will be hashed, directories traversed
  • Double click hash to copy it
  • Double click name or algorithm to copy the line in sumfile format
  • Right click for popup menu: copy hash, copy filename, copy line, copy everything
  • The counters next to the status text is in the format (match/mismatch/nothing to check against/error)
  • Columns sort lexographically, except the hash column which sorts by match type
  • Selecting the tab on a sumfile will interpret it as such and hash the files listed in it.
  • If a hashed file has a sumfile with same filename plus one of the recognized sumfile extensions and the option for it is enabled, the file hash is checked against it.

Algorithmes

  • CRC32, CRC64 (xz)
  • xxHash (XXH32, XXH64)
  • xxHash3 (64 et 128 bit)
  • MD4, MD5
  • RipeMD160
  • Blake2sp
  • SHA-1
  • SHA-2 (SHA-224, SHA-256, SHA-384, SHA-512)
  • SHA-3 (SHA3-224, SHA3-256, SHA3-384, SHA3-512)
  • BLAKE3 (256 bit, 512 bit)
  • KangarooTwelve (264 bit, 256 bit, 512 bit)
  • ParallelHash128 (264 bit) et ParallelHash256 (528 bit)
  • Streebog (GOST R 34.11-12) (256 bit, 512 bit)

Réinstaller la calculatrice dans Windows 10

Si la calculatrice a maladroitement été désinstallée de Windows 10, on peut passer par Powershell pour la réinstaller. On commence par lancer la commande Exécuter :

Lancez Powershell avec les droits d’administration en collant et lançant cette commande :

powershell  Start-Process powershell -Verb runAs

Désinstaller totalement la calculatrice (facultatif) :

get-appxpackage *Microsoft.WindowsCalculator* | remove-appxpackage

Récupérer les informations sur le package qui nous intéresse :

Get-AppxPackage -allusers *windowscalculator*

Adapter la commande ci-dessous avec le résultat de la commande précédente, par exemple :

Add-AppxPackage -DisableDevelopmentMode -Register "C:\Program Files\WindowsApps\Microsoft.WindowsCalculator_10.2103.8.0_x64__8wekyb3d8bbwe\AppXManifest.xml"

Lancer la calculatrice en exécutant la commande dans l’invite de commande :

calc

Sources :