sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh
| {"version":1,"resource":"file:///Users/elcharitas/Workspace/traefik-config/error-pages/502.html","entries":[{"id":"UurL.html","timestamp":1754748841971},{"id":"xOg6.html","source":"Workspace Edit","timestamp":1754750255742},{"id":"vRfy.html","source":"Fast Apply Undo","timestamp":1754750255851},{"id":"WTn4.html","timestamp":1754750338436}]} |
| #!/bin/bash | |
| # This script generates a self-signed certificate for a local development server on macOS | |
| # It is inspired by https://github.com/matt-goldman/local-signin-with-apple for windows powershell | |
| # Default URL and certificate password | |
| url="local-dev.com" | |
| certPassword="" | |
| # Check for root privileges |
| import { utils } from "ethers"; | |
| export function convert(value, unit = "ether") { | |
| if (value instanceof ethers.BigNumber) { | |
| return utils.formatUnits(value.toString(), unit); | |
| } else { | |
| return ethers.BigNumber.from(value); | |
| } | |
| } |