Ben Sima

Results 34 comments of Ben Sima

Here is a nix expression that seems to work: ```nix with import {}; # docs: https://nixos.org/nixpkgs/manual/#sec-language-go let version = "1.0.0"; in buildGoModule rec { name = "themekit-${version}"; src = fetchFromGitHub...

Nix doesn't allow you to just copy stuff to `/usr/bin` - all the normal paths like that are write-protected. Instead, Nix installs stuff to `/nix/store/` and then brings it into...

Let me know if you need version numbers bumped, more docs, etc before merging.

Integration can be as simple as: ```clj (def config (let [cfg (aero/read-config (io/resource "config.edn"))] (if-not (spec/valid? ::conf-spec/config cfg) (throw (Exception. (spec/explain-str ::conf-spec/config cfg))) ;; if config is valid, return the...

One additional problem with making the entire post a link is this: in the RSS feed, the entire content is a link. In my RSS reader, this means the entire...

To properly fix this, we should probably add an option to turn on/off the link stripping. As a hotfix, it looks like we can just comment out this line: https://github.com/raamdev/independent-publisher/blob/513e7ff71312f585f13eb1460b4d9bc74d0b59bd/functions.php#L1229

An open issue already exists for this: https://github.com/raamdev/independent-publisher/issues/290

How about an environment variable at runtime or compile time that disables upload? In a corporate setting presumably we have control over these variables and can set something like `ASCIINEMA_NO_UPLOAD=1`...

> The recent https://www.stevegattuso.me/tech-stack/finances-budgeting.html#args has some nice examples of args files commented with #, but I'm not sure this actually works - it doesn't for me. Presumably this was just...

Yes Clay.FlexBox is a good module to study. I always use MDN docs for web stuff, they have really high quality docs https://developer.mozilla.org/en-US/docs/Web/CSS/grid I’ll just search “mdn ” like “mdn...