| title | Conditions of Use - Amazon Customer Service - Disputes section only |
|---|---|
| source | https://www.amazon.com/gp/help/customer/display.html?nodeId=GLSBYFE9MGKKQXXM |
| author | |
| published | 2026-08-14 |
| created | 2026-08-18 |
| description | Last updated: August 14, 2026 |
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
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # Simple security scanner for vulnerable npm packages | |
| # Checks all repos in an organization for specific package versions | |
| # | |
| # REQUIREMENTS FOR MACOS: | |
| # ----------------------- | |
| # 1. Install GitHub CLI: | |
| # brew install gh |
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
| #!/usr/bin/env bash | |
| # cast is required: https://book.getfoundry.sh/getting-started/installation | |
| [ ! -x "$(command -v cast)" ] && echo "cast is not installed, please run 'curl -L https://foundry.paradigm.xyz | bash'." && exit 1 | |
| SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" | |
| ETH_KEYSTORE_DIR=$SCRIPT_DIR/test-keystore | |
| if [ ! -d "$ETH_KEYSTORE_DIR" ]; then | |
| echo "Creating test keystore" |
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
| # Lookup your existing disks and volumes | |
| diskutil apfs list | |
| # We will modify diskX | |
| disk=diskX | |
| # Assuming that the volume diskXs1 already exist, we need to mark it as a data volume before adding it to a group. | |
| diskutil apfs chrole ${disk}s1 D | |
| # The volume group cannot be created directly. It will be created during the creation of the 2nd volume. |
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
| #!/bin/bash | |
| if [[ ! "$1" ]] | |
| then | |
| echo "Usage: $(basename $0) [address]" | |
| exit 1 | |
| fi | |
| address=$1 |
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
| { | |
| "terminal.integrated.profiles.osx": { | |
| "Bash (from brew)": { | |
| "path": "/usr/local/bin/bash", | |
| "args": ["-l"] | |
| } | |
| }, | |
| "terminal.integrated.defaultProfile.osx": "Bash (from brew)" | |
| } |
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
| import { ethers } from "hardhat"; | |
| async function main() { | |
| let abi = `[{"constant":false,"inputs":[{"name":"_pinakion","type":"address"}],"name":"changePinakion","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"RNBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"disputesWithoutJurors","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"passPhase","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"governor","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastDelayedSetStake","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_d |
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
| #!/bin/bash | |
| npm list -g npm-dependants || npm install -g npm-dependants | |
| for p in $(npm search @kleros --parseable | cut -f1 | sort) | |
| do | |
| echo $p | |
| npm-dependants $p | sed 's/^/├─ /g' | |
| echo | |
| done |
NewerOlder