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
// ==UserScript== | |
// @name Wechat Official Accounts Assistant | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description Auto load original images and copy information from Wechat Official Accounts articles | |
// @author Cline | |
// @match https://mp.weixin.qq.com/s* | |
// @grant none | |
// @run-at document-start | |
// ==/UserScript== |
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
// clang -Wall -Wextra -std=c11 sizeof.c -o sizeof | |
// emcc -Wall -Wextra -std=c11 sizeof.c -o sizeof.js | |
#include <stdlib.h> | |
#include <stdarg.h> | |
#include <stddef.h> | |
#include <stdio.h> | |
#include <wchar.h> | |
#include <time.h> |
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.Collections.Generic; | |
using System.Linq; | |
using UnityEditor; | |
using UnityEditor.Build; | |
using UnityEngine; | |
namespace Nekomimi.Daimao | |
{ | |
/// <summary> | |
/// Switch #define. |
for 4.2.4 or higher, 4.2.5,4.2.6,4.3.7, it's works, this is the way which makes Always in evaluation mode.
- open
Terminal
, go to the dir :cd /Applications/Beyond Compare.app/Contents/MacOS
- change the name
BCompare
toBCompare.bak
:mv BCompare BCompare.bak
- touch a file name
BCompare
, andchmod a+ux BCompare
:touch BCompare && chmod a+ux BCompare
- open
BCompare
with text editor, insert the script :
#!/bin/bash
rm "/Users/$(whoami)/Library/Application Support/Beyond Compare/registry.dat"
"`dirname "$0"`"/BCompare.bak $@
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
private delegate void PerformMainLoop(/* HWND__* */ IntPtr param_1, uint param_2, uint param_3, ulong param_4); // These parameters may be inaccurate | |
private delegate GfxDevice GetGfxDevice(); | |
private delegate IntPtr GetIVRDevice(); | |
private delegate void SetupPixelCorrectCoordinates(bool _0); | |
private static IntPtr GetFunctionPointerFromMethod(string methodName) => | |
typeof(CustomUnityRender).GetMethod(methodName, BindingFlags.NonPublic | BindingFlags.Static).MethodHandle.GetFunctionPointer(); | |
internal static void Init() | |
{ |
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
int solve(float x) | |
{ | |
if (x < 0) | |
{ | |
return 0; | |
} | |
// 1>MinRepo.hlsl(7,2): warning X4000: use of potentially uninitialized variable (solve) | |
// 1>error X8000 : D3D11 Internal Compiler error : Invalid Bytecode: Negate modifier not allowed for operand #4 of opcode #6 (counts are 1-based). |
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
// ==UserScript== | |
// @name ucas-course-console-helper | |
// @namespace https://les1ie.com/ | |
// @version 0.2 | |
// @description 去除中国科学院大学课程网站对进入控制台的限制 | |
// @author Les1ie | |
// @match https://course.ucas.ac.cn/portal/* | |
// @grant none | |
// ==/UserScript== |
NewerOlder