I hereby claim:
- I am tlnagy on github.
- I am tlngy (https://keybase.io/tlngy) on keybase.
- I have a public key ASCZ0v6_xUtiDFmiRIqOknf6Zmu36GVYNVECLzJHKjTjbAo
To claim this, I am signing this object:
| #!/bin/bash | |
| since="$1" | |
| if [[ -z $since ]] ; then | |
| since="$(git describe --abbrev=0 HEAD^).." | |
| fi | |
| git log --pretty=format:'* %s (%h, @%aN)' "$since" | egrep 'fixes #\d|ref #\d' |
| from __future__ import division, print_function | |
| import sys | |
| if sys.version_info[0] < 3: | |
| print("Python 3 required") | |
| sys.exit(1) | |
| import math, urllib.request, re | |
| try: | |
| import matplotlib.pyplot as plt | |
| import seaborn as sns | |
| except ImportError: |
| import pickle | |
| import seaborn as sns | |
| sns.set_style("whitegrid") | |
| %pylab --no-import-all | |
| %matplotlib inline | |
| flatui = ["#9b59b6", "#3498db", "#95a5a6", "#e74c3c", "#34495e", "#2ecc71"] | |
| data = pickle.load(open("allele_dic.pkl", "rb")) | |
| translate = pickle.load(open("translate.pkl", "rb")) | |
| aminotonumber = pickle.load(open("aminotonumber.pkl", "rb")) |
| # type definition | |
| type NewType | |
| b::AbstractMatrix | |
| end | |
| # default constructor | |
| # initializes a new `NewType` with a random | |
| # 5x5 matrix stored in b | |
| NewType() = NewType(rand(5,5)) |
| #! /bin/sh | |
| # Copyright (c) 2014, Tamas Nagy <tamas at tamasnagy dot com> | |
| # All rights reserved. | |
| # | |
| # Redistribution and use in source and binary forms, with or without | |
| # modification, are permitted provided that the following conditions are met: | |
| # | |
| # 1. Redistributions of source code must retain the above copyright notice, | |
| # this list of conditions and the following disclaimer. |
I hereby claim:
To claim this, I am signing this object:
| """ | |
| Copyright (c) 2019 Tamas Nagy | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: |