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 | |
| # Usage: ./eth-balance address | |
| wei="$(curl -s https://api.blockcypher.com/v1/eth/main/addrs/"$1" | jq .balance)" | |
| eth="$(echo "$wei / (10 ^ 18)" | bc -l)" | |
| echo $eth |
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 | |
| # Usage awsenv enviromnent command... | |
| search="$1" | |
| shift | |
| file=$(find "$HOME"/.password-store/AWS | grep "$search.*/AKIA.*gpg$") | |
| if [[ x"$file" = x ]]; then | |
| echo "Could not find a AWS key at $search" >&2 | |
| exit 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
| #!/usr/bin/env ruby | |
| # frozen_string_literal: true | |
| require 'optparse' | |
| require 'active_support/all' | |
| options = {} | |
| OptionParser.new do |opts| | |
| opts.banner = 'Usage: gsubrb [options]' | |
| opts.on('-r', '--replace [CODE]', String, 'Block that will be executed for each match') do |code| |
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
| const net = require('net'); | |
| const child_process = require('child_process'); | |
| function makeProxy(port, jump, target) { | |
| const server = net.createServer(socket => { | |
| const subprocess = child_process.spawn( | |
| 'ssh', | |
| [jump, '-W', target], | |
| { stdio: ['pipe', 'pipe', 'inherit'] } | |
| ); |
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
| // Copy/paste all ENV variables from one AWS beanstalk env to another. Use this functions in the browser console | |
| // Copy ENV as json | |
| copy( | |
| JSON.stringify( | |
| Object.fromEntries( | |
| Array.from( | |
| document.querySelectorAll('.env-props-table tbody tr:not(.ng-hide)') | |
| ).map(e => [ | |
| e.querySelector('[ng-model="option.optionName"]').value, |
OlderNewer