- Visual Studio Build Tools 2022
- Visual Studio Build Tools 2019
- Visual Studio Build Tools 2017
- Visual Studio Build Tools 2015
Visual Studio 2022:
| #version 110 | |
| // Achromatomaly | |
| mat4 cbAchromatomaly() | |
| { | |
| return mat4(0.618, 0.320, 0.062, 0.0, | |
| 0.163, 0.775, 0.062, 0.0, | |
| 0.163, 0.320, 0.516, 0.0, | |
| 0.0 , 0.0 , 0.0 , 1.0 ); | |
| } |
| import { proxy, ref } from "valtio"; | |
| function isObjectOrNull<T extends object>(obj: T) { | |
| return typeof obj === "object" && !Array.isArray(obj); | |
| } | |
| /** | |
| * IMO, this is a safe way to use valtio w/o read-only object-related gotchas | |
| * Create a valtio proxy one level deep - use our own proxy to store inner objects as refs, and create getter/setter for them | |
| */ |
| #pragma once | |
| /* | |
| MIT License | |
| Copyright (c) 2022 Andrew King | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights |
| [7;30m 30 [0m[7;90m 90 [0m[7;37m 37 [0m[7;97m 97 [0m[7;33m 33 [0m[7;93m 93 [0m[7;31m 31 [0m[7;91m 91 [0m[7;35m 35 [0m[7;95m 95 [0m[7;34m 34 [0m[7;94m 94 [0m[7;36m 36 [0m[7;96m 96 [0m[7;32m 32 [0m[7;92m 92 [0m[0;90m - [0m(7) inverted | |
| [1;30m 30 [0m[1;90m 90 [0m[1;37m 37 [0m[1;97m 97 [0m[1;33m 33 [0m[1;93m 93 [0m[1;31m 31 [0m[1;91m 91 [0m[1;35m 35 [0m[1;95m 95 [0m[1;34m 34 [0m[1;94m 94 [0m[1;36m 36 [0m[1;96m 96 [0m[1;32m 32 [0m[1;92m 92 [0m[0;90m - [0m(1) bold | |
| [0;30m 30 [0m[0;90m 90 [0m[0;37m 37 [0m[0;97m 97 [0m[0;33m 33 [0m[0;93m 93 [0m[0;31m 31 [0m[0;91m 91 [0m[0;35m 35 [0m[0;95m 95 [0m[0;34m 34 [0m[0;94m 94 [0m[0;36m 36 [0m[0;96m 96 [0m[0;32m 32 [0m[0;92m 92 [0m[0;90m - [0m(0) normal | |
| [2;30m 30 [0m[2;90m 90 [0m[2;37m 37 [0m[2;97m 97 [0m[2;33m 33 [0m[2;93m 93 [0m[2;31m 31 [0m[2;91m 91 [0m[2;35m 35 [0m[2;95m 95 [0m[2;34m 34 [0m[2;94m 94 [0m[2;36m 36 [0m[2;96m 96 [0m[2;32m 32 [0m[2; |
| bool onComment(const char* text, const RPG::ParsedCommentData* parsedData, RPG::EventScriptLine* nextScriptLine, | |
| RPG::EventScriptData* scriptData, int eventId, int pageId, int lineId, int* nextLineId) | |
| { | |
| std::string cmd = parsedData->command; | |
| if (cmd == "test_dbmonsters") | |
| { | |
| int id = parsedData->parameters[0].number; | |
| RPG::DBMonster* monster = RPG::dbMonsters[id]; | |
| printf("DBMonster:\n"); |
| # Clang version 9.0.0 | |
| Language: Cpp | |
| AccessModifierOffset: -4 | |
| AllowShortBlocksOnASingleLine: false | |
| AlwaysBreakTemplateDeclarations: Yes | |
| AlignConsecutiveAssignments: false | |
| AlignConsecutiveDeclarations: false | |
| AlignOperands: false | |
| AlignTrailingComments: true | |
| AlignAfterOpenBracket: DontAlign |
| #!/bin/bash | |
| cd ~/AppData/Local | |
| rm -rf IconCache.db | |
| cd Microsoft/Windows/Explorer | |
| rm -rf iconcache* thumbcache* | |
| taskkill //f //im explorer.exe | |
| start explorer.exe |