Georgios Diamantopoulos
Georgios Diamantopoulos
I'm assuming you're catching and rethrowing exceptions because they do not report their real stack trace but always refer back to ParserRunner.Execute
### Question 💬 We designed a login page with Twitter OAuth login and we're having an issue with a minority of users that come back to the redirect and the...
Hey @FlorianRappl I was profiling some of my code yesterday and found that `Url` is pretty slow - in 25,000 requests that take around 45sec, 8s was spent in `Url`....
This simple script: ``` #r "nuget: Newtonsoft.Json, 13.0.1" Console.WriteLine(typeof(Newtonsoft.Json.JsonConvert).Assembly); Console.WriteLine(typeof(Newtonsoft.Json.JsonConvert).Assembly.Location); ``` Prints: ``` Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed C:\Users\georgiosd\.dotnet\tools\.store\dotnet-script\1.3.1\dotnet-script\1.3.1\tools\net6.0\any\Newtonsoft.Json.dll ``` 😱
### Package Sentry.AspNetCore ### .NET Flavor .NET Core ### .NET Version 6.0.5 ### OS Linux ### SDK Version 3.16.0 ### Self-Hosted Sentry Version _No response_ ### Steps to Reproduce No...
Looks like there is no support for authentication - how would you go about it? I'm only concerned about the universal rendering of views.
It produced several commits because I rebased from upstream after committing the change - oh well?
If defined a `TimeSpan?` property in my options and passed it as "00:30" from the commandline but it failed with "bad format". Is this not supported?
Example query: ``` mutation { insert_table( objects: [{ key: "test", product_id: 1, value: "test", }], on_conflict: { constraint: unique_index_name_as_appear_in_mutation_root, update_columns: value } ) { affected_rows } } ``` Error: ```...