Nicky Meuleman

Results 17 comments of Nicky Meuleman

Suggestion: make that googleapis url a (public?) env-variable so images will still work should that url ever change (only a single place to change URL instead of in every component).

Maybe it's possible to change the URL's querystring based on the checkboxes ticked (eg. franciscan.edu/search?departments=true&faculty=true) This https://github.com/zeit/next.js#shallow-routing has more information about replacing the URL silently.

The query parameters in the URL are available on the object that gets passed into `getInitialProps` https://github.com/zeit/next.js/#fetching-data-and-component-lifecycle A bit down, under the section that lists what's in the context object....

Hi, thanks! Really appreciate it. Prisma migrate only works during development. As you said, it takes a bunch of quite intricate code to get it working in production. (and it...

I just installed wsl with `wsl --install`, then installed Rust with Rustup, then tried to install Starship. So I have as much of a default WSL system as you can...

The `actions/horn-lights` isn't listed as a default endpoint, so calling `await vehicle.get_full_endpoint("actions/horn-lights")` fails. But calling the full endpoint manually with `http_post` works. works: ```py response = await vehicle.http_post( "/commerce/v1/accounts/{account_id}/kamereon/kca/car-adapter/v1/cars/{vin}/actions/horn-lights", {...

I had the same question. Tried the standard setup, and when that didn't work I started looking online. My setup that does not work: ```lua lspconfig["tailwindcss"].setup({ capabilities = capabilities, settings...