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
| function Save-KBFile { | |
| <# | |
| .SYNOPSIS | |
| Downloads patches from Microsoft | |
| .DESCRIPTION | |
| Downloads patches from Microsoft | |
| .PARAMETER Name | |
| The KB name or number. For example, KB4057119 or 4057119. |
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
| const homes = [...new Set( | |
| [...document.querySelectorAll('a[href]')] | |
| .map(x => x.href) | |
| .filter(u => u.includes('_zpid')) | |
| )] | |
| .map(id => { | |
| const addr = id.split('/')[4].replace(/-/g, ' ') | |
| const short = addr.split(' ').slice(0, -3).join(' ') | |
| return { addr, zillow: id, | |
| streeteasy: `https://streeteasy.com/search?search=${short}`, |
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
| # world.gd | |
| extends Node2D | |
| class_name World | |
| const TILE_SIZE = 32 | |
| const SEA_LEVEL = 0.0 | |
| const RENDER_DISTANCE = 16.0 | |
| @export var altitude_noise: FastNoiseLite |