Questions tagged [data-sharing]
249 questions
3
votes
1 answer
Sharing target Universal Apps Windows 10 approach
I am struggling with it for a few hours and can't find working solution. My app is a target app for sharing and the problem is when it's running and user wants to share content.
protected override async void…

MistyK
- 6,055
- 2
- 42
- 76
3
votes
1 answer
How can I pass form values invisibly into a popup?
I have a grid of records on my page, and each record has an edit button. Clicking the edit button opens a Magnific Popup, using ajax type, with an edit form for that row. I need to pass in the data for the current record so that I can pre-populate…

froadie
- 79,995
- 75
- 166
- 235
3
votes
0 answers
Sharing folder between Android user profiles
Can somebody please help in giving information on how to share data among multiple device users in same Android non rooted device with lollipop version. So that both users can have read and write access to that data. Thanks in advance.

Maddali
- 31
- 2
3
votes
1 answer
Connect two android applications to send and receive data
I am developing a chatting app for android using phonegap , i have developed the UI but now im struck for how to connect two apps for sending and receiving data over internet, Messages in this case. I know this type of questions are not allowed on…

rusty bit
- 371
- 2
- 17
3
votes
0 answers
sharing settings between multiple apps
I am new to android development and i am looking for the best possible solution to my problem.
I am open for nearly everything. I am currently in "experimental phase" so i can turn the design upside-down if needed.
I am working on a series of apps…

Gargo
- 621
- 6
- 17
3
votes
2 answers
Right way to share object between different users of web application
I need to maintain a list of objects in a web application. This list can be viewed or modified (items added or deleted) by any user of the web application. There are chances that many users are accessing (modifying) the list almost at the same time.…

Prabhat
- 2,261
- 7
- 46
- 74
2
votes
3 answers
How to implement NSUserDefault to access through multiple views
I'm trying to share strings and integers throughout multiple views for a final project in an introductory iOS development course, around 50, and am wondering how I would go about doing this... I know the MVC paradigm is best but we didn't get to…

JustLikeThat
- 353
- 1
- 5
- 17
2
votes
1 answer
How to handle game object data in component-based game architecture?
I'm architecting a component-based game object architecture. In my situation, I have renderables and physics objects. A render scene contains renderables. A physics scene contains physics objects. I have a game object that has a renderable and a…

Sion Sheevok
- 4,057
- 2
- 21
- 37
2
votes
1 answer
Is there any way to store the return value of a task in Python variable and share it with downstream tasks (without using xcom or airflow variable)
I am writing an airflow dag which will read a bunch of configs from the database and will then execute a series of Python scripts using bash operator. The configs which were read previously will be passed as arguments.
The problem is I am not…

Prajnyadeep Subhashis Patra
- 23
- 1
- 5
2
votes
1 answer
SwiftUI: Data sharing between separate views
What is the best practice to share variables between views?
My app has only one view. But as it gets more and more complicated, I think I should separate it into several views. Also to separate the methods.
I started with something like this:
struct…

mildspleen
- 25
- 5
2
votes
0 answers
How to share file between apps without file section interface
I am trying to make an app that can easily keep sending files to different apps(whichever the user is running currently), when those apps make request to my app for files.
I was going through this link Sharing a file in Android , Sharing simple…

Darth Vader
- 881
- 2
- 7
- 24
2
votes
0 answers
How to parallelize a class method or share class object between processes in python?
I have created a class containing all its instances and need to parallelize the process of instantiation, but cannot solve the problem of sharing the class as a class object. Is it possible in python 2.7 using multiprocessing?
OUTPUT_HEADINGS =…

Petr Krampl
- 816
- 9
- 11
2
votes
1 answer
Sharing of array list or variable between 2 distributed tensorflow processes
I am presently working on Distributed tensorflow considering 2 worker processes and facing the issue of sharing variable between these two worker process.
I found tf.get_collection/tf.add_collection but still unable to get the variable value shared…

Kapil Mathur
- 21
- 5
2
votes
1 answer
How to share data between apps while in background?
I'm afraid I already know the answer of my own question, but I decided to ask anyway before losing my hopes.
I have the following use case: an app writes some bytes in a "shared" resource (let's say on a file) and another app reads the data and…

Dree
- 702
- 9
- 29
2
votes
1 answer
Structural Sharing List in Scala
i have a question about Structural sharing from List in Scala. I have read some where in the Internet this sentence
List implements structural sharing of the tail list. This means that many operations are either zero- or constant-memory cost.
but…

user7959714
- 59
- 5