Quantcast
Channel: User scio me nescire - Stack Overflow
Browsing latest articles
Browse All 38 View Live
↧

Comment by scio me nescire on UI Router $state.go is not redirecting?

saved me a lot of trouble

View Article


Comment by scio me nescire on Nuget 3 - Octopack - Wrong Framework Target error

ugh... so much time trying to figure this out

View Article


Comment by scio me nescire on Parallel website requests stuck in pending...

I have the same issue. Getting a lot of heat for it. Good to know its not just IIS/.net that is having the issue.

View Article

Comment by scio me nescire on Fault tolerant redundancy

rogeralsing.com/category/akka-net

View Article

Comment by scio me nescire on Azure AD B2C - "emails" claim in custom policy

This post doesn't work, this one does.

View Article


Comment by scio me nescire on Why are claims being flagged as not supported...

This post doesn't work, this one does.

View Article

Comment by scio me nescire on Terraform remote state chicken and egg

so basically run a script and save it to git? can you elaborate on what you mean by other TF code? Are you aware of any docs/posts from TF about how basically bootstrapping TF on the cloud requires at...

View Article

Comment by scio me nescire on Terraform Azure Service Principal Client Secret...

Hi, while this tells me why it doesn't show up, it doesn't solve the long password TTL. I'm trying to use the SP for terraform, so I'd like to make the TTL shorter. Using the app registration client...

View Article


Comment by scio me nescire on How to rotate Github API secrets automatically?

@GuiFalourd I don't, but I'll try it and see. Seems dangerous if it works, but that's something to explore if it works in the first place. Thanks for the suggestion!

View Article


Comment by scio me nescire on How to add and push to an Azure Devops remote...

@AnirudhaGupta I'm not sure I understand. You're saying I should generate git credentials in ADO, and then clone it where? How would cloning the the repo help me add a remote to codespaces?

View Article

Using CamelHumps without resharper or coderush

I've read through the previous threads on ctrl+arrow or ctrl+shift+arrow in visual studio using resharper or coderush.There was one answer where a macro achieved the same result.However, VS2013 no...

View Article

Answer by scio me nescire for Angular unit test with TypeScript: TS2304:...

before:beforeEach(function () { module('app');}after:beforeEach(function () { angular.mock.module('app');}

View Article

timeout index not present on ravendb

tl;dr: my web api service is running slow, added logginglogging is giving me errors about not being able to find timeoutsdidn't see the ravendb database for the webapi project on the server, but dev...

View Article


How do I set a title for the exported pdf?

I would like to set some sort of title for the exported data on the PDFs.I have looked through http://ui-grid.info/docs/#/api/ui.grid.exporter but there does not seem to be a setting for it.Right now...

View Article

Cannot run Nuget Package Restore from private Team City Nuget Server

Current discussion thread: http://devnet.jetbrains.com/message/5519081#5519081Bug Report: http://youtrack.jetbrains.com/issue/TW-37148Error: Cannot prompt for input in non-interactive mode.One thing to...

View Article


Shared hosting account connection reset

The server will serve up static files fine, but anything with aspx will return the below message in Firefox:The connection to the server was reset while the page was loadingFirebug NET tab shows...

View Article

Answer by scio me nescire for Why can't I connect to a SQL Server 2012...

THIS ANSWER ASSUMES DELETING THE INSTANCE IS OK.ie: all your data will be gone and that is okay.I was having the same problem, after upgrading my SSMS. sqllocaldb i.\MyCustomInstancesqllocaldb dLocalDb...

View Article


Publisher with no subscribers

Hypothetical scenario, publisher publishes message, no one's available to process it. What I've been able to figure out is that the message will black hole.There is a SO post for a publisher with ONLY...

View Article

ado connection pooling connected vs disconnected

Before jumping the gun and marking duplicate, I've searched an have not had luck with a clear answer.Background:A co-worker and I had a discussion on datareader vs dataset with me on the datareader...

View Article

How do I use relative paths with the webdriver.Navigate().GotoUrl()?

driver.Navigate().GoToUrl("/") sets the location to "/" instead of "http://www.domain.com/"another example would be driver.Navigate().GoToUrl("/view1") sets the location to "/view1" instead of...

View Article

Image may be NSFW.
Clik here to view.

How do I view parents in the Current Iteration backlog

How do I view parents in the Current Iteration backlog? In the Stories backlog you have a show button for parents

View Article


dynamic connection string for injected repository

I'm building a multi tenant (db per tenant) application. the application - .net MVC4the data layer entity framework code first repositoriesthe repositories are injected into the application via...

View Article


How do I hide columns by default?

I'd like to only show certain columns on load, while still having other columns available in the grid menu to be shown. For example, my data contains: name, address, phone, email. I'd like to show name...

View Article

sharing keys across owin self hosted processes

I'm trying to create a token server for a few selfhosted owin services (console applications)However, this seems like its only possible if I host in IIS:The data format used to protect the information...

View Article

Jasmine in a separate test project

Is it practical/possible to separate jasmine tests into a separate visual studio project? I am just getting started with angular, and am trying to write my tests before I start on the actual angular...

View Article


How do I perform joins with lithium models?

I read through lithium\data\model\query, but I didn't see any examples of joins.

View Article

Set the develop branch as the default for a pull request

I want to make the pull request merge into develop from the feature branch by default.I'm advocating the use of git flow, so when a pull request is submitted for a feature, the pull request needs to...

View Article

MongoDB Unknown discriminator value

I've added the code in the answer to this question: Unknown discriminator value 'MyEvent', but it didn't help.An error occurred while deserializing the Body property of class EventStore.EventMessage:...

View Article

joliver / EventStore eventual consistency

I'm trying to figure out how my event storage and my read model are related in terms of actual nuts and bolts implementations.My limited understanding of the event store leads me to believe:Event is...

View Article



cqrs eventstore dispatching to via web service

Other than latency, is there a significant disadvantage to looping through a list of web services to post the event?Dispatcher(event) { var services = getServices(); for each service in services {...

View Article

nservicebus and eventstore

I'm wondering if anyone has encountered this before:I handle a command, and in the handler, I save an event to the eventstore (joliver).Right after dispatching, the handler for the same command is...

View Article

Can user flows and custom policies co-exist?

I need to test out a custom policy but I'm not sure if I'll break my existing user flows if I add a custom policy. Will adding a custom policy break any existing user flows?

View Article

Answer by scio me nescire for How do you (quickly) count AAD B2C users?

This is a bit manual, but whenever I need a quick count, I do the following:Go to Azure Portal (for B2C Tenant)All UsersBulk operationsDownload users (This will get me an excel pretty quick)StartTakes...

View Article


Terraform remote state chicken and egg

In order to store state remotely terraform has a config block that allows you point to a cloud resource. This article shows how to do it in Azure.In a nutshell, it instructs the reader to use some AZ...

View Article

Terraform Azure Service Principal Client Secret expiration

Is it really not possible to set the expiration date for a client secret?I tried looking at the docs (see below), and I can't find anything other than the output of the expiration Terraform which is...

View Article

global object that needs to be referenced in a message handler

I have a signalr client that I want to be global.I think creating the signalr client in the Init() of the endpointconfig would be best.public class EndpointConfig : IConfigureThisEndpoint, AsA_Server,...

View Article


Automatically delete git branch after merge to master

We will be attempting a work flow in github where every ticket is a branch off of master.After the ticket is complete, the work is merged into staging where regression and integration tests are...

View Article


How do I get notifications for commits to a GitHub repository?

I'd like to know what kind of commits are being made to the Lithium framework so I can update (or rollback) when there is something major. I'm already watching the repository, but from what I've been...

View Article
Browsing latest articles
Browse All 38 View Live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>