Skip to content

Instantly share code, notes, and snippets.

View mkabischev's full-sized avatar

Mike Kabischev mkabischev

View GitHub Profile
_complete_ssh_hosts ()
{
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
comp_ssh_hosts=`cat ~/.ssh/known_hosts | \
cut -f 1 -d ' ' | \
sed -e s/,.*//g | \
grep -v ^# | \
uniq | \
grep -v "\[" ;
This message was created automatically by mail delivery software.
A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:
info+jr5lyjla.aeaujcnhnu@support.instagram.com
SMTP error from remote mail server after end of data:
host msgin.vvv.facebook.com [173.252.79.16]: 554 5.7.1 POL-P6 http://postmaster.facebook.com/response_codes?ip=185.5.136.95#pol-m Message refused
------ This is a copy of the message, including all the headers. ------
package main
import (
"fmt"
)
func Download(urls []string) (downloaded, failed []string) {
return nil, nil
}
package main
import (
"fmt"
)
func Download(urls []string) (downloaded, failed []string) {
return
}