w7rus

Results 4 issues of w7rus

I've tried to compile this example taken from [here](https://leafo.net/guides/moonscript-classes.html#class-tips-and-tricks/adding-a-new-method-to-a-class-after-declaration) ``` class Player new: (@name) => for dir in *{"north", "west", "east", "south"} @__base["go_#{dir}"]: => print "#{@name} is going #{dir}" Player("Lee")\go_east!...

For key generation i use following: ```SSH_SK_PROVIDER=libwindowsfidobridge.so ssh-keygen -t ecdsa-sk -Oapplication=ssh:windows-fido-bridge-verify-required``` Then it asks me to confirm the key, with success. ![image](https://user-images.githubusercontent.com/11144322/151018027-c92b266a-262a-4bd0-8bfa-ae3becf9f2b7.png) ![image](https://user-images.githubusercontent.com/11144322/151018048-2dc019cc-ddb1-4f3f-9e74-381fcb3afab8.png) ![image](https://user-images.githubusercontent.com/11144322/151018164-dc4c2fb6-a68f-421f-9b78-b5c297b99f24.png) Then i add public key to...

Npgsql.EntityFrameworkCore.PostgreSQL 8.0.0 The documentation states that: > Starting with 7.0, the provider can also create computed tsvector columns over JSON columns. Simply use HasGeneratedTsVectorColumn() as shown above, and when applied...

I'm having an ASP.NET Controller incoming form data and request size is limited with following attributes: ```csharp //Assume Consts.AvatarMaxFileSize is 10MB [RequestSizeLimit(Consts.AvatarMaxFileSize + 4096)] [RequestFormLimits(MultipartBodyLengthLimit = Consts.AvatarMaxFileSize)] ... ``` Then...