Dismiss
Announcing Developer Story
You’re more than your resume. Show off what you’ve built.
All Questions
0
votes
0answers
2 views
How to inject an asynchronous dependency in inversify?
I have TypeScript application and I'm using Inversify for IoC.
I have a connection class:
'use strict';
import { injectable } from 'inversify';
import { createConnection, Connection } from "typeorm";...
0
votes
0answers
2 views
“nircmd.exe monitor on” doesn't work
The following batch file only works with monitor off, not monitor on:
@echo off
echo Monitor Off!
nircmd.exe monitor off
timeout /t 10
nircmd.exe monitor on
echo Monitor On!!!
pause
The monitor will ...
0
votes
0answers
3 views
Can micro services be applied to the front-end with JS?
I have a project which requires various developers to build components / modules for an app at any given time.
However, each component can be written in a different framework or library e.g. URI/app1 ...
0
votes
0answers
2 views
Understanding Scope Of Objects From Injectable In Angular 2
I am trying to create a user object that I can use in any component I use my service injectable at.
Once the server response comes I create a new object inside the function checkRegister which is ...
0
votes
0answers
2 views
Low accuracy of shape predictor with default dataset and training
I'm trying to use dlib to train shape predictor with default dataset(/dlib-19.0/examples/faces/training_with_face_landmarks.xml) and default train sample(train_shape_predictor_ex.cpp).
So I want to ...
0
votes
0answers
2 views
Polymer and Google-Sheets component loading ALL spreadsheets
I'm building a Polymer app and I'm trying to load all spreadsheets from a google drive account but am having trouble. I can bring individual spreadsheets in at a time, but is there a way to bring all ...
0
votes
0answers
3 views
git archive : how to ignore patchspec during archive?
I am trying to create an archive of the files in the latest 3 commits using the following command.
git archive -o archive.zip $(git diff --name-only HEAD~3)
But in the last commit i deleted a few ...
0
votes
0answers
2 views
Add to Map in Groovy
In groovy I've got the following...
def response = [
modifications: []
]
I want to add to this map dynamically so that it ends up like this....
def response = [
...
0
votes
0answers
3 views
How to load AngularJS first when using JQuery as well
I am using Angularjs and JQuery in the same project. When using Angularjs and JQuery in the same project, it is a convention that JQuery has to be loaded first and then AngularJS as follows:
<...
0
votes
0answers
3 views
how to form the volume from the single dicom image using isosurface in matlab
i want to do volume rendering for the data containg dicom images . Each dicom contains again 72 frames can any one help me how to get the volume from the below code
`projectdir = 'E:\SHIVA BACKUP\...
0
votes
0answers
4 views
CGPointFromString in Xamarin
Is there an equivalent function available in Xamarin.iOS for CGPointFromString
0
votes
0answers
2 views
Configure Active Directory to use external OUD LDAP for authenticate
I wonder is there anyway to configure Active Directory to use an external LDAP like OUD(Oracle Unified Directory) for authenticate?
I try google this problem but the result is all about OUD to AD not ...
0
votes
0answers
2 views
Jquery Not Working On Woocommerce Product Variation Description
It Works Fine On JsFiddle https://jsfiddle.net/33shjyf6/ But not On my Wordpress Site. http://www.feature-wallpaper.co.uk/product/lamborghini-aventador/
My Idea is My Idea is When USER select two ...
0
votes
0answers
3 views
how to get default checked values in ion-checkbox
I have a list of check boxes , I was able to get the selected values but the problem is once I close and open the model again I need the check boxes to be selected with the previous selected values ...
0
votes
0answers
3 views
What is the difference between “event loop queue” and “job queue”?
I can not understand how the following code run.Why "1" is after "b"? I have read the specification of ECMAScript 2015 - 8.4 Jobs and Job Queues,wanting to know how Promise'job works,but it makes me ...