a:not(.no_default) {
text-decoration: none;
color: inherit;
}
a:not(.no_default):hover {
text-decoration: none;
}
This file contains hidden or 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
*, *::before, *::after { | |
box-sizing: border-box; | |
margin: 0; | |
text-wrap: pretty; | |
} | |
html, body, div, span, applet, object, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
a, abbr, acronym, address, big, cite, code, | |
del, dfn, em, ins, kbd, q, s, samp, |
This file contains hidden or 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
// Event types have a namespace to aid in finding bugs | |
export enum EventType { | |
EXAMPLE = 'namespace:example', | |
} | |
const EventHandler = { | |
callbacks: {} as { [key in EventType]: { [id: string]: Function }}, | |
on: (callerSig: string, type: EventType, callback: Function) => { | |
if (!EventHandler.callbacks[type]) { | |
EventHandler.callbacks[type] = {}; |
This file contains hidden or 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
Imports System.Configuration | |
Imports System.Reflection | |
Public Class AppConfig | |
Private _config As Configuration | |
Private _settings As AppSettingsSection | |
Public Function GetProperty(propertyName As String) As String | |
If Not HasProperty(propertyName) Then | |
Return Nothing |
This file contains hidden or 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
import cv2 | |
import time | |
import keyboard | |
import random | |
import threading | |
import pygame | |
BLOCKSIZE = 4 | |
STOP_VID = False |
OlderNewer