Questions tagged [hybrid]

"Hybrid" refers to the methods or objects that encompass the functionality or properties of two or more different objects.

"Hybrid" refers to the methods or objects that encompass the functionality or properties of two or more different objects.

640 questions
4
votes
2 answers

Windows desktop support in Cordova

I am into analyzing the best possible solution for one of my new development assignment. My requirements: - Platforms supported: Android, iOS, Windows Mobile, Windows desktop. - Need a single code base as far as possible. I have worked on a…
HarshalK
  • 126
  • 5
4
votes
2 answers

Azure hybrid connection Manager does not work

Requirement I have an On-Premise SQL Server and an Azure webApp Service that needs to talk each other. I installed Hybrid Connection Manager on another computer which is in the same LAN as the SQL server. Let's refer this computer as the Connection…
ppau2004
  • 193
  • 2
  • 3
  • 16
4
votes
1 answer

While bootstrapping a hybrid angular 1 + 2 application, how do you initialize the angular 1 injector?

To recreate the issue, I forked the Angular Quickstart plunker. I have this simple angular 1.x module: 'use strict'; angular.module('testModule', []) .factory('testService', function($q, $log, $interval, $rootScope){ //Create a service object…
Victor
  • 73
  • 3
4
votes
1 answer

iOS hybrid app WKWebView soft keyboard covering input fields sometimes

I am using a WKWebView as my web container on my iOS 8+ hybrid app. When an input field in the web container is focused and the soft keyboard comes up, the web view scrollview usually scrolls up automatically. However, sometimes the web view…
the 1
  • 111
  • 5
4
votes
2 answers

Is there way to create HYBRID CONNECTIONS for azure could service or azure VM?

I azure we can create Hybrid connection to local sql server from Web Sites and Mobile Service. But I need to create Hybrid service to My Local SQL server from VM or cloud service. Is there anyway to achieve this one?
4
votes
0 answers

Feature Selection: Hybrid vs Embedded approaches

I have been doing research on feature selection and I'm failing to understand the difference about these two approaches. According to most authors on literature, feature selection algorithms are categorized into three categories. The first two,…
Jorge Silva
  • 225
  • 1
  • 3
  • 10
4
votes
1 answer

Does IndexedDB work with a hybrid android app?

I've developed a todo web app using localStorage. However, my new extra functionality, clicking on selected date and getting that day's todo items requires to have a Date object linked to the todo items, so that a specific day's todo items can be…
4
votes
0 answers

jfeinstein10 SlidingMenu And WebView Control

I have a problem when jfeinstein10 and webview(Base control into activity) when want to close menu webview show a (like shadow): screen shots:
Arash Jahani
  • 192
  • 6
4
votes
2 answers

Node framework to render on both ends

I've recently started learning node and trying to build an application. I was reading about on which end it's better to render for a single page app. It's better to render on backend because of faster initial load, and better seo It's better to…
Tomas
  • 1,377
  • 3
  • 17
  • 32
4
votes
1 answer

Sqlalchemy hybrids

I have a sqlalchemy (actually Flask-sqlalchemy hence all the db.*) and I would like to be able to sort my 'Things' by their average vote.value of the 'Votes' that they are related to. Votes have a value of 0 to 100. Having run into the issue that…
Col Wilson
  • 889
  • 10
  • 16
4
votes
2 answers

How to mix genetic algorithm with some heuristic

I'm working on university scheduling problem and using simple genetic algorithm for this. Actually it works great and optimizes the objective function value for 1 hour from 0% to 90% (approx). But then the process getting slow down drammatically and…
mr.nothing
  • 5,141
  • 10
  • 53
  • 77
3
votes
1 answer

Powershell: Retrieve number of P & E cores on intel 12th Gen device

Trying to find a way to get PowerShell to output the number of P and E cores on my 12th gen device. Getting the number of cores and number of logical cores is fine but I've got no way of being able to differentiate those types of cores from each…
16BitBlank
  • 41
  • 4
3
votes
1 answer

Changing the Windows Tray Icon in a MAUI Blazor Hybrid App - OnNativeMessage Definition not found

I've been learning MAUI Blazor lately and wanted to try and change the tray icon in the upper left of the window because it defaults to being blank. I've been following this tutorial: https://www.youtube.com/watch?v=n_HJcDHuMMw Which uses the…
Fabs
  • 95
  • 7
3
votes
0 answers

Requests to all fonts get cancelled in Chrome 73 android using webview

We have hybrid application and one of our customers updated their chrome on Android to version 73. After the update, they can't use the application and when I investigated, I see font requests that gets a status of "cancelled". Do you know any…
Jeffrey Hitosis
  • 325
  • 3
  • 13
3
votes
0 answers

Optimizing WebView Rendering...seeking alternatives to deprecated code

Code for rendering webview String url = getIntent().getExtras().getString("url"); webView = (WebView) findViewById(R.id.webView); WebSettings webSettings = webView.getSettings(); webSettings.setJavaScriptEnabled(true); …
1 2
3
42 43