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 hidden or 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
using System; | |
using System.IO; | |
namespace Logger | |
{ | |
public class TextLoggerService | |
{ | |
private readonly string filePath; | |
public TextLoggerService() |
This file contains hidden or 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
using System; | |
using System.Collections.Generic; | |
using System.Management; | |
/* | |
https://learn.microsoft.com/windows/win32/wmisdk/wmi-glossary/ | |
https://learn.microsoft.com/windows/win32/wmisdk/wmi-reference/ | |
*/ | |
namespace WMI | |
{ | |
public class WmiQueryService |
This file contains hidden or 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
using System; | |
using System.IO; | |
public class CustomTextLogger<T> | |
{ | |
private readonly string filePath; | |
public CustomTextLogger() | |
{ | |
string desktopPath = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory); |
This file contains hidden or 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
"use strict"; | |
var fs = require('fs'); | |
var http = require('http'); | |
var https = require('https'); | |
var express = require('express'); | |
var app = express(); | |
app.get('/', function (req, res) { | |
void req; | |
res.send("Date: ".concat(new Date())); | |
}); |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
NewerOlder