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.Diagnostics.Contracts; | |
using System.Runtime.CompilerServices; | |
public static class SpanSplitExtensions | |
{ | |
public ref struct Enumerable1<T> where T : IEquatable<T> | |
{ | |
public Enumerable1(ReadOnlySpan<T> span, T separator) | |
{ |
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
[MemoryDiagnoser] | |
public class BM | |
{ | |
enum E | |
{ | |
a, | |
b, | |
c | |
} |
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
public class DdwrtParser | |
{ | |
public JObject Read(ReadOnlySpan<char> str) | |
{ | |
JObject result = new JObject(); | |
while (str.Length > 0) | |
{ | |
if (str[0] != '{') | |
throw new FormatException(); |
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; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace Redacted | |
{ | |
public static class ReadOnlyListProxy |
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
! TM | |
tmfeed.ru##.menu.special | |
habrahabr.ru##.scroll_to_up | |
habrahabr.ru##.company_widgets | |
habrahabr.ru##.column-wrapper_bottom | |
habrahabr.ru##.popular_posts | |
habrahabr.ru##.similar-posts | |
habrahabr.ru##.bottom_buttons_panel | |
habrahabr.ru##.geektimes_posts | |
habrahabr.ru##.block_after_post |
This file has been truncated, but you can view the full file.
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
Build started 01.10.2015 5:51:29. | |
Environment at start of build: | |
ALLUSERSPROFILE = C:\ProgramData | |
APPDATA = C:\Users\LordJZ\AppData\Roaming | |
CommonProgramFiles = C:\Program Files (x86)\Common Files | |
CommonProgramFiles(x86) = C:\Program Files (x86)\Common Files | |
CommonProgramW6432 = C:\Program Files\Common Files | |
COMPUTERNAME = A554 | |
ComSpec = C:\Windows\system32\cmd.exe | |
DevEnvDir = C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\ |
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
sc delete DiagTrack | |
sc delete dmwappushservice | |
sc config diagnosticshub.standardcollector.service start= disabled | |
sc config WMPNetworkSvc start= disabled | |
sc config AdobeARMservice start= disabled | |
schtasks /Change /DISABLE /TN "Adobe Acrobat Update Task" |
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
class InfiniteEnumerable : IEnumerable<long> | |
{ | |
public struct Enumerator : IEnumerator<long> | |
{ | |
public void Dispose() | |
{ | |
} | |
public bool MoveNext() | |
{ |
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.IO; | |
using Kamilla.WorldOfWarcraft.Latest.Core; | |
using Kamilla.WorldOfWarcraft.Latest.OpcodeDatas; | |
using System.Threading; | |
namespace Kamilla.WorldOfWarcraft.Latest.Core.Hacks | |
{ | |
[LoadPriority(LoadPriority.Medium)] | |
[ModuleReferences(typeof(Std))] |
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
// ==UserScript== | |
// @name VK fixes | |
// @namespace vk-com | |
// @include https://vk.com/* | |
// @include http://vk.com/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
/* recommended filters in addition to EasyList |
NewerOlder