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
# Source: https://stackoverflow.com/a/43317244 | |
$path = ".\aws-ec2-key.pem" | |
# Reset to remove explict permissions | |
icacls.exe $path /reset | |
# Give current user explicit read-permission | |
icacls.exe $path /GRANT:R "$($env:USERNAME):(R)" | |
# Disable inheritance and remove inherited permissions | |
icacls.exe $path /inheritance:r |
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 strict" | |
exports.__esModule = true | |
var distance_1 = require("@turf/distance") | |
var intersect_1 = require("@turf/intersect") | |
var helpers_1 = require("@turf/helpers") | |
/** | |
* Takes a bounding box and a cell depth and returns a set of triangular {@link Polygon|polygons} in a grid. | |
* | |
* @name triangleGrid | |
* @param {Array<number>} bbox extent in [minX, minY, maxX, maxY] order |
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
{"version":1,"resource":"file:///d%3A/Git/Senscity-Gitlab/senscity-design-system/src/components/cds-search/cds-search.stories.mdx","entries":[{"id":"jRUh.mdx","source":"searchReplace.source","timestamp":1653600241674},{"id":"cD3A.mdx","source":"searchReplace.source","timestamp":1654310379497},{"id":"E9jH.mdx","source":"searchReplace.source","timestamp":1654310439893},{"id":"h8jf.mdx","source":"moved.source","timestamp":1654310871436},{"id":"yrIl.mdx","source":"renamed.source","timestamp":1654310942169},{"id":"eMEG.mdx","source":"searchReplace.source","timestamp":1654312199578}]} |
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
/// <reference types="@fastly/js-compute" /> | |
import { Logger } from 'fastly:logger'; | |
addEventListener('fetch', (event) => event.respondWith(handleRequest(event))); | |
async function handleRequest(event) { | |
const logger = new Logger('my_new_relic_endpoint'); | |
let logOutput = { |
OlderNewer