Benjamin Lee
Benjamin Lee
When I added `PANDOC_WRITER_OPTIONS += --filter pandoc-fignos` to my Makefile, I was running into an issue exactly like [this](https://github.com/rstudio/rmarkdown/issues/592) one. I was able to override it by going into `pandoc-options.inc.mk`...
I am trying to switch my docs over to nbsphinx and am running into a bit of a strange issue. I used to refer to a function like this: :func:`~mechwolf.validate_component`...
My program: ```nim let doc = """ Naval Fate. Usage: naval_fate ship new ... naval_fate ship move [--speed=] naval_fate ship shoot naval_fate mine (set|remove) [--moored | --drifting] naval_fate (-h |...
I am thinking that one way to defeat CAPTCHAs is to use Libgen rather than Sci-Hub. To get one of my papers, for example, via the DOI 10.1093/nar/gkz404, one can...
```nim import fusion/matching {.experimental: "caseStmtMacros".} case [(1, 3), (3, 4)]: of [(1, @a), _]: echo a else: echo "Match failed" ``` Results in: ``` benjaminlee@Benjamins-Mac-mini ~ [1]> nim c tmatching.nim...
This produces the expected output: ```R pdf("test.pdf", width = 11, # The width of the plot in inches height = 8.5 # The height of the plot in inches )...
This project looks great! So good in fact that I'm considering porting my website over. I know this project is super new, but I would definitely suggest implementing `@media (prefers-color-scheme:...
I'm using Plotly and have formatted my tooling to generate data formatted like this: ``` var trace1 = { x: [1, 2, 3, 4], y: [10, 15, 13, 17], mode:...
Input: `I was born in the U.S.A. My name is Benjamin D. Lee.` Desired output: `["I was born in the U.S.A.", "My name is Benjamin D. Lee."]` Actual output: `I...
Right now ORFs are numbered, which causes problems on subsequent runs with slightly changed parameters such as a different minimum length. Maybe encoding the start and stop position would be...