Using "is" keyword with "null" keyword c# 7.0

Recently i find out, that the following code compiles and works as expected in VS2017. But i can't find any topic/documentation on this. So i'm curious is it legit to use this syntax: ``` class Progr...

8 Apr at 14:14

Use custom Manifest file and permission in Unity?

Im currently trying to program a little game for android with Unity3D. Because I want a visible status bar, I modified the AndroidManifest in the Project Folder (C:\Users\Public\Documents\Unity Projec...

21 Feb at 13:32

Authenticate server to server communication with API key

I have a couple of self-hosted windows services running with ServiceStack. These services are used by a bunch of WPF and WinForms client applications. I have written my own `CredentialsAuthProvider`....

8 Apr at 08:59

Host ServiceStack in HyperFastCGI, error fcgi-transport.c:444: parse_params(): Can't find app! HOST

I need to install the web service on Linux, but ran into such a problem, can you tell me how can it be solved? Thanks! OC: CentOS7 Mono JIT compiler version 4.8.0 (Stable 4.8.0.520/8f6d0f6 Wed Mar ...

8 Apr at 06:48

String Interpolation With Variable Content in C#

Can one store the template of a string in a variable and use interpolation on it? ``` var name = "Joe"; var template = "Hi {name}"; ``` I then want to do something like: ``` var result = $template...

23 May at 13:36

IOPub data rate exceeded in Jupyter notebook (when viewing image)

I want to view an image in Jupyter notebook. It's a 9.9MB .png file. ``` from IPython.display import Image Image(filename='path_to_image/image.png') ``` I get the below error: ``` IOPub data rate ...

1 Nov at 01:44

Python matplotlib - setting x-axis scale

I have this graph displaying the following: ``` plt.plot(valueX, scoreList) plt.xlabel("Score number") # Text for X-Axis plt.ylabel("Score") # Text for Y-Axis plt.title("Scores for the topic "+progre...

7 Apr at 20:23

HttpContext.Current.Request.Form.AllKeys in ASP.NET CORE version

``` foreach (string key in HttpContext.Current.Request.Form.AllKeys) { string value = HttpContext.Current.Request.Form[key]; } ``` What is the .net core version of the above code? Seems like .net...

KeyValuePair naming by ValueTuple in C# 7

Can the new feature in C# 7.0 (in VS 2017) to give tuple fields names be translated to KeyValuePairs? Lets assume I have this: ``` class Entry { public string SomeProperty { get; set; } } var all...

8 Apr at 20:12

Changing Delegate signature in library to omit an argument does not break applications using it

Consider the following code in a class library: ``` public class Service { public delegate string Formatter(string s1, string s2); public void Print(Formatter f) { Console.WriteL...

13 Apr at 21:23

How to use paths in tsconfig.json?

I was reading about [path-mapping](https://www.typescriptlang.org/docs/handbook/module-resolution.html#path-mapping) in `tsconfig.json` and I wanted to use it to avoid using the following ugly paths: ...

31 Oct at 06:1

MVC .Net Core Model Validation - The value '' is invalid. Error

I am trying to use Model Validation in MVC .Net Core and can't manage to replace this default error message 'The value '' is invalid'. In theory, we can replace our own custom error message by using ...

Get current Activity - Xamarin Android

I am developing an portable App for Android and iOS. My current function is taking a Screenshot and use that image in the code. Therefor I have an Interface in the portable library. ``` public interf...

Entity Framework core - Contains is case sensitive or case insensitive?

"Contains" in Entity Framework core should equivalent to the SQL %like% operator. Therefore "Contains" should be case insensitive however it is case sensitive! (at least in postgres????) The followin...

Entity Framework Core - setting the decimal precision and scale to all decimal properties

I want to set the precision of all the decimal properties to (18,6). In EF6 this was quite easy: ``` modelBuilder.Properties<decimal>().Configure(x => x.HasPrecision(18, 6)); ``` but I can't seem t...

Development server of create-react-app does not auto refresh

I am following a [tutorial](https://egghead.io/courses/react-fundamentals) on React using create-react-app. The application is created by [create-react-app](https://github.com/facebookincubator/creat...

7 Apr at 09:47

How to write thread-safe C# code for Unity3D?

I'd like to understand how to write thread safe code. For example I have this code in my game: ``` bool _done = false; Thread _thread; // main game update loop Update() { // if computation done...

7 Apr at 11:41

Setting the version number for .NET Core projects - CSPROJ - not JSON projects

This question is very similar to [Setting the version number for .NET Core projects](https://stackoverflow.com/questions/36057041/setting-the-version-number-for-net-core-projects), but not the same. U...

Download to excel - Service Stack

I have a servicestack doing download to excel as below ``` $.ajax({ url: url, type: 'Get', async: true, data: data, success: function (data) { var blob = new Blob([da...

23 May at 05:12

Error message "Linter pylint is not installed"

I want to run Python code in Microsoft Visual Studio Code but it gives an error: > Linter pylint is not installed I installed: - - - How can I install Pylint?

22 Jan at 09:49

Converting between C# List and F# List

Remark: This is a self-documentation, but if you have any other suggestions, or if I made any mistakes/miss out something obvious, I would really appreciate your help. Sources: [convert .NET generi...

23 May at 12:10

Process finished with exit code 137 in PyCharm

When I stop the script manually in PyCharm, process finished with exit code 137. But I didn't stop the script. Still got the exit code 137. What's the problem? Python version is 3.6, process finished...

7 Apr at 01:17

Trying to use fetch and pass in mode: no-cors

I can hit this endpoint, `http://catfacts-api.appspot.com/api/facts?number=99` via Postman and it returns `JSON` Additionally I am using create-react-app and would like to avoid setting up any server...

Can I do an UPDATE on a JOIN query with OrmLite on ServiceStack?

I want to do an update for a specific field on a table based on the results from a query that includes a join. Using OrmLite with ServiceStack. My Classes are as follows: ``` public class Document ...

6 Apr at 16:33

Convert png to jpeg using Pillow

I am trying to convert png to jpeg using pillow. I've tried several scrips without success. These 2 seemed to work on small png images like this one. [](https://i.stack.imgur.com/m2GGn.jpg) First co...