MultiDataTrigger with OR instead of AND
I am trying to set multiple `DataTriggers` on my `Button`. I did some research and found that `MultiDataTrigger` allows you to do this. I want the `Visibility` property of my `Button` to be set to fal...
- Modified
- 15 Jul at 14:28
Programmatically check the build configuration
Using the DEBUG configuration, I can switch behaviour on and off using this type of syntax: ``` #if DEBUG Console.WriteLine("Debug"); #else Console.WriteLine("Not Debug"); #endif ``` Howeve...
- Modified
- 16 Jul at 17:31
Swagger routing not consistent on Servicestack
I've just added Swagger to servicestack app. I access it via /api/swagger-ui, but it then tries to call its dependant js and css files from /api/lib and /api/css/ respectively. The app 404s on all th...
- Modified
- 15 Jul at 10:9
Only on azure: Could not create SSL/TLS secure channel
I run an application on the Azure application Standard: 1 Small plan. Framework is 4.6.1 This application is calling a SSL secured API. The SSL is published by StartCom Class 1 DV Server CA, my local...
c# convert DbContextTransaction to SqlTransaction
I am trying to use SqlBulkCopy under DbContext. My Sql Connection string has UserId and Password and that is why to pass connection object to SqlBulkCopy I am creating SqlConnection object having a Sq...
- Modified
- 15 Jul at 08:48
How to create a instance of UserCredential if I already have the value of Access Token?
So I have this code My question is how do I configure the if I'm already authenticated via OAuth? The current scenario is the code will display another login page redirecting to google. Since I'm a...
- Modified
- 17 Jul at 20:14
What does on_delete do on Django models?
I'm quite familiar with Django, but I recently noticed there exists an `on_delete=models.CASCADE` option with the models. I have searched for the documentation for the same, but I couldn't find anythi...
- Modified
- 26 May at 10:15
How to iterate over Pandas Series generated from groupby().size()
How do you iterate over a Pandas Series generated from a `.groupby('...').size()` command and get both the group name and count. As an example if I have: ``` foo -1 7 0 85 1 14 2 5 ``...
How to login to Google API with Service Account in C# - Invalid Credentials
I'm beating myself bloody trying to get a simple service acccount login to work in C#, to Google API and Google Analytics. My company is already getting data into Analytics, and I can query informatio...
- Modified
- 15 Jul at 18:37
Predefined type 'System.ValueTuple´2´ is not defined or imported
I've installed Visual Studio 15 Preview 3 and tried to use the new tuple feature ``` static void Main(string[] args) { var x = DoSomething(); Console.WriteLine(x.x); } static (int x, int y) ...
- Modified
- 8 Mar at 20:28
Change status bar text color when primaryDark is white
I am trying to reproduce the behaviour of Google Calendar application: [](https://i.stack.imgur.com/NPoDC.png) but I have not found a way to change the status text color. If i set the colorPrimaryDark...
- Modified
- 9 Aug at 18:45
Examples of Repository Pattern with consuming an external REST web service via HttpClient?
I've searched around quite a bit, but haven't found any good examples of consuming an external REST web service using a Repository Pattern in something like an ASP.NET MVC app, with loose coupling and...
- Modified
- 1 Oct at 18:30
How to fix git error: RPC failed; curl 56 GnuTLS
I use Ubuntu 16.04. When I want to git push origin master I get: ``` error: RPC failed; curl 56 GnuTLS recv error (-12): A TLS fatal alert has been received. fatal: The remote end hung up unexpectedly...
Embedded statement cannot be a declaration or labeled statement
I am trying to create a user using claim identity asp.net I get this error while creating claims identity user. ``` ApplicationUser user = new ApplicationUser { EmailConfirm...
- Modified
- 14 Jul at 12:36
How to execute servicestack request validation code only
I'm wondering is there a way to flag to servicestack that you only want to execute the fluent validation filter for a request, and not go on to run the real code? Ideally you could add a property to...
- Modified
- 14 Jul at 12:22
Multiple Tables With Same Structure Entity Framework
We have a database with multiple tables with Same structure Table 1 ================== Key ID ........ Table 2 ================== Key ID ....... The number of tables can be dynamic based ...
- Modified
- 3 May at 05:14
How to POST form data with Spring RestTemplate?
I want to convert the following (working) curl snippet to a RestTemplate call: ``` curl -i -X POST -d "email=first.last@example.com" https://app.example.com/hr/email ``` How do I pass the email par...
- Modified
- 28 Sep at 07:23
How to convert an object to JSON correctly in Angular 2 with TypeScript
I'm creating an Angular 2 simple CRUD application that allows me to CRUD products. I'm trying to implement the post method so I can create a product. My backend is an ASP.NET Web API. I'm having some ...
- Modified
- 14 Jul at 10:45
How to Reference .xproj into .csproj?
I have `.csproj` project and I want to reference other project that is `.xproj`, everything looks fine but when I try to build solution then I cannot because the .dll is missing. When i reference the ...
- Modified
- 18 Jul at 11:29
Installing a pip package from within a Jupyter Notebook not working
When I run `!pip install geocoder` in Jupyter Notebook I get the same output as running `pip install geocoder` in the terminal but the geocoder package is not available when I try to import it. I'm u...
- Modified
- 27 Mar at 16:7
Hangfire recurring tasks under minute
Is there a way to set hangfire recurring jobs every few seconds? I do not seek a solution where fire and forget task creates another fire and forget task, and if not, what are suggested alternatives? ...
Angular2: use [(ngModel)] with [ngModelOptions]="{standalone: true}" to link to a reference to model's property
Let's say I have a typescript object of type Mailtype like following: ``` export class Mailtype { constructor( public name?: string, public locale?: string, public email?: string, pu...
- Modified
- 23 Oct at 11:27
Python & Matplotlib: Make 3D plot interactive in Jupyter Notebook
I use Jupyter Notebook to make analysis of datasets. There are a lot of plots in the notebook, and some of them are 3d plots. [](https://i.stack.imgur.com/cPwoQ.png) I'm wondering if it is possible to...
- Modified
- 26 Apr at 16:44