View DecimalValue.cs
using System.Linq; | |
namespace YOUR_NAMESPACE_HERE | |
{ | |
public partial class DecimalValue | |
{ | |
public DecimalValue(int[] bits) => Bits.AddRange(bits); | |
public static implicit operator decimal(DecimalValue decimalValue) => decimalValue.ToDecimal(); |
View gist:6a0ed026a4b9bbd2f488fdf7e7841c3e
Verifying my Blockstack ID is secured with the address 1LF6MBuM2XTJxAoqCWBHo59ZqQ5EXUaBKs https://explorer.blockstack.org/address/1LF6MBuM2XTJxAoqCWBHo59ZqQ5EXUaBKs |
View custom.css
/* Automatisch spoilers tonen bij hover */ | |
div.spoiler:hover { | |
color: white !important; | |
} | |
/* Quotes donkerder dan posts */ | |
.message-quote-div { | |
background-color: #dddede !important; | |
border: 1px solid #c8c8c8 !important; | |
color: #000 !important; |
View DocumentOperationRoleRequirementsFilter.cs
using Microsoft.AspNetCore.Authorization; | |
using Swashbuckle.AspNetCore.Swagger; | |
using Swashbuckle.AspNetCore.SwaggerGen; | |
using System.Linq; | |
using System.Reflection; | |
using System.Web; | |
namespace MyNameSpace { | |
public class DocumentOperationRoleRequirementsFilter : IOperationFilter | |
{ |
View gameconsole.cs
using Microsoft.Win32.SafeHandles; | |
using System; | |
using System.Diagnostics; | |
using System.IO; | |
using System.Runtime.InteropServices; | |
using System.Threading; | |
namespace ConsoleEngine | |
{ |
View bitmap2ascii.cs
using System.Collections.Concurrent; | |
using System.Collections.Generic; | |
using System.Drawing; | |
using System.Drawing.Drawing2D; | |
using System.Drawing.Imaging; | |
using System.Linq; | |
using System.Text; | |
public class Bitmap2Ascii | |
{ |
View check.cs
// Test/check FNV-1(a) hash implementations | |
var testvectors = new[] { "", "a", "b", "c", "d", "e", "f", "fo", "foo", "foob", "fooba", "foobar", "\0", "a\0", "b\0", "c\0", "d\0", "e\0", "f\0", "fo\0", "foo\0", "foob\0", "fooba\0", "foobar\0", "ch", "cho", "chon", "chong", "chongo", "chongo ", "chongo w", "chongo wa", "chongo was", "chongo was ", "chongo was h", "chongo was he", "chongo was her", "chongo was here", "chongo was here!", "chongo was here!\n", "ch\0", "cho\0", "chon\0", "chong\0", "chongo\0", "chongo \0", "chongo w\0", "chongo wa\0", "chongo was\0", "chongo was \0", "chongo was h\0", "chongo was he\0", "chongo was her\0", "chongo was here\0", "chongo was here!\0", "chongo was here!\n\0", "cu", "cur", "curd", "curds", "curds ", "curds a", "curds an", "curds and", "curds and ", "curds and w", "curds and wh", "curds and whe", "curds and whey", "curds and whey\n", "cu\0", "cur\0", "curd\0", "curds\0", "curds \0", "curds a\0", "curds an\0", "curds and\0", "curds and \0", "curds and w\0", "curds and wh\0 |
View gist:b7ee02338024beb7a2fbfd14e9a060b2
9gag.com###overlay-container | |
9gag.com###sidebar | |
9gag.com##.badge-sticky-button | |
9gag.com##.cp-background | |
9gag.com##.post-meta | |
9gag.com##.share | |
aliexpress.com##._3KrBP | |
aliexpress.com##.top-banner-container | |
aliexpress.com###J_xiaomi_dialog | |
eevblog.com###main_content_section > a |
View tarpit.php
<?php | |
$response = <<<EOD | |
HTTP/1.1 {{status}} | |
Server: {{server}} | |
Date: {{gmdate}} | |
Content-Type: text/html; charset=UTF-8 | |
Transfer-Encoding: chunked | |
Connection: keep-alive | |
<!doctype html> | |
<html lang="en"> |
NewerOlder