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
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{D15ED2E1-C75B-443c-BD7C-FC03B2F08C17}] | |
| @="Администрирование" | |
| "InfoTip"="Все элементы" | |
| "System.ControlPanel.Category"="5" | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{D15ED2E1-C75B-443c-BD7C-FC03B2F08C17}\DefaultIcon] | |
| @="%SystemRoot%\\System32\\imageres.dll,-27" | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{D15ED2E1-C75B-443c-BD7C-FC03B2F08C17}\Shell\Open\Command] | |
| @="explorer.exe shell:::{ED7BA470-8E54-465E-825C-99712043E01C}" |
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
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Command Processor] | |
| "CompletionChar"=dword:00000040 | |
| "DefaultColor"=dword:00000000 | |
| "EnableExtensions"=dword:00000001 | |
| "PathCompletionChar"=dword:00000040 | |
| "Autorun"="chcp 65001" | |
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
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout] | |
| "Scancode Map"=hex:00,00,00,00,00,00,00,00,03,00,00,00,00,00,5b,e0,00,00,5c,e0,\ | |
| 00,00,00,00 | |
| [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout\DosKeybCodes] | |
| "00000402"="bg" | |
| "00000404"="ch" | |
| "00000405"="cz" |
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 www.farfetch.com | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description Fix for the external lavascript loading bug (Oracle Cloud Tags BlueKai) | |
| // @author You | |
| // @match https://www.farfetch.com/* | |
| // @grant none | |
| // ==/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
| private static PrivateFontCollection LoadPrivateFontCollection() | |
| { | |
| PrivateFontCollection privateFontCollection = new PrivateFontCollection(); | |
| IntPtr data = IntPtr.Zero; | |
| int installedFonts = 0; | |
| foreach (var fontResource in PrivateFontCollection) | |
| { | |
| try | |
| { | |
| data = Marshal.AllocHGlobal(fontResource.Length); |
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.ComponentModel; | |
| using System.Drawing; | |
| using System.Drawing.Drawing2D; | |
| using System.Drawing.Text; | |
| using System.Runtime.InteropServices; | |
| using System.Security; | |
| using Plugins.Library; | |
| using Sudoku.Engine.Properties; |
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.Drawing; | |
| using Sudoku.Interfaces; | |
| namespace Sudoku.Engine | |
| { | |
| [Serializable] | |
| public class FontObject : IFontObject | |
| { | |
| private Font _font; | |
| private readonly FontFamily _fontFamily; |
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
| @echo off | |
| @if defined _echo echo on | |
| :install_dotnet_cli | |
| setlocal | |
| set "DOTNET_MULTILEVEL_LOOKUP=0" | |
| set /p DotNet_Version=<"%~dp0DotNetCLIVersion.txt" | |
| if not defined DotNet_Version ( | |
| call :print_error_message Unknown DotNet CLI Version. |
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
| 2.1.300 |
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
| @start /max cmd /k ! |