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
@use "sass:selector"; | |
.er__weaponDetail { | |
$weapon-detail-weapon-image-size: 155px; | |
.er__weaponDetail__imageColumn { | |
display: flex; | |
flex-direction: row; | |
flex-wrap: nowrap; | |
align-items: flex-end; |
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
function npm_do { | |
if ($args.Count -lt 1) { | |
throw "At least one argument is required" | |
} | |
$npmBinFolder = $(npm bin) | |
$exePath = -join($npmBinFolder, "\", $args[0], ".ps1") | |
if ($args.Count -eq 1) { | |
. $exePath | |
} else { | |
$exeArgs = $args[1..($args.length - 1)] |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Document</title> | |
</head> |
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
{"swagger":"2.0","info":{"description":"Fake Online REST API for Testing and Prototyping","version":"1.0.0","title":"JSON Placeholder"},"host":"jsonplaceholder.typicode.com","tags":[{"name":"posts"},{"name":"comments"},{"name":"albums"},{"name":"photos"},{"name":"todos"},{"name":"users"}],"schemes":["https"],"paths":{"/posts":{"get":{"tags":["posts"],"operationId":"getPosts","summary":"Get all available posts","parameters":[{"name":"userId","in":"query","type":"integer","description":"Filter by user ID","required":true}],"produces":["application/json"],"responses":{"200":{"description":"successful operation","schema":{"type":"array","items":{"$ref":"#/definitions/Post"}}}}}},"/posts/{id}":{"get":{"tags":["posts"],"summary":"Get specific post","parameters":[{"name":"id","in":"path","description":"The ID of the post to retrieve","required":true,"type":"integer"}],"responses":{"200":{"description":"successful operation","schema":{"$ref":"#/definitions/Post"}},"404":{"description":"not found","schema":{"$ref":"#/ |
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
/** | |
* YouTube has no way for you to clear your [Watch later playlist](https://www.youtube.com/playlist?list=WL). | |
* | |
* So I made this. | |
*/ | |
(async () => { | |
await import("https://code.jquery.com/jquery-2.2.4.min.js"); | |
/** Total videos removed */ | |
let videosRemoved = 0; | |
/** Time between interacting with HTML elements */ |