Questions

How to control a Bluetooth LE connection on Windows 10?

I need to develop an application which communicates with a device via bluetooth low energy. Once the application is connected to the device via bluetooth it receives and sends data by using a gatt ser...

7 Jul at 21:9

Lowered operations in roslyn

When operations were introduced in Roslyn one of the goals was to provide lowered operations (I think it was in design review meeting video) which as far as I understand should provide explicit operat...

13 Sep at 11:11

How can I parse JSON string from HttpClient?

I am getting a JSON result by calling an external API. ``` HttpClient client = new HttpClient(); client.BaseAddress = new Uri(url); client.DefaultRequestHeaders.Accept.Add(new MediaTyp...

19 Jul at 16:30

How to self register a service with Consul

I'm trying to [self][1] register my ASP.NET Core application to Consul registry on startup and deregister it on shutdown. From [here][2] I can gather that calling the http api [`put /v1/agent/service/...

Where to store Bearer Token in MVC from Web API

I have an ASP.NET Web API that uses the OAuth Password Flow to provide Bearer Tokens to gain access to its resources. I'm now in the process of making an MVC app that will need to use this API. Th...

NSCameraUsageDescription in iOS 10.0 runtime crash?

Using `iOS 10.0` last beta. I had tried to use Camera to scan barcode in my app, and it crashed with this runtime error. > This app has crashed because it attempted to access privacy-sensitive data...

How to store Emoji Character in MySQL Database

I have a MySQL database configured with the default collation `utf8mb4_general_ci`. When I try to insert a row containing an emoji character in the text using the following query ``` insert into table...

14 Jul at 06:15

Map over an object and change one properties value using native JS

I want to be able to return a result set of data and just change the formatting of the date field to something more readable leaving all the other data intact. I would prefer to do this without a thi...

13 Sep at 05:28

how to run python files in windows command prompt?

I want to run a python file in my command prompt but it does nothing. These are the screen shots of my program i am testing with and the output the command prompt gives me. [](https://i.stack.imgur.co...

Unity Add Default Namespace to Script Template?

I just found Unity's script template for C# scripts. To get the script name you write `#SCRIPTNAME#` so it looks like this: ``` using UnityEngine; using System.Collections; public class #SCRIPTNAME# ...

5 Sep at 13:38

How to use C# 7 with Visual Studio 2015?

Visual Studio 2017 (15.x) supports C# 7, but what about Visual Studio (14.x)? How can I use C# 7 with it?

Unable to edit db entries using EFCore, EntityState.Modified: "Database operation expected to affect 1 row(s) but actually affected 0 row(s)."

I'm using Identity Core 1.0 with ASP.NET MVC Core 1.0 and Entity Framework Core 1.0 to create a simple user registration system with [this article](http://www.dotnetfunda.com/articles/show/2898/workin...

Remove a modified file from pull request

I have 3 modified files (no new files) in a pull request at the moment. I would like to remove one of those files from the pull request, so that the pull request only contains changes to two files a...

4 Jun at 13:59

ASP.NET CORE, Web API: No route matches the supplied values

Original Question: --- i have some problems with the routing in asp.net core (web api). I have this Controller (simplified): ``` [ApiVersion("1.0")] [Route("api/v{version:apiVersion}/[Control...

Using List/Tuple/etc. from typing vs directly referring type as list/tuple/etc

What's the difference of using `List`, `Tuple`, etc. from `typing` module: ``` from typing import Tuple def f(points: Tuple): return map(do_stuff, points) ``` As opposed to referring to Python...

6 Oct at 13:55

kubectl logs - continuously

``` kubectl logs <pod-id> ``` gets latest logs from my deployment - I am working on a bug and interested to know the logs at runtime - How can I get continuous stream of logs ? edit: corrected ques...

The term 'scaffold-dbcontext' is not recognized as the name of a cmdlet, function, script file, or operable program

When trying to scaffold with asp.net core this command ``` scaffold-dbcontext "Data Source=(local);Initial Catalog=MyDb;Integrated Security=True;" Microsoft.EntityFrameworkCore.sqlserver -outputdir Mo...

23 Dec at 10:59

ASP.NET Core with EF Core - DTO Collection mapping

I am trying to use (POST/PUT) a DTO object with a collection of child objects from JavaScript to an ASP.NET Core (Web API) with an EF Core context as my data source. The main DTO class is something ...

Why does interpolating a const string result in a compiler error?

Why does string interpolation in c# does not work with const strings? For example: ``` private const string WEB_API_ROOT = "/private/WebApi/"; private const string WEB_API_PROJECT = $"{WEB_API_ROOT}p...

25 Nov at 17:40

Async library best practice: ConfigureAwait(false) vs. setting the synchronization context

It's well-known that in a general-purpose library, `ConfigureAwait(false)` should be used on every await call to avoid continuing on the current SynchronizationContext. As an alternative to peppering...

12 Sep at 09:48

405 - HTTP verb used to access this page is not allowed. [IIS 8.5] [Windows Server 2012 R2]

I have got a new iis server and from a while i am finding solution for error : > 405 - HTTP verb used to access this page is not allowed. The page you are looking for cannot be displayed because a...

12 Sep at 08:1

Determine List.IndexOf ignoring case

Is there a way to get the index of a item within a List with case insensitive search? ``` List<string> sl = new List<string>() { "a","b","c"}; int result = sl.IndexOf("B"); // should be 1 instead of ...

12 Sep at 07:50

Create a new user in Azure Active Directory (B2C) with Graph API, using http post request

I have previously been adding users programmatically using Active Directory Authentication Library (ADAL), but now I need to define "signInNames" (= users email), and that doesn't seem to be possible ...

7 May at 03:58

Node.js - SyntaxError: Unexpected token import

I don't understand what is wrong. Node v5.6.0 NPM v3.10.6 The code: ``` function (exports, require, module, __filename, __dirname) { import express from 'express' }; ``` The error: ``` Synta...

15 Nov at 16:9

NewtonSoft json converter " unterminated String, expected delimiter : "; "

I am trying to parse a json response that I get when calling a rest API. The problem I am facing is that the deserializing doesn't work every time, even though I am making the same request. I don't kn...

11 Sep at 22:22