Jeff Ruane

Results 10 comments of Jeff Ruane

@czgu you're absolutely right, it doesn't look like that elasticsearch version is working: ``` GET http://elasticsearch:9200/search_datadocs_v1/datadocs/_search [status:404 request:0.003s] [2021-07-07 Wed 05:49:20] - /opt/querybook/querybook/server/datasources/search.py - WARNING "Got ElasticSearch exception: NotFoundError(404, 'index_not_found_exception',...

is this the repo that threw that error? https://github.com/fountainpen/astro-paper if so, I'm pretty sure you just named something wrong in your post schema. [`pubDate` is a required parameter](https://docs.astro.build/en/guides/rss/#generating-items), but it's...

yes, your content doesn't match the schema for an rss feed item, so it blows up when you try to create a feed. did you look in the [astro source...

ohh, i'm sorry @fountainpen, I didn't realize that attribute was named wrong in this repo. i had assumed that was a custom schema you had put together for some reason...

it seems easy enough, but i can't replicate your issue. when you say you "tried to generate," do you mean you ran the `astro build` command?

I think I might be wrong. That parameter is actually changed to the proper `pubDate` before it's sent to the `@astro/rss` library: https://github.com/satnaing/astro-paper/blob/main/src/pages/rss.xml.ts#L18 Since I can't replicate the issue, and...

I'm not sure if this is the "right" way to do it, but here's what I did. 1. Add font files to `public/fonts` 2. Preload them in the head. https://github.com/jbrr/jbrr.dev/blob/v3.1/src/layouts/Layout.astro#L99-L135...

no problem! don't be too hard on them. i'm sure this is just something in their free time, and you never know what's going on in someone's life. plus, this...

@Because789 I'm a data engineer, so all of this is pretty outside of my comfort zone, so take this with a grain of salt. I'm also not familiar with fontsource....

I could've sworn I tried something like that, but who knows. If nothing else, it's good to have multiple solutions here that people can try if they run into a...