Results 11 issues of Artur K

I suggest to change the project structure, I guess it should be something like in python client https://github.com/Microsoft/azure-devops-python-api/tree/dev/vsts/vsts package for each type of azure devops object, with its own models...

``` >>> activate('en') >>> Branch.objects.filter(pk=85017).values('name') [{'name': 'Agriculture'}] >>> Branch.objects.filter(pk=85017)[0].name 'Agriculture' >>> >>> activate('ru') >>> Branch.objects.filter(pk=85017).values('name') [{'name': 'Agriculture'}] >>> Branch.objects.filter(pk=85017)[0].name '\u0421\u0435\u043b\u044c\u0441\u043a\u043e\u0435 \u0445\u043e\u0437\u044f\u0439\u0441\u0442\u0432\u043e' ```

On my way to close this https://github.com/nodejs/undici/issues/1173 Didn't know how to pass the request context to the Readable object, @mcollina obviously suggested to pass it on the constructor. :) Using...

I have 3 models with same permission name, lets say "edit" when im trying to get objects for user, it raise an exception "_get() returned more than one ContentType --...

bug

Hey, IMHO it's better to use `__dirname` instead of `process.cwd()` because all the paths in webpack config are relative to config file. For example if have following structure ``` package.json...

I'm trying to mock Redis lua scripting behavior, and one of the challenges there is that Redis is "binary safe" meaning u can operate with binary data (e.g images), which...

if we pass AbortSignal with timeout, to limit the request time, in case of a timeout, the controller will be aborted in this case, retry handler assumes there is no...

enhancement

This PR addresses two issues 1. binary data can not properly be returned from lua, as it is "string" type in lua, which is assumed by wasmoon to be a...

**Describe the bug** Game freeze when AI tried "fishy" action **Game logs** [logs.txt.zip](https://github.com/user-attachments/files/23971244/logs.txt.zip) **To Reproduce** Not sure what exact step **Screenshots** **Version** - OS: macOS - Version: VCMI 1.7.0.a09a6bec64f10cb1b4a8b09880da3dd011745ed2

bug