Skip to content

Instantly share code, notes, and snippets.

{
"workbench.colorTheme": "1984",
// Controls the commit message length threshold for showing a warning.
"git.inputValidationLength": 72,
// Controls the commit message subject length threshold for showing a warning. Unset it to inherit the value of `config.inputValidationLength`.
"git.inputValidationSubjectLength": 50,
}
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[user]
name = Ray Weitzenberg
email = [email protected]
[core]
excludesfile = /Users/00821817/.gitignore_global
@mechaneyes
mechaneyes / styleCount.js
Last active December 19, 2019 19:56
using sessionStorage to count styles viewed
let shirt = JSON.parse(sessionStorage.getItem("shirt"));
let pants = JSON.parse(sessionStorage.getItem("pants"));
let fleece = JSON.parse(sessionStorage.getItem("fleece"));
let counter = 0;
$(".shirt").click(function() {
if (shirt !== "true") {
counter++;
$(".countHolder").html(counter);
}
@mechaneyes
mechaneyes / settings.json
Last active March 27, 2019 14:36
Color customizations for VS Code
// https://marketplace.visualstudio.com/items?itemName=wesbos.theme-cobalt2
{
"breadcrumbs.enabled": false,
// Path to the git executable.
"git.path": null,
"extensionsGallery": {
"serviceUrl": "https://marketplace.visualstudio.com/_apis/public/gallery",