Skip to content

Instantly share code, notes, and snippets.

View SevereCloud's full-sized avatar

Daniil Suvorov SevereCloud

View GitHub Profile
package main
import "testing"
func Test_isValid(t *testing.T) {
f := func(URL, clientSecret string, want, wantErr bool) {
t.Helper()
got, err := isValid(URL, clientSecret)
if (err != nil) != wantErr {
t.Errorf("isValid() error = %v, wantErr %v", err, wantErr)
@SevereCloud
SevereCloud / helper.ts
Created January 2, 2020 14:38
WritableClass for svelte3
import { Writable } from 'svelte/store'
// eslint-disable-next-line @typescript-eslint/no-empty-function
function noop(): void { }
/** Callback to inform of a value updates. */
type Subscriber<T> = (value: T) => void;
/** Unsubscribes from value updates. */
type Unsubscriber = () => void;
@SevereCloud
SevereCloud / up.sh
Last active May 24, 2020 12:20
Updating version
#!/bin/bash
#get highest tag number
VERSION=`git describe --abbrev=0 --tags`
#replace . with space so can split into an array
VERSION_BITS=(${VERSION//./ })
#get number parts and increase last one by 1
VNUM1=${VERSION_BITS[0]}
/* typography.css */
:root {
/* Label Small */
--md-sys-typescale-label-small-text-transform: unset;
--md-sys-typescale-label-small-axis-value: unset;
--md-sys-typescale-label-small-font-style: unset;
--md-sys-typescale-label-small-text-decoration: unset;
/* Label Small line height */