Boris Verkhovskiy

Results 265 comments of Boris Verkhovskiy

In a similar vein, ``` curl "http://localhost:28139/get?str=你好" ``` sends ```none GET /get?str=你好 HTTP/1.1 Host: localhost:28139 User-Agent: curl/7.83.1 Accept: */* ``` but the corresponding Python program ```py import requests response =...

Normally there's only one cookie header and multiple cookies are separated by `;` like this: `-H 'Cookie: authCookie=123;authCookie2=12345;authCookie3=123456'`. But curl can send the same header multiple times. These days, if...

@sPaCeMoNk3yIam we just released 3.20.0 which fixed some issues with installing. Can you please check that this issue is still happening? If this is still a problem, please post the...

After running these commands: ``` npm install -g @vue/cli cd /tmp vue create demo cd demo npm install --save [email protected] npm install --save assert npm install --save util npm install...

This is not how curl behaves though. Testing with `nc -kl 8888` and running this command `curl localhost:8888 --header "Accept: application/json" --header "Accept: */*"` we get this output ``` GET...

You're right, I was in the middle of writing a similar comment to re-open the issue. We have [the same problem](https://github.com/curlconverter/curlconverter/issues/161#issuecomment-1072970913) with the `Cookie` header, which can be repeated or...

I guess in the browser we'll have to add a fetch to our fetch ```js const data = (await fetch('./RE659c5bc74e712750fa7a66e1caad4fde.wav')).body ```

To support [Windows cmd](https://ss64.com/nt/syntax.html), someone needs to [write a tree-sitter grammar](https://tree-sitter.github.io/tree-sitter/creating-parsers) for it (also see [*How to write a tree-sitter grammar in an afternoon*](https://siraben.dev/2022/03/01/tree-sitter.html)). Anyone interested in doing that could...

Whatever the issue was, @caleb-lindgren's request seems to convert correctly now. ~~**Edit**: maybe the issue was that the name of the header is `accept`, when usually headers are supposed to...