I hereby claim:
- I am 13xforever on github.
- I am 13xforever (https://keybase.io/13xforever) on keybase.
- I have a public key ASBv7cQQnzNQ64fyBFomr7-8ujat1BjLf5wvCM7Ujh46KAo
To claim this, I am signing this object:
col_bg, menu_bg,act_bg, act_fg, hovr_bg,txt_fg,presence,mention[,top_bg, top_fg] | |
dark: | |
ayu dark: | |
#0A0E14,#01060E,#01060E,#3D424D,#01060E,#3D424D,#91B362,#E6B450 | |
ayu mirage: | |
#1F2430,#191E2A,#191E2A,#707A8C,#191E2A,#707A8C,#A6CC70,#FFCC66 | |
obsidian: | |
#293134,#2F393C,#293134,#93C763,#2F393C,#81969A,#EC7600,#EC7600 | |
eva dark: |
I hereby claim:
To claim this, I am signing this object:
internal static class Program | |
{ | |
private static readonly SemaphoreSlim InstanceCheck = new SemaphoreSlim(0, 1); | |
private static readonly SemaphoreSlim ShutdownCheck = new SemaphoreSlim(0, 1); | |
internal static async Task Main(string[] args) | |
{ | |
var thread = new Thread(() => | |
{ | |
using (var instanceLock = new Mutex(false, @"Global\mutex name")) |
if ([System.Environment]::OSVersion.Version.Major -lt 6) { throw "Unsupported OS" } | |
$aeroEnablerSource = @' | |
using System; | |
using System.Runtime.InteropServices; | |
namespace CustomInterop | |
{ | |
[Flags] | |
public enum DWM_BB |
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
using System.Text; | |
namespace hotspot_conf_decoder | |
{ | |
class Program | |
{ |
declare module ActiveX { | |
export interface IXMLDOMNode { | |
attributes: IXMLDOMNamedNodeMap; | |
baseName?: string; | |
childNodes: IXMLDOMNodeList; | |
dataType?: string; | |
definition?: IXMLDOMNode; | |
firstChild: IXMLDOMNode; | |
lastChild: IXMLDOMNode; | |
namespaceURI?: string; |
//he.net | |
216.218.221.6 | |
216.218.221.42 | |
74.82.46.6 | |
216.66.84.46 | |
216.66.86.114 | |
216.66.87.14 | |
216.66.80.30 | |
216.66.80.26 | |
216.66.84.42 |
#!/bin/sh | |
opkg update | |
opkg remove dnsmasq | |
opkg install dnsmasq-full 6in4 tc miniupnpd luci-ssl luci-proto-ipv6 luci-app-upnp uhttpd-mod-tls | |
rm /etc/config/*-opkg | |
cp /etc/config/uhttpd.crt /etc/config/ | |
cp /etc/config/uhttpd.key /etc/config/ | |
cp /etc/config/dnscachestats.sh ~/ |
using System.Collections.Generic; | |
namespace System.Linq.Enumerable | |
{ | |
public static class Quickselect | |
{ | |
/// <summary> | |
/// Selects <b>count</b> <i>smallest</i> elements according to a key. Result is returned in no particular order. | |
/// </summary> | |
/// <typeparam name="T">Type of elements in collection</typeparam> |
public static class KeyValuePair | |
{ | |
public static KeyValuePair<TKey, TValue> Create<TKey, TValue>(TKey key, TValue value) | |
{ | |
return new KeyValuePair<TKey, TValue>(key, value); | |
} | |
} |