Marc Went

Results 24 comments of Marc Went

Why is the CSS stored in JS? Would LESS be a nice preprocessor? Can run with a JS compiler locally, and compile to CSS for deployment.

How do you do this in fish?

Also the "advanced example" is a great example of where multiple array sizes (count) would be interesting to test & plot, and how that can differ (if at all).

Same here. Would be curious to know as well.

@DrR0X-glitch I've found this solution: https://tasmota.github.io/docs/Device-Recovery/#fast-power-cycle-device-recovery Basically pull the plug 7 times in/out of the outlet, it will reset itself. Worked for me like a charm. Adding this to the...

Any update on this? 🙏

I faced this bug myself today, and was thoroughly confused by it. Thought it was a bug in my code, rather than bruno. A solution would be: - Anything that's...

Workaround I created was a collection pre-request script: ``` const [url,params] = req.url.split('?'); if(!params) return; const encodedParams = params.split('&').map((kv) => { const [k,v] = kv.split('='); return `${k}=${encodeURIComponent(v)}`; }).join('&'); req.setUrl(`${url}?${encodedParams}`); ```

@alifemove I agree that the `+` in the url should be treated as a space, as is the spec (and Bruno) But there is also part of user expectation, that...

Also one more point I'd like to add based on the video above. Bruno decodes from the url into the param fields (`+` in url becomes ` ` in param...