View MessageBox.cs
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
using System; | |
using System.Runtime.CompilerServices; | |
using System.Runtime.InteropServices; | |
namespace Undocumented.Windows | |
{ | |
public static unsafe class MessageBox | |
{ | |
// http://undocumented.ntinternals.net/index.html?page=UserMode%2FUndocumented%20Functions%2FError%2FNtRaiseHardError.html | |
private static readonly delegate* unmanaged[Stdcall]<uint, uint, uint, uint*, uint, uint*, uint> _ntRaiseHardError; |
View FriendCode.cs
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
using System; | |
using System.Buffers.Binary; | |
using System.Runtime.InteropServices; | |
using System.Security.Cryptography; | |
using System.Text; | |
namespace Csgo | |
{ | |
public static class FriendCode | |
{ |
View visual-studio-extensions.txt
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
https://marketplace.visualstudio.com/items?itemName=josefpihrt.Roslynator2019 | |
https://marketplace.visualstudio.com/items?itemName=SteveCadwallader.CodeMaid | |
https://marketplace.visualstudio.com/items?itemName=TeamXavalon.XAMLStyler | |
https://marketplace.visualstudio.com/items?itemName=MichaelKissBG8.Supercharger | |
https://marketplace.visualstudio.com/items?itemName=MadsKristensen.FileIcons | |
https://marketplace.visualstudio.com/items?itemName=EWoodruff.VisualStudioSpellCheckerVS2017andLater | |
https://marketplace.visualstudio.com/items?itemName=NikolayBalakin.Outputenhancer | |
https://marketplace.visualstudio.com/items?itemName=ironcev.sharpen |
View open-recyclebin.cmd
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
@echo off | |
start shell:RecycleBinFolder | |
exit |
View cloudflare-dns.cmd
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
@echo off | |
netsh interface ipv4 set dnsservers name="Ethernet" validate=no static 1.1.1.1 primary > nul | |
netsh interface ipv4 add dnsservers name="Ethernet" validate=no 1.0.0.1 index=2 > nul | |
netsh interface ipv6 set dnsservers name="Ethernet" validate=no static 2606:4700:4700::1111 primary > nul | |
netsh interface ipv6 add dnsservers name="Ethernet" validate=no 2606:4700:4700::1001 index=2 > nul | |
ipconfig /flushdns > nul |
View MemoryApi.cs
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
using System; | |
using System.Runtime.CompilerServices; | |
using System.Runtime.InteropServices; | |
using System.Security; | |
namespace ProcessMemoryTest.Native | |
{ | |
[SuppressUnmanagedCodeSecurity] | |
public static unsafe class Kernel32 | |
{ |
View wmi-events.txt
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
__Event | |
__ExtrinsicEvent | |
Win32_DeviceChangeEvent | |
Win32_SystemConfigurationChangeEvent | |
Win32_VolumeChangeEvent | |
MSFT_WMI_GenericNonCOMEvent | |
MSFT_NCProvEvent | |
MSFT_NCProvCancelQuery | |
MSFT_NCProvClientConnected | |
MSFT_NCProvNewQuery |
View ublock.txt
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
||consent.google.* | |
||www.gstatic.*/youtube/img/promos/growth/dmod_si_horizontal_ver1_240x400.png^ | |
google.*##div#cnsw:remove() | |
google.*##div#swml:remove() | |
google.*##div#reviewDialog:remove() | |
google.*##div#lb:remove() | |
youtube.*##paper-dialog.ytd-consent-bump-lightbox:remove() | |
youtube.*##div#dialog.yt-upsell-dialog-renderer:remove() |
View DateTimeFormat.php
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
<?php | |
namespace MichelPi\Utils; | |
use DateTime; | |
class DateTimeFormat | |
{ | |
private static $_jsonFormatString = 'Y-m-d\\TH:i:s.v\\Z'; | |
private static $_mysqlFormatString = 'Y-m-d H:i:s'; |
View EnvironmentEx.cs
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
using System; | |
using System.Collections.Generic; | |
using System.Threading; | |
using System.Runtime.InteropServices; | |
namespace System | |
{ | |
public static class EnvironmentEx | |
{ | |
[DllImport("kernel32.dll", CharSet = CharSet.Ansi, SetLastError = true)] |
NewerOlder