First thing is to get the debug output from ssh
.
$ ssh -vvv <host>
There will be a lot of output so maybe start with just -v
.
I hereby claim:
To claim this, I am signing this object:
'use strict'; | |
const fs = require('fs'); | |
const pkg = require('./package'); | |
const _ = require('lodash'); | |
const npm = require('libnpm'); | |
const async = require('neo-async'); | |
const kv = require('./kv'); | |
function check (pkgjson) => { |
FORMAT: 1A | |
# A | |
## A [GET /a] | |
+ Request (application/json) | |
+ Attributes(Filter) |
# /etc/systemd/system/[email protected] | |
[Unit] | |
Description=User resume actions | |
After=suspend.target | |
[Service] | |
User=%I | |
Type=simple | |
ExecStartPre=/usr/local/bin/ssh-connect.sh | |
ExecStart=/usr/bin/mysql -e 'slave start' |
This Gist give some tips in order to remove AWS Glacier Vault
with AWS CLI (ie. https://aws.amazon.com/en/cli/).
$ aws glacier initiate-job --job-parameters '{"Type": "inventory-retrieval"}' --vault-name YOUR_VAULT_NAME --account-id YOUR_ACCOUNT_ID --region YOUR_REGION
# -*- mode: gitignore; -*- | |
# Emacs specific global ignores | |
*~ | |
\#*\# | |
/.emacs.desktop | |
/.emacs.desktop.lock | |
*.elc | |
auto-save-list | |
tramp |
#include "testing.h" | |
TEST_IMPL(fail) { | |
return TEST_FAIL; | |
} |
#!/usr/bin/env python | |
import sys | |
import logging | |
import argparse | |
import textwrap | |
import json | |
import dateutil.parser | |
import dateutil | |
import urllib.request as urllib |
import csv | |
from datetime import datetime | |
import matplotlib.pyplot as plt | |
from scipy.signal import savgol_filter | |
# Input is a csv file in the following form | |
# the value to be plotted, date (timestamp), .... whatever | |
def plot_times(infile): |