I hereby claim:
- I am rcmorano on github.
- I am rcmorano (https://keybase.io/rcmorano) on keybase.
- I have a public key ASBwO18twnFxYa7j8rn56PLF7YiUxuPbxzJVMdidmXEnnQo
To claim this, I am signing this object:
root@5bafa702cbe1:/data# jormungandr-get-txs-sent-from-local | jq '.fragment_id="d533cc12c2053833a28b490c97e349546404c7ab5d1345f9b5a5aee744967730"' | jq '.status.InABlock.block="1edcf1b0315d0106ddf16c5aeb4341da3386e01997fb125f8364c2d6c6da6ef0"' | |
{ | |
"fragment_id": "d533cc12c2053833a28b490c97e349546404c7ab5d1345f9b5a5aee744967730", | |
"last_updated_at": "2019-12-18T10:42:19.253812841+00:00", | |
"received_at": "2019-12-18T10:29:04.245659185+00:00", | |
"received_from": "Rest", | |
"status": { | |
"InABlock": { | |
"block": "1edcf1b0315d0106ddf16c5aeb4341da3386e01997fb125f8364c2d6c6da6ef0", | |
"date": "4.26517" |
root@01d95db1d7d4:/data# cardano-wallet serve --genesis-block-hash 8e4d2a343f3dcf9330ad9035b3e8d168e6728904262f2c434a4f8f934ec7b676 --node-port 8443 | |
[cardano-wallet:Info:4] [2019-12-14 15:13:31.93 UTC] Running as v2019.12.13 (git revision: 6c6d1dca04fe327a1e05b9d2028f33bcaa6f4993) | |
[cardano-wallet:Info:4] [2019-12-14 15:13:31.93 UTC] Wallet backend server starting... | |
[cardano-wallet:Info:4] [2019-12-14 15:13:31.93 UTC] Node is Jörmungandr on testnet | |
[cardano-wallet.daedalus-ipc:Info:17] [2019-12-14 15:13:31.93 UTC] Daedalus IPC is not enabled. | |
[cardano-wallet:Info:18] [2019-12-14 15:13:31.94 UTC] Waiting for Jörmungandr to be ready on tcp/8443 | |
[cardano-wallet:Info:18] [2019-12-14 15:13:31.94 UTC] Jörmungandr is ready. | |
[cardano-wallet:Notice:18] [2019-12-14 15:13:33.12 UTC] 5 migrations were applied to the database. | |
[cardano-wallet:Info:18] [2019-12-14 15:13:33.12 UTC] Wallet backend server listening on 127.0.0.1:8090 | |
[cardano-wallet.stake-pools:Info:24] [2019-12-14 15:13:33.13 UTC] Start monitoring stake pools |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# | |
# License and Author | |
# | |
# Author:: Roberto C. Morano (<[email protected]>) | |
# | |
# Copyright:: 2018, Roberto C. Morano (<[email protected]>) | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. |
#!/bin/bash | |
#DOCKER_REGISTRY_URI=_DOCKER_REGISTRY_URI_ | |
#DOCKER_REGISTRY_USER=_DOCKER_REGISTRY_USER_ | |
#DOCKER_REGISTRY_PASS=_DOCKER_REGISTRY_PASS_ | |
expect <<EOF | |
spawn docker login -u $DOCKER_REGISTRY_USER $DOCKER_REGISTRY_URI | |
while (1) { | |
expect { |
alias docker-container-most-recent='docker ps| grep -v ^CONTAINER | head -n1 | awk "{print \$1}"' | |
alias docker-container-diff-most-recent='LAST_CONTAINER=$(docker-container-most-recent); if [ ! -z "$LAST_CONTAINER" ]; then docker diff $LAST_CONTAINER; else echo "There are no running containers!"; fi' | |
alias docker-container-inspect-most-recent='LAST_CONTAINER=$(docker-container-most-recent); if [ ! -z "$LAST_CONTAINER" ]; then docker inspect $LAST_CONTAINER; else echo "There are no running containers!"; fi' | |
alias docker-container-remove-all='docker ps -a | grep -v ^CONTAINER|awk "{print \$1}" | xargs -I % sh -c "docker kill %; docker rm %"' | |
alias docker-container-remove-all-non-running='docker ps -a | grep -v ^CONTAINER | grep Exit | awk "{print \$1}" | xargs -I % sh -c "docker kill %; docker rm %"' | |
alias docker-image-remove-all='docker-container-remove-all; docker images -a | grep -v ^REPOSITORY | awk "{print \$3}" | xargs docker rmi' | |
alias docker-image-remove-orphan='docker images | grep "<none>" | awk "{pri |
In e.g.: you 'docker run -t -i' a 'bash' session and '.bashrc' is fucked up, container will forever respawn disallowing you to 'docker rmi' the used image .
docker rmi triangle/ubuntu-saucy-with-rvm 2>&1|grep ^Error|awk '{print $10}'|xargs docker rm
APT::Install-Recommends "false"; | |
APT::Install-Suggests "false"; |
#!/bin/bash | |
git filter-branch --env-filter ' | |
an="$GIT_AUTHOR_NAME" | |
am="$GIT_AUTHOR_EMAIL" | |
cn="$GIT_COMMITTER_NAME" | |
cm="$GIT_COMMITTER_EMAIL" | |
if [ "$GIT_COMMITTER_NAME" = "forgot_to_set_user" ] |
#!/bin/bash | |
# | |
# Copyright (C) 2013, Roberto C. Morano <[email protected]> | |
# | |
# This software is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation; either version 2 of the License, or | |
# (at your option) any later version. | |
# | |
# This software is distributed in the hope that it will be useful, |