This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 | |
# ======= |
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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) => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#region begin VARIABLES | |
$path = $env:APPDATA | |
$path = "$path\Microsoft\Windows\Start Menu" | |
$modifyfiles = Get-ChildItem -Path $path -Filter *.lnk -File -Recurse | |
#endregion VARIABLES | |
#region begin MAIN | |
foreach ($file in $modifyfiles) { $(Get-Item $file.Fullname).lastwritetime = $(Get-Date) } | |
Write-Host "`n" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: 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" |
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
/* ===================== > GENERAL ====================== */ | |
// Fold current node | |
{ | |
"key": "ctrl+6", | |
"command": "editor.fold", | |
"when": "editorTextFocus" | |
}, | |
// Unfold current node | |
{ |