Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
javascript:(function() { | |
var title = prompt("Enter the title of the new item:"); | |
var description = prompt("Enter the description of the new item:"); | |
if (title && description) { | |
var xhr = new XMLHttpRequest(); | |
xhr.open("POST", "https://dev.azure.com/{your-organization}/{your-project}/_apis/wit/workitems/$v2?api-version=6.1"); | |
xhr.setRequestHeader("Content-Type", "application/json"); | |
xhr.setRequestHeader("Authorization", "Basic " + btoa("{your-personal-access-token}:")); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
body:after { | |
background-image: url(https://media.surlyhorns.com/monthly_2022_12/wtf.gif.d8cf3e0f68b9d513a555d7f60951434e.gif); | |
background-size: cover; | |
display: block; | |
position: absolute; | |
content: ""; | |
width: 194px; | |
height: 194px; | |
right: 10vw; | |
bottom: 0; |
This file contains 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 url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"); | |
:root { | |
--base-line-height: 24px; | |
--base-line-ratio: 0.64; | |
--base-font-size: calc(var(--base-line-height) * var(--base-line-ratio)); | |
--typescale: 1.14; | |
--typescale-lg: 1.25; | |
--title-size: clamp(30px, 7vw, 60px); | |
--stat-font-size: clamp(5rem, 30cqi, 8rem); | |
--sjs-red: #ee3540; |
NewerOlder