π¦
Making your R code easier to reuse
Geneticist π§¬, computer scientist πΊ and software engineer π¨βπ».
Pinned Loading
-
-
cpp11-range
cpp11-range PublicRange-based for loops to iterate over a range of numbers or values
-
gpoore/minted
gpoore/minted Publicminted is a LaTeX package that provides syntax highlighting using the Pygments library. Highlighted source code can be customized using fancyvrb.
-
Efficient, tail recursive fibonacci ...
Efficient, tail recursive fibonacci implementation for R and Python (but since they doesnβt do TCO itβs still using O(n) space) 1def fib(n: int) -> int:
2def f(n, a, b):
3if n == 0: return a
4if n == 1: return b
5return f(n - 1, b, a + b)
105 contributions in the last year
Day of Week | April Apr | May May | June Jun | July Jul | August Aug | September Sep | October Oct | November Nov | December Dec | January Jan | February Feb | March Mar | April Apr | ||||||||||||||||||||||||||||||||||||||||
Sunday Sun | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Monday Mon | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Tuesday Tue | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Wednesday Wed | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Thursday Thu | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Friday Fri | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Saturday Sat |
Less
No contributions.
Low contributions.
Medium-low contributions.
Medium-high contributions.
High contributions.
More
Activity overview
Loading
Contribution activity
April 2025
Created 6 commits in 2 repositories
Created 2 repositories
-
klmr/astrocommunity
Lua
This contribution was made on Apr 9
-
klmr/nvim-config
Lua
This contribution was made on Apr 5
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
-
fix(codeium-nvim): add symbol_map initialization in mini.icons configuration
This contribution was made on Apr 9
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