Skip to content

Instantly share code, notes, and snippets.

View clintval's full-sized avatar

Clint Valentine clintval

View GitHub Profile
@clintval
clintval / ackermanns
Last active August 29, 2015 14:08
Ackermann Function
#!/usr/bin/python
# pylint: disable=C0103
"""
A function which outputs the Ackermann values for M and N
Citation: Weisstein, Eric W. "Ackermann Function." From MathWorld--A Wolfram Web Resource.
http://mathworld.wolfram.com/AckermannFunction.html
"""
M = 3
@clintval
clintval / kmeans-clustering.ipynb
Last active February 23, 2021 14:36
k-means silhouette analysis using sklearn and matplotlib on Iris data.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
def spark(arr):
if len(arr) <= 1:
return '▅'
elif min(arr) == max(arr):
return ''.join(['▅' for _ in arr])
ticks = ('▁', '▂', '▃', '▄', '▅', '▆', '▇', '█')
norm = [round(7 * (x - min(arr)) / (max(arr) - min(arr))) for x in arr]
return ''.join([ticks[int(num)] for num in norm])
@clintval
clintval / my-variant.ipynb
Last active August 5, 2017 05:30
A quick example showing the interactive API of MyVariant.info
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@clintval
clintval / network-communities.ipynb
Created August 5, 2017 07:03
Community detection with networkx using the Karate Club network
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@clintval
clintval / linux-tips.md
Last active February 8, 2018 03:13
The UNIX commands I forget

Git

Squash three commit branch and update remote branch.

$ git checkout feature_branch
$ git rebase -i HEAD~3
# Choose `pick` for the base.
# Choose `squash` for all others
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.