Questions tagged [data-sharing]
249 questions
1
vote
1 answer
Transmit informations back and forth in pyton multiprocessing using shared arrays
I am testing a way to speed up "high level" computations using multiprocessing.
The idea is to have multiple processes (let's call them G) doing different executions of the same task T. This can be a long task (playing a whole board game) which in…

BilboX
- 11
- 1
1
vote
2 answers
Snowflake Data Sharing - Grant partially executed | Grant not executed
Aim:
Grant more privileges to the Data Share
Description:
Please note that I'm using a 30 days trial version of Snowflake.
I've tried creating the Data Share via UI, but despite being able to Add a Consumer under the Full Account section, the user…

The Employee 123
- 494
- 1
- 14
- 27
1
vote
0 answers
How to pass value from one provider to another directly in flutter
I have 2 provider, general provider and blog provider. general provider is called on splash screen and here I normally call API that fetch most common data like blog, category, tags, notification and is stored in general provider. How can I use the…

princeoo7
- 1,071
- 3
- 21
- 44
1
vote
0 answers
Cast objects passed using @Input() to an Interface type in typescript
I want to pass objects from parent component to the child component using @Input() and in the child component I want to cast it to an Interface.
Interface definition
export interface IDummy {
name: string;
issueNumber: number;
}
In…

K.Shikha
- 107
- 2
- 14
1
vote
1 answer
How do you update the value you delegated from one class to the other?
I'm having an issue with Delegating. I'm relatively new to the concept, and but conceptually I get it and it's importance. I'm just having trouble using it. I can't seem to pass data from one class to the other. I know there are existing examples of…

rabus mccaleb
- 124
- 9
1
vote
1 answer
sharing the async data without interrupting the http request
I have two pages that one can navigate from one to another and each of those pages making the same http request, completely the same request. Obviously, I don't want to make the same request over and over again on navigating between 2 pages, so i…

tabuC
- 15
- 2
1
vote
0 answers
How can I create Xamarin.Forms Hidden Application or service and use it without launching it?
I want to have a centralised service app in Xamarin for database sharing between two other Xamarin apps. So, they both can work independent of each other and depends only on the centralised database. For that, I need to create a service app which…

Nidhi Sood
- 125
- 1
- 1
- 7
1
vote
0 answers
how to read images form a cloud shared services like google drive or other
hi i am working on project in which requirement is i have to upload images on some cloud services like google drive or other, and it generates a URL of images like http://example.com/images/1.jpg etc and share this URL with any one.
I already tried…

Umair Mehmood
- 514
- 1
- 11
- 24
1
vote
1 answer
How to share data between two applications with SSO?
This is more of a philosophical/architecture question than "code" question.
Let's imagine that we have 2 applications (Service providers) with Single Sign-On. There is obviously data they have to share, mainly the information of the users…

José Pedro Duarte
- 53
- 9
1
vote
0 answers
Best Practises on Archiving/Storing/Sharing Code
Note: I tagged this under R because I am an R user, but the topic of this question is general, so I appreciate any input regardless of programing language.
Hello Everyone,
My company is expanding into a data-science/developer field and will be…

Alokin
- 461
- 1
- 4
- 22
1
vote
1 answer
Sqlite database with android - local?
I have an android app that I have been working on and I created a sqlite database using the android.database.sqlite package. I know that you can access that data by using Android Studio manually, but I am trying to save data into the database so…

Victoria
- 25
- 1
- 4
1
vote
1 answer
Sharing data between apps in Xamarin Forms
I am using Xamarin Forms to develop 2 applications A and B in Android & iOS, and B would need to fetch some data from A (1 way communication). Following are the points to note:
I don't want to open B from A (No url scheme possible)
I have made…

SnapADragon
- 536
- 7
- 21
1
vote
0 answers
Sharing data with objects created with operator[](const size_t& i) - e.g. a complex vector container
when I want to share data I often get in a mess using the operator[] (const size_t& i) in c++. I wanted to ask if there is a design pattern that I should be using - or a better way altogether.
Writing a complex vector container illustrates my…

Tom
- 5,219
- 2
- 29
- 45
1
vote
2 answers
UWP DataTransferManager ShowShareUI() Opens Sharing Dialog with "This app can't share right now" and Closes it Immediately After
I am trying to share a file from my UWP app sandbox running on Windows 10 desktop.
Following MS documentation on this page, the implementation seem to be fairly straight forward; however, I am having issues…

pixel
- 9,653
- 16
- 82
- 149
1
vote
3 answers
How do I create and read non-global variables that aren't destroyed at end of function?
I am attempting to code some plugins to use with MIDI sequencers but have hit a stumbling block. I can't use global-scope variables to store information because multiple instances of the .dll can exist which share memory.
How do I create a class…

Paul Reilly
- 11
- 1