Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.
You must be logged in to block users.
Contact GitHub support about this userβs behavior. Learn more about reporting abuse.
Write reusable, composable and modular R code
R 501 29
Named operators for C++
C++ 457 34
Range-based for loops to iterate over a range of numbers or values
C++ 263 32
My PhD thesis, βInvestigating the link between tRNA and mRNA abundance in mammalsβ
TeX 35 4
minted is a LaTeX package that provides syntax highlighting using the Pygments library. Highlighted source code can be customized using fancyvrb.
TeX 1.4k 115
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)
box::use('foo')
Seeing something unexpected? Take a look at the GitHub profile guide.