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
a | |
able | |
about | |
above | |
according | |
across | |
act | |
action | |
activity | |
actually |
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
a | |
ability | |
able | |
about | |
above | |
accept | |
according | |
account | |
across | |
act |
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
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
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 Steam Key Quick Activator | |
// @namespace http://pedrofracassi.me/ | |
// @version 1.2 | |
// @description Activates Steam Keys Quickly! | |
// @author Pedro Fracassi (http://pedrofracassi.me) | |
// @match https://store.steampowered.com/account/registerkey?key=* | |
// @grant none | |
// @run-at document-end | |
// ==/UserScript== |
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 MOREtrackers | |
// @description:tr Torrent magnet bağlantısına fazladan izleyici ekler. | |
// @description:az Torrent maqnit bağlantılarına daha çox izləyici əlavə edir. | |
// @description:en Adds more trackers to torrent magnet links. | |
// @description:de Fügt mehr Tracker zu Torrent-Magnet-Links hinzu. | |
// @description:fr Ajoute plus de trackers aux liens magnétiques torrent. | |
// @description:es Agrega más rastreadores a los enlaces magnéticos de torrent. | |
// @description:ru Добавляет больше трекеров к магнитным торрент-ссылкам. | |
// @version 0.5 |
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 Google Translate - 2022 | |
// @namespace https://greasyfork.org/users/906463-coffeegrind123 | |
// @homepageURL https://gist.github.com/coffeegrind123/8ca2c7e700aca3341c71da8d612f6130 | |
// @supportURL https://greasyfork.org/scripts/443947-google-translate-2022 | |
// @include https://*/* | |
// @include http://*/* | |
// @exclude http*://*.google.*/* | |
// @grant GM_registerMenuCommand | |
// @noframes |
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 AsyncLazyPipeline<TSource> | |
{ | |
private Func<Task<TSource>> Expression { get; } | |
public AsyncLazyPipeline(Func<Task<TSource>> expression) | |
{ | |
Expression = expression; | |
} | |
public Task<TSource> Flatten() => Expression(); |
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 static partial class LinqExtensions | |
{ | |
public static Maybe<C> SelectMany<A, B, C>(this Maybe<A> ma, Func<A, Maybe<B>> f, Func<A, B, C> select) => ma.Bind(a => f(a).Map(b => select(a, b))); | |
} |
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
void Main() | |
{ | |
string errorCodesFileUrl = "https://raw.githubusercontent.com/dotnet/roslyn/master/src/Compilers/CSharp/Portable/Errors/ErrorCode.cs"; | |
string errorCodesFileContent = new WebClient().DownloadString(errorCodesFileUrl); | |
var syntaxTree = CSharpSyntaxTree.ParseText(errorCodesFileContent); | |
var root = syntaxTree.GetRoot(); | |
var enumDeclaration = | |
root.DescendantNodes() | |
.OfType<EnumDeclarationSyntax>() | |
.First(e => e.Identifier.ValueText == "ErrorCode"); |
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
// For an explanation of this code visit: | |
// https://github.com/jacobslusser/ScintillaNET/wiki/Automatic-Syntax-Highlighting | |
// Configuring the default style with properties | |
// we have common to every lexer style saves time. | |
scintilla.StyleResetDefault(); | |
scintilla.Styles[Style.Default].Font = "Consolas"; | |
scintilla.Styles[Style.Default].Size = 10; | |
scintilla.StyleClearAll(); |
NewerOlder