Skip to content

Instantly share code, notes, and snippets.

View StevenKowalzik's full-sized avatar
🛹

Steven Kowalzik StevenKowalzik

🛹
View GitHub Profile
@StevenKowalzik
StevenKowalzik / weekday.js
Last active March 18, 2018 17:33
Get Today if weekday, if not get monday
const getToday = () => (new Date().getDay() != 0 && new Date().getDay() != 6) ? new Date().getDay() : 1;
@StevenKowalzik
StevenKowalzik / gist:e1cbe61459f60f46416ea4d0d61f4b8a
Created October 16, 2018 13:23
Google Direction Request with vue2-google-maps
<template>
<div>
<h2>Map</h2>
<GmapMap
ref="gmap"
:center="{lat:53.0, lng:8.8}"
:zoom="13"
map-type-id="terrain"
style="height: 600px"
>
@StevenKowalzik
StevenKowalzik / betterdarktwitch.css
Last active October 4, 2019 12:34
Better Twitch CSS (No hard black for new design) for Custom CSS Plugins
.tw-flex.twilight-main,
.simplebar-content,
.rooms-header,
.chat-input{
background-color: #212126;
}
@StevenKowalzik
StevenKowalzik / settings.json
Last active October 23, 2019 08:10
VSCode Settings
{
"workbench.iconTheme": "material-icon-theme",
"editor.fontSize": 14,
"editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace",
"editor.tabSize": 2,
"editor.minimap.enabled": false,
"editor.lineHeight": 28,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},