Vadim Grigoruk

Results 248 comments of Vadim Grigoruk

Oops, forgot to paste url https://curl.haxx.se/libcurl/c/multi-uv.html

I think it will be better to hold up this PR until .80 will be released with the new UI, it will be easier to adopt it later.

We have https://github.com/nesbox/TIC-80/tree/sweetie16 branch where I adapt UI to the new `Sweetie16` palette, but there is no much progress because I'm stuck with implementing commands for the music tracker :)

I think we can add this generator to the website, somewhere under game player, near the **download cart** link.

Unfortunately, we don't have delete function, but you can upload an empty cart using `update` button.

I'm not sure if we'll be saving the bookmarks directly to the cart, but we can store them in some kind of session file, somewhere near the cart, I think.

One user made an example of how to use text input in TIC https://tic80.com/play?cart=449. Looks a bit difficult, maybe we could add an `input()` API function in the future to...

JS code from the cart above: ``` js // title: Input lib // author: Tau // script: js /* WARNING! This variables (keys,skeys,inf,counter and output) are required */ const keys...

Another one example https://github.com/nesbox/TIC-80/wiki/code-examples-and-snippets#text-only-game

We have started to use `clock()` https://en.cppreference.com/w/c/chrono/clock std function here to measure time in 1.0, maybe you have a piece of code to profile it?