JannemanDev

Results 10 comments of JannemanDev

I did my own install of docker-compose following https://docs.docker.com/compose/install/ It installed the lastest... and I didn't get the version mismatch error anymore

To be more precise, syntax is a bit different: https://www.techonthenet.com/oracle/functions/case.php https://www.techonthenet.com/sql_server/functions/case.php https://www.techonthenet.com/mysql/functions/case.php For example: ``` SELECT plantname, CASE price WHEN 1 THEN 'Cheap' WHEN 2 THEN 'Expensive' ELSE 'Unknown' END...

We use this stats command from a shell script and want to return to our menu. Now crtl-c quits our whole script and users cant return to our menu. A...

Well after a day struggling I managed to get it working and like always it was pretty simple :) ```csharp using (var client = new WebClient()) { client.Headers[HttpRequestHeader.Authorization] = $"Bearer...

Well it does work now :) I am also curious about how many days OMDBApi is lagging IMDB. ![image](https://user-images.githubusercontent.com/13236774/106159813-78ca4a80-6185-11eb-9a25-0fb6eca52ece.png) ![image](https://user-images.githubusercontent.com/13236774/106159846-82ec4900-6185-11eb-85a4-e01d6974e54f.png)

Your local time (see your clock bottom right in Windows) has a too much of a difference with the milestone time. You can convert these unix timestamps to human readable...

Thanks that one worked for me! In my case I wanted to connect to a websocket server, which supported v1, v1.1 and v1.2, on Ubuntu 20 but failed with `no...

Just documenting it here I got an error `/lib/x86_64-linux-gnu/libstdc++.so.6: version 'GLIBCXX_3.4.30' not found` running a particular Linux program. I had to use at least Ubuntu v22.04 to get it running....

I use VS Code with shellcheck plugin v0.37.1 and I can confirm @mevalba tip is working. Thanks. But be sure to close and reopen the .sh files to have shellcheck...