Jacob Gillespie

Results 65 comments of Jacob Gillespie

No problem! There's not currently a way to install just a single icon, so yes you would want to install `@styled-icons/boxicons-logos` even if you're only using one icon from that...

@AhmedTohamy01 thanks for sharing the repository, I was able to take a look and capture some timings. I first checked to make sure tree shaking was working - if you...

Perfect, thanks for the kind words, and I'm glad that was helpful and that you're finding the library useful! 🎉

Hey! So the Depot CLI will actually search for a `depot.json` file in any parent directory when trying to resolve the project ID - are your git projects in a...

Nice, yeah the difference is that you need some way to get context from the point at which you call the app into the RPC call, basically the request might...

I think I might have fixed CI by installing `clientcompat`, though for some reason GitHub Actions isn't firing an event for the new commit. 🙂

> Then I think we could leverage middleware by splatting request with `env` I think that could work, and actually I think that would work today, without needing to conform...

Hey @JonathinK, I haven't had the time to maintain Styled Icons in quite a while, and you may even want to check out alternatives especially if you use TypeScript on...

I may be missing something, but I believe `http2` supports UDS. I copied this example from the docs and changed it to bind to a file instead of a port:...

Ah, fun. So it looks like `createConnection` exists in `http2.ClientSessionOptions`, this appears to work: ```typescript http2.connect('http://example', { createConnection: (authority, option) => { return net.connect('./example.sock'); }, }) ``` It looks like...