Available | Release | Architecture | Version | URI |
---|---|---|---|---|
TRUE | 2022 | x64 | 14.32.31332.0 | https://aka.ms/vs/17/release/VC_redist.x64.exe |
TRUE | 2022 | x86 | 14.32.31332.0 | https://aka.ms/vs/17/release/VC_redist.x86.exe |
TRUE | 2019 | x64 | 14.29.30139.0 | https://aka.ms/vs/16/release/VC_redist.x64.exe |
TRUE | 2019 | x86 | 14.29.30139.0 | https://aka.ms/vs/16/release/VC_redist.x86.exe |
TRUE | 2017 | x64 | 14.16.27033.0 | https://aka.ms/vs/15/release/vc_redist.x64.exe |
TRUE | 2017 | x86 | 14.16.27033.0 | https://aka.ms/vs/15/release/vc_redist.x86.exe |
TRUE | 2015 | x64 | 14.0.24215.1 | https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe |
TRUE | 2015 | x86 | 14.0.24215.1 | https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x86.exe |
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
/* | |
Copyright © 2013 Mario (BU) Flores Rey CC BY-NC-SA 4.0 DEED | |
License: https://creativecommons.org/licenses/by-nc-sa/4.0/ | |
Tested on GO v1.2.2 | |
*/ | |
package main | |
import ( | |
"fmt" |
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
<# | |
.SYNOPSIS | |
Adjust screen display brightness. | |
.DESCRIPTION | |
This script adjusts the screen display's brightness by accepting | |
a percentage value between 0 and 100 indicating the strength of | |
the brightness the screen display's backlight should emit. |
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
<# | |
.SYNOPSIS | |
Recursively removes all empty directories. | |
.DESCRIPTION | |
This script locally traverses all existing directories starting from | |
the current directory and then employs a depth first removal of empty | |
directories. |
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
/* | |
A simple Promise-based class that will resolve only after the DOM has completely loaded. | |
The callback's responsibility is to provide the value when the promise is fulfilled. | |
It can be used to return classes or objects created by code from deferred script tags. | |
~Bu |
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
/* | |
A simple Promise-based class that will resolve only after the DOM has completely loaded. | |
It can be used with or without a callback. But when a callback is supplied, the responsibility | |
of resolving or rejecting the Promise is passed on to the callback. | |
~Bu |
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
/* | |
GOOGLE MEET PUSH TO TALK (USING CONTROL KEY) | |
as soon as a meeting is joined, press F12 to open web developer tools. | |
select the console tab and copy-and-paste this code and press enter. | |
close the web developer tools, and use google meet normally. | |
press-and-hold control key down when talking, release when finished. | |
*/ | |
javascript: (() => { | |
const selector = '[aria-label*="microphone"][data-is-muted="%"]'; | |
const pushToTalk = () => ({ key, shiftKey, ctrlKey, altKey }) => { |
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
/* | |
source code: https://source.chromium.org/chromium/chromium/src/+/master:components/neterror/resources/offline.js | |
paste into address bar: chrome://dino/ | |
then before starting game, press F12 to open the Chrome developer console | |
and then paste this code snippet to override the game's gameOver() method. | |
enjoy! |