function BeAwesome($ActualValue, [switch] $Negate)
{
[bool] $succeeded = $ActualValue -eq 'Awesome'
if ($Negate) { $succeeded = -not $succeeded }
if (-not $succeeded)
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
. |
external help file | Module Name | online version | schema |
---|---|---|---|
Pester-help.xml |
Pester |
2.0.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
/** | |
* Converts a bytes array into a hex string. | |
* | |
* @see {@link https://stackoverflow.com/a/34310051/9850103} | |
* @param bytes - Array with bytes | |
*/ | |
export const bytesToHex = (bytes: Array<number>) => { | |
return Array.from(bytes, function (byte) { | |
return ("0" + (byte & 0xff).toString(16)).slice(-2) | |
}).join("") |
15:51:48.522 WARN o.e.explorer.indexer.processes.ChainIndexer - An error occurred while syncing with the network. Restarting ...
org.http4s.InvalidMessageBodyFailure: Invalid message body: Could not decode JSON: {
"currentTime" : 1641311509124,
"network" : "mainnet",
"name" : "ergo-mainnet-4.0.16",
"stateType" : "utxo",
"difficulty" : null,
"bestFullHeaderId" : null,
"bestHeaderId" : "b2c1317e6e429facc1114cf2481f3b8cc02b23472ae57ffadf3165df7bffe3b6",
These schemas were automatically generated on 2021-12-18 using these Sequelize models and the most recent version of sequelize-to-json-schemas. To confirm that these are indeed all valid schemas use:
These schemas were automatically generated on 2021-12-18 using these Sequelize models and the most recent version of sequelize-to-json-schemas. To confirm that these are indeed all valid schemas use:
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 { z } from "zod" | |
const id = z.number().int() | |
const Project = z.object({ | |
id: id, | |
name: z.string(), | |
description: z.string().optional().nullable(), | |
customerId: z.number().int(), | |
}) |
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 { | |
Anchor, | |
Button, | |
Container, | |
Group, | |
Notification, | |
Paper, | |
Text, | |
useMantineTheme, | |
} from "@mantine/core" |
NewerOlder