Difference between using gradlew and gradle

What is the difference between using `gradlew` and `gradle` or are they the same?

31 Jan at 04:9

Is there a way to combine Docker images into 1 container?

I have a few Dockerfiles right now. One is for Cassandra 3.5, and it is `FROM cassandra:3.5` I also have a Dockerfile for Kafka, but t is quite a bit more complex. It is `FROM java:openjdk-8-fre` an...

21 Sep at 21:4

How to launch MS Edge from c# winforms?

The executable MicrosoftEdge.exe cannot be launched directly like other EXEs in windows. I confirmed that from my own experience, and by reading [this](http://answers.microsoft.com/en-us/insider/forum...

20 Mar at 10:18

Should I avoid using Dependency Injection and IoC?

In my mid-size project I used static classes for repositories, services etc. and it actually worked very well, even if the most of programmers will expect the opposite. My codebase was very compact, c...

The pipe 'async' could not be found

I am trying to build a simple blog with Angular 2 and Firebase and I am having issues using async pipe in a component. I get the error in the console. > zone.js:344Unhandled Promise rejection: Templat...

add Shadow on UIView using swift 3

prior swift 3 i was adding shadow in my UIView like this : ``` //toolbar is an UIToolbar (UIView) toolbar.layer.masksToBounds = false toolbar.layer.shadowOffset = CGSize(width: -1, height: 1) toolbar...

26 Dec at 22:1

How does Find method of Entity Framework work?

I am learning Entity Framework and faced some moment with method I can't understand. ``` public class Destination { public int DestinationId { get; set; } public string Name { get; set; } ...

21 Sep at 18:27

OData Exception The limit of '0' for Top query has been exceeded

I am using OData Web API for Version 4, when I try to query OData web Api using `$top` parameter, it return me following exception message. > The query specified in the URI is not valid. The limit of...

Understanding the use of Task.Run + Wait() + async + await used in one line

I'm a C# newbie, so I'm struggling to understand some concepts, and I run into a piece of code that I'm not quite understanding: ``` static void Main(string[] args) { Task.Run(async () => { await So...

21 Sep at 17:4

Multiple routes assigned to one method, how to determine which route was called?

I am working on a small ASP.NET MVC project at the moment. The project was released a few month ago. But changes should be implemented for usability and SEO reasons now. I decided to use attribute rou...

Jenkins fails when running "service start jenkins"

I installed jenkins on Centos 7 using the following: ``` sudo wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins.io/redhat-stable/jenkins.repo sudo rpm --import http://pkg.jenkins.io/redhat-stab...

22 Feb at 06:58

implicit operator with generic not working for interface

I basically have the following class (example found on [C# creating an implicit conversion for generic class?](https://stackoverflow.com/questions/6946412/c-sharp-creating-an-implicit-conversion-for-g...

23 May at 11:46

Programmatically open On-Screen Keyboard in UWP

Is it possible in UWP to force it to open the On Screen Keyboard (osk.exe)? For example, in C# it is possible using Doing the above in UWP results in compile error saying there is no Process namesp...

22 Jan at 08:25

Failed - network error when downloading excel file made by EPPlus.dll

I try to download an excel file made by `EPPlus.dll` from an asp.net c# web form application. but i get Failed - network error. It should be noted that mentioned error just occurs in chrome and the jo...

2 May at 19:8

swift 3.0 Data to String?

``` func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {} ``` I want `deviceToken` to string but: ``` let str = String.init(data: de...

19 Oct at 07:38

In C# specify access modifier for a method is equivalent to get and set

I'm learning for the Microsoft Exam 70-483. In this exercise the correct answers are A and F. In my opinion E is correct too. I think E is fully equivalent to A + F. Is it true? You are creating a c...

21 Sep at 12:28

System.TypeLoadException: Method 'get_xxx' does not have an implementation

There are a lot of questions floating around with this problem and i've worked through them ll with no joy. I am receiving this error: > Method 'get_UserImageCDNUrl' in type 'App.Web.WebConfig' from...

21 Sep at 11:59

Class constructor type in typescript?

How can I declare a `class` type, so that I ensure the object is a constructor of a general class? In the following example, I want to know which type should I give to `AnimalClass` so that it could...

21 Sep at 10:44

Add Multiple Contract Resolver in Newtonsoft.Json

Blueprint for data structure: ``` public class Movie { public string Name { get; set; } } ``` Using Newtonsoft.Json, I have the following configuration for Json serialization. ``` var settings...

30 Nov at 02:9

Troubleshooting Identity Server 4

I am using Identity Server 4 for authentication. I have MVC client. Few days ago i was able to authenticate successfully. But recently i made some changes in Identity Server project which broke someth...

Visual Studio shows warning in vctmp file

I have a C# project opened in visual studio. We are using TFS to manage our projects. In one source code file of the project I have configured a warning in the following way: ``` #warning expand for ...

How to avoid "Sorry, my bot code is having an issue" in Microsoft Bot Framework

I have a bot that runs on Azure + Bot Framework + LUIS (via LuisDialog). If the user happens to send two messages in a quick succession (before the bot has a chance to answer), they see this error m...

How to test asp.net core built-in Ilogger

I want to verify some logs logged. I am using the asp.net core built-in ILogger, and inject it with the asp.net core built-in DI: ``` private readonly ILogger<InvoiceApi> _logger; public InvoiceA...

Not supported by Swagger 2.0: Multiple operations with path

I have integrated swagger in WebApi 2 application. It works fine when application has single controller. When I added second controller in the application. I got following error : > An error has oc...

How can I get my dapper result to be a List?

Why I can't add a `.ToList()` on this? The only thing Intellisense is allowing is `.ToString()`. ``` //.. string sqlQuery = "SELECT sum(SellingPrice) as SellingPrice, sum(MarkupPercent) as MarkupPerc...

20 Sep at 18:58