Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Write reusable, composable and modular R code
R 431 26
Named operators for C++
C++ 447 31
Range-based for loops to iterate over a range of numbers or values
C++ 249 31
My PhD thesis, “Investigating the link between tRNA and mRNA abundance in mammals”
TeX 32 3
minted is a LaTeX package that provides syntax highlighting using the Pygments library. Highlighted source code can be customized using fancyvrb.
TeX 1.3k 107
def fib(n: int) -> int:
def fib(n, a, b):
if n == 0: return a
if n == 1: return b
return fib(n - 1, b, a + b)
Seeing something unexpected? Take a look at the GitHub profile guide.