I hereby claim:
- I am nickcraver on github.
- I am nickcraver (https://keybase.io/nickcraver) on keybase.
- I have a public key ASAVMojHFRx86OeapA0fAbGblg0VzqFn4agNkah58X9ixQo
To claim this, I am signing this object:
@-moz-document domain("tweetdeck.twitter.com") { | |
html.dark { | |
color: #e1e8ed; | |
} | |
html.dark body:before { | |
background-image: radial-gradient(circle, #1c6399, #274256); | |
} | |
html.dark body, | |
html.dark .app-header, | |
html.dark .app-title, |
using System; | |
using System.Threading.Tasks; | |
namespace ConsoleApp2189 | |
{ | |
public static class Program | |
{ | |
public static void Main(string[] args) | |
{ | |
while (true) |
// A JS example that shows they're well on their way to a dark theme: | |
document.body.classList.add("ubnt-mod-dark"); | |
document.querySelectorAll(".appTable").forEach(i => i.classList.add("appTable--dark")); | |
document.querySelectorAll(".ubntPanelContent").forEach(i => i.classList.add("appForm--dark")); | |
document.querySelectorAll(".appMainButtonGroup").forEach(i => i.classList.add("appMainButtonGroup--dark")); |
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel.DataAnnotations; | |
using System.ComponentModel.DataAnnotations.Schema; | |
using System.Linq; | |
using System.Reflection; | |
using Microsoft.EntityFrameworkCore.Infrastructure; | |
using Microsoft.EntityFrameworkCore.Infrastructure.Internal; | |
using Microsoft.EntityFrameworkCore.Metadata.Conventions; | |
using Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal; |
I hereby claim:
To claim this, I am signing this object:
async Task Main() | |
{ | |
for (var i = 0; i < 20; i++) | |
{ | |
await Run(); // Just to show it many times | |
} | |
} | |
public async Task Run() | |
{ |
#requires -Version 2 -Modules posh-git | |
# This is a tweaked version of https://github.com/JanJoris/oh-my-posh/blob/master/Themes/Paradox.psm1 | |
function Write-Theme { | |
param( | |
[bool] | |
$lastCommandFailed, | |
[string] | |
$with | |
) |
var packages = new[] { | |
"MiniProfiler", | |
"MiniProfiler.AspNetCore", | |
"MiniProfiler.AspNetCore.Mvc", | |
"MiniProfiler.EF6", | |
"MiniProfiler.EntityFrameworkCore", | |
"MiniProfiler.Mvc5", | |
"MiniProfiler.Providers.MongoDB", | |
"MiniProfiler.Providers.MySql", | |
"MiniProfiler.Providers.Redis", |
html.dark .column, html.dark .stream-item { | |
background-color: #222426; | |
} | |
html.dark .detail-view-inline-text { | |
background: #fff; | |
color: #8899a6; | |
} | |
html.dark a, html.dark a:hover, | |
html.dark .other-replies-link, html.dark .other-replies-link:hover, | |
html.dark .btn-neutral-positive, html.dark .btn-neutral-positive:hover, html.dark .btn-neutral-positive:focus { |
using System; | |
using System.Collections.Concurrent; | |
using System.Collections.Generic; | |
using System.Collections.Immutable; | |
using System.ComponentModel; | |
using System.Diagnostics; | |
using System.IO; | |
using System.IO.Compression; | |
using System.Linq; | |
using System.Net; |