Jeremy Fleischman
Jeremy Fleischman
Input markdown: ``` # some text  ``` Generated TOC: ``` irb(main):003:0> puts Redcarpet::Markdown.new(Redcarpet::Render::HTML_TOC.new(with_toc_data: true)).render("# some text ") some text  => nil ``` Generated HTML: ``` irb(main):004:0> puts Redcarpet::Markdown.new(Redcarpet::Render::HTML.new(with_toc_data:...
I just spent a while trying to figure out why a gatsby generated rss feed included links to this repo. After much searching, I discovered this fallback code: https://github.com/dylang/node-rss/blob/1.2.2/lib/index.js#L36. This...
Trying to access `self._scenes_cache` only works after `self.scenes()` has been invoked. Normally, the previous line of code (`assert scene_name in self.scenes()`) would cause an invocation of `self.scenes()` (and thereby populate...
I'm deploying mosquitto to my Kubernetes cluster. I've got my configuration in a ConfigMap (which works fine), which has a `password_file /mosquitto/secret/passwords` directive in it. `/mosquitto/secret` is a Volume mounted...
## Describe your Issue After installing the helm chart, I see warnings like this on `/settings/admin/overview`: - Your web server is not properly set up to resolve "/.well-known/caldav". Further information...
Here's what `npm audit` shows against `main`: npm audit ``` $ npm audit ... === npm audit security report === ┌──────────────────────────────────────────────────────────────────────────────┐ │ Manual Review │ │ Some vulnerabilities require your...
See discussion on https://github.com/cubing/icons/pull/106#issuecomment-1712192607. We're starting to form some opinions about naming conventions (kebab case, longer, more readable ids). @dmint789 also pointed out that it's really unclear what the "ids"...
See https://github.com/blog/2112-delivering-octicons-with-svg and https://css-tricks.com/icon-fonts-vs-svg/. https://24ways.org/2014/an-overview-of-svg-sprite-creation-techniques/ described a neat sprite solution that didn't work in safari back in 2014 (hopefully it's working now? Other articles about this: - http://ianfeather.co.uk/ten-reasons-we-switched-from-an-icon-font-to-svg/ - https://speakerdeck.com/ninjanails/death-to-icon-fonts...
(related to #4) See the definition of [`ActivityCode`](https://docs.google.com/document/d/1hnzAZizTH0XyGkSYe-PxFL5xpKVWl_cvSdTzlT_kAs8/edit#heading=h.14uuu58hnua) from the WCIF: > Some common other activities have defined IDs: > - other-registration: Registration > - other-breakfast: Breakfast > - other-lunch:...
See https://fortawesome.github.io/Font-Awesome/examples/#fixed-width. An example of things not looking so great:  Right now, applying the `fa-fw` class to our icons doesn't work because they have a display of inline, I...