Skip to content

Instantly share code, notes, and snippets.

@Fred-Vatin
Fred-Vatin / WinIsoInfo.ps1
Created April 11, 2024 02:13
WinIsoInfo : get Windows Image info [french]
#requires -RunAsAdministrator
#region begin Usage
# Résumé
# ======
# Obtient des infos sur les ISO d'installation de Windows telles que leur version détaillée
# Syntaxe
# =======
@Fred-Vatin
Fred-Vatin / Valid asciidoc in Github.adoc
Last active December 7, 2023 02:39
Check the raw file to know the adoc syntax used

DOCUMENT TITLE

@Fred-Vatin
Fred-Vatin / README.md
Last active November 27, 2022 20:48
ANSI Banners VS Code

BANNER COMMENTS

This banners are an example of what you can do with the extension banner comments.

You can test all the fonts with your custom text here. There are more than 300.

Herebelow in the banners.txt are only my personnal selection that I think useful for coders.

Fonts are sorted by size. Font name preceeds its ANSI representation.

@Fred-Vatin
Fred-Vatin / es6-element-ready.js
Last active November 17, 2022 11:57 — forked from jwilson8767/es6-element-ready.js
Wait for an element to exist. ES6, Promise, MutationObserver (version for userScript @require)
// MIT Licensed
// Author: jwilson8767
/**
* Waits for an element satisfying selector to exist, then resolves promise with the element.
* Useful for resolving race conditions.
*
*/
function elementReady(selector) {
return new Promise((resolve, reject) => {
@Fred-Vatin
Fred-Vatin / Update shortcut links aka refresh tile icons.ps1
Last active August 5, 2022 08:57
Update shortcut links aka refresh tile icons
@Fred-Vatin
Fred-Vatin / Template.bat
Last active July 27, 2017 19:41
My batch/cmd template
:: Pour conserver la mise en page, décorations et les accents
:: toujours charger et enregistrer les fichiers bat ou cmd en encodage
:: "OEM" alias "CP850" alias "DOS Latin 1"
:: et avec le retour de ligne DOS
@echo off
cls
:: mode con cols=100 lines=45
title Restauration des Paramètres
:: S'assurer que le chemin sera relatif à l'emplacement du batch en admin
cd /d "%~dp0"
@Fred-Vatin
Fred-Vatin / @Mark Jump.md
Last active January 25, 2022 23:41
Custom settings for the VSCode extension Mark Jump

Description

These are custom settings for the VSCode extension Mark Jump

You'll be able to organize your code files in sections and easy jump to either of them :

  • MARKS
  • TODO / FIX
  • NOTE

Just place your sections in comments and respect format below.

[
/* ===================== > GENERAL ====================== */
// Fold current node
{
"key": "ctrl+6",
"command": "editor.fold",
"when": "editorTextFocus"
},
// Unfold current node
{