View visual-studio-extensions.txt
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
@echo off | |
start shell:RecycleBinFolder | |
exit |
View cloudflare-dns.cmd
@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
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
__Event | |
__ExtrinsicEvent | |
Win32_DeviceChangeEvent | |
Win32_SystemConfigurationChangeEvent | |
Win32_VolumeChangeEvent | |
MSFT_WMI_GenericNonCOMEvent | |
MSFT_NCProvEvent | |
MSFT_NCProvCancelQuery | |
MSFT_NCProvClientConnected | |
MSFT_NCProvNewQuery |
View ublock.txt
||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
<?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
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)] |
View TimerService.cs
using System; | |
using System.Diagnostics; | |
using System.Runtime.InteropServices; | |
using System.Threading; | |
namespace Testing | |
{ | |
internal static class StopwatchExtensions | |
{ | |
public static long GetElapsedNanoseconds(this Stopwatch watch) |
View discord-widget-data.js
function DiscordWidgetData() { | |
this.load = async function (guildId) { | |
return new Promise(function (resolve, reject) { | |
fetch("https://discordapp.com/api/v6/guilds/" + guildId + "/widget.json", { | |
method: "GET", | |
mode: "cors", | |
cache: "reload", | |
redirect: "follow" | |
}).then(response => { | |
if (!response.ok) { |
NewerOlder