I hereby claim:
- I am theculliganman on github.
- I am theculliganman (https://keybase.io/theculliganman) on keybase.
- I have a public key ASDHX_F7noGXju2HMTtCUMTPILkx1bj7z97-0_tanhrjJQo
To claim this, I am signing this object:
"""Get last logins for users over the past few months.""" | |
import argparse | |
import asyncio | |
import asyncssh | |
import datetime | |
from dateparser import parse as parse_date | |
from typing import List, Tuple, Optional | |
async def ssh_login(hostname: str, username: str, password: str) -> Optional[asyncssh.SSHClient]: | |
""" |
I hereby claim:
To claim this, I am signing this object:
guy = "\n".join([ | |
" ` `", | |
" ` ` `", | |
" ``.``` . `` ` `. `", | |
" ``````` ` ` ` ` . . ``", | |
" ```. `.```. ... ``..```` `", | |
" ` ` `` .`.`` ..`.``....`.`.`....` .", | |
" ` ..` `. ..``.`....``....```.....``` `", | |
" ` `. ``.``.`.````.`.```...`.....``...````", | |
" ` . ...`,..`..```...``.````. `.```.`` .`", |
CSS only Jasp in a box. Click on the box get his attention.
A Pen by tiffany choong on CodePen.
FROM ubuntu:14.04 | |
RUN apt-get update -y | |
RUN apt-get update -y && \ | |
apt-get upgrade -y && \ | |
apt-get install -y openssh-server python-mpi4py python-numpy \ | |
python-virtualenv python-scipy gcc gfortran openmpi-checkpoint binutils | |
RUN mkdir /var/run/sshd |
#/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# Ryan Culligan | |
import json | |
class ChessBoard: | |
""" | |
Chess Board class | |
""" |
#!/usr/bin/env python | |
import os | |
import subprocess as sp | |
import multiprocessing | |
def get_finished(): | |
nexuses = (i for i in os.listdir(os.getcwd()) if i.endswith('.nex')) | |
for nexus in nexuses: | |
tree_files = (nexus + '.run{}.p'.format(i) for i in (1, 2)) |
ll | | |
grep "Dec 19" | | |
awk '{ for (i=9; i<=NF; i++) if( $i != $NF ) str = str " " $i; else str = str " " $i "\n"}; END {print str}' | | |
xargs cat |