Skip to content
View klmr's full-sized avatar
πŸ“¦
Making your R code easier to reuse
πŸ“¦
Making your R code easier to reuse

Organizations

@EBI-predocs

Block or report klmr

Block user

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. box Public

    Write reusable, composable and modular R code

    R 902 49

  2. named-operator Public

    Named operators for C++

    C++ 500 32

  3. cpp11-range Public

    Range-based for loops to iterate over a range of numbers or values

    C++ 311 38

  4. thesis Public

    My PhD thesis, β€œInvestigating the link between tRNA and mRNA abundance in mammals”

    TeX 40 3

  5. gpoore/minted Public

    minted is a LaTeX package that provides syntax highlighting using the Pygments library. Highlighted source code can be customized using fancyvrb.

    TeX 1.8k 127

  6. Efficient, tail recursive fibonacci ...
    1
    def fib(n: int) -> int:
    2
        def f(n, a, b):
    3
            if n == 0: return a
    4
            if n == 1: return b
    5
            return f(n - 1, b, a + b)

105 contributions in the last year

Contribution Graph
Day of Week April May June July August September October November December January February March April
Sunday
Monday
Tuesday
Wednesday
Thursday
Friday
Saturday
Less
No contributions.
Low contributions.
Medium-low contributions.
Medium-high contributions.
High contributions.
More

Activity overview

Contributed to klmr/aka, r-universe/klmr, klmr/rprofile and 24 other repositories
Loading A graph representing klmr's contributions from April 07, 2024 to April 13, 2025. The contributions are 75% commits, 19% issues, 5% pull requests, 1% code review.

Contribution activity

April 2025

Created 6 commits in 2 repositories
Created 2 repositories

Created a pull request in AstroNvim/astrocommunity that received 2 comments

fix(copilot-cmp): add symbol_map initialization in mini.icons configuration

πŸ“‘ Description Without the change from this PR, loading astrocommunity/completion/copilot-cmp leads to the following error message at startup: Fail…

+1 βˆ’0 lines changed β€’ 2 comments
Reviewed 1 pull request in 1 repository
AstroNvim/astrocommunity 1 pull request

Created an issue in R-nvim/R.nvim that received 3 comments

R_prompt_str does not work

Hi, I’m running Nvim 0.11.0 with R.nvim ccdd26f. Here’s my minimal config: ---@type LazySpec return { { "R-nvim/R.nvim", branch = "main", lazy = false

3 comments
Loading