winget search key-word
# Search can be used to find the ID
winget install <Package ID>
| function enableContextMenu(aggressive = true) { | |
| void (document.ondragstart = null); | |
| void (document.onselectstart = null); | |
| void (document.onclick = null); | |
| void (document.onmousedown = null); | |
| void (document.onmouseup = null); | |
| void (document.body.oncontextmenu = null); | |
| enableRightClickLight(document); | |
| if (aggressive) { | |
| enableRightClick(document); |
| ::-webkit-scrollbar { | |
| height: 2.2em; | |
| width: .6em; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background: hsl(218, 22%, 14%); | |
| } | |
| ::-webkit-scrollbar-thumb { |
| [{ | |
| "Note": "The first two digits (ranging from 10–43) correspond to the province, while the last two digits correspond either to the city/delivery zone (range 01–50) or to the district/delivery zone (range 51–99). Afghanistan Postal code lookup", | |
| "Country": "Afghanistan", | |
| "ISO": "AF", | |
| "Format": "NNNN", | |
| "Regex": "^\\d{4}$" | |
| }, { | |
| "Note": "With Finland, first two numbers are 22.", | |
| "Country": "Åland Islands", | |
| "ISO": "AX", |
While working on a complex HTML structure, to facilitate readability of my Twig template, I divided my file onto many partial templates. In most case it's working well, but sometimes you need to use Twig blocks defined in partial templates across many files. But include will not let you overriding blocks defined in partial template, when extanding the main template.
To solve this, Twig provide the embed tag, but it took me some times to figure out how to use it. So here a little reminder, with the usecase on embed's doc.
Like many git user, I understood the interest of commit signature verification and tried to use it. The (documentation)[https://docs.github.com/en/github/authenticating-to-github/managing-commit-signature-verification] explain well how to do it. But it's seem like some people can use them right away after following the doc's explanation, while while others might have struggles at some point.
This was my case, and this is why I didn't use this fonctionality whereas I know it's here since years. And I tried to configure my PC more than one time, but I always got this error, and couldn't move forward:
error: gpg failed to sign the data
fatal: failed to write commit object
I saw so many partial response here and there but nothing worked for me.
This is just a combination of solutions founded from Stackoverflow
