Nicolai Bjerre Pedersen

Results 41 issues of Nicolai Bjerre Pedersen

For some reason I get this type error in VS Code although `selectolax/parser.pyi` seems to be read just fine. Anyone have an idea why I get that error? ![Screenshot 2022-03-22...

Hi @Buuntu I really like your boilerplate here - there's a lot of good practices to study I think. I stumbled upon one thing that puzzles me a bit though....

Is it possible to use the same binder session for multiple snippets? For some exercises I want to continue on previous solutions.

customization

Hi @ines It seems that the `juniper` settings in `meta.json` is only valid for GitHub repositories? Looking in `src/components/juniper.js` I see that you have const binderUrl = `${url}/build/gh/${repo}/${branch}` But when...

customization

Hi @ines You make so awesome tools all the time. I love it! 😍 I have a paying client that wants me to do a one-day course in Python for...

customization

I love what you are doing here. It looks great. I also dig that you have normalized the schema for `firebase`, `firebase-admin` and `firebase-functions`. However it would be great if...

I'm not sure whether this is intended behavior or not. In the following example I'd expect `make_resource` function to receive a `Resource`. ```python from typing import Callable from pydantic.main import...

feat / config

`registry.resolve` raises the following error TypeError: 'Resource' object does not support item assignment for the given example ```python from pydantic.main import BaseModel import thinc from thinc.api import Config, registry class...

feat / config

I have a upload script that goes like this @hug.post('/upload', versions=1) def upload(body): content = list(body.values()).pop().decode('utf8') It works fine if do curl -F =@ api/v1/upload But my unittest fails since...

First of all, great tool here! Absolutely love the simple approach (on the outside). Next I'll admit that authentication and authorization makes my head spin. I've decided to control which...