Skip to content

Instantly share code, notes, and snippets.

View ivanmolto's full-sized avatar
🟧
x402

Ivan Molto ivanmolto

🟧
x402
View GitHub Profile
@edgarpavlovsky
edgarpavlovsky / gist:695b896445c19b6f66f141696f596059
Last active September 9, 2025 16:58
check if any packages in your package.json dependency tree are affected by 2025-09-08 js hack
#!/usr/bin/env bash
# Helpful reading on the compromise:
# https://www.aikido.dev/blog/npm-debug-and-chalk-packages-compromised
# https://news.ycombinator.com/item?id=45169794
# https://x.com/P3b7_/status/1965094840959410230
# https://news.ycombinator.com/item?id=45169657
# NOTE: Requires `jq` and `rg`
# Both can be installed with brew:
/**
*Submitted for verification at Etherscan.io on 2021-09-05
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/// [MIT License]
/// @title Base64

Development Environment Setup

This is Gabriel Cardona's AVA Labs-centric development environment setup. Use at your own risk. Your mileage may vary.

Terminal

iTerm2 is a replacement for Terminal

Shell

@chranderson
chranderson / nvmCommands.js
Last active December 8, 2025 01:47
Useful NVM commands
// check version
node -v || node --version
// list locally installed versions of node
nvm ls
// list remove available versions of node
nvm ls-remote
// install specific version of node