programmin1

Results 55 comments of programmin1

Looks good, do you need more tests created? Interesting project!

Ok check out https://github.com/marcusbuffett/command-line-chess/pull/50 ?

Did you try the examples? I wrote up a howto at https://howtotrainyourrobot.com/how-to-build-your-own-chatgpt-style-chat-bot/

Since it only shows once and doesn't continue that could be problematic. The Linux version will be the one that runs on Linux phones - Pinephone, Librem phone etc.

Unfortunately Organicmaps does not run on Linux phone as of yet, but the first screen that showed was way off and this should fix that issue.

Only administrator of this repo can add the tag I believe - "Pull requests can be made in any [GitHub](https://github.com/topics/hacktoberfest) or [GitLab](https://go.gitlab.com/ubCLKL) hosted project that’s participating in Hacktoberfest (look for...

I see similar behavior for a mostly-dark image. Can this be behavior be turned off in an option/parameter?

Looks like the solution for underscore-using scripts is: slimit.scope.ID_CHARS='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ$' without the _ in that string. It won't rename anything to underscore. Really it could possibly be overwriting any global variable,...

Why does it need to be changed in the source code? In my tests setting import slimit slimit.scope.ID_CHARS='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ$' before using slimit module fixes the problem. Unless there is a problem...

What do you mean? Slimit should mangle only non-globally-accessible function names and variables. So functions that you don't want accessed will be mangled, you can just wrap in IIFE: http://benalman.com/news/2010/11/immediately-invoked-function-expression/