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
{ | |
"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, | |
} |
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
[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 |
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
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); | |
} |
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
// 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", |
NewerOlder