The data-sharing tag has no wiki summary.
3
votes
2answers
2k views
Sharing Data Between Apps on an iDevice
Is it possible to share on-disk data between iOS applications, or are they truly sandboxed? In other words if I wanted to make a shared repository of data to be accessed (and/or modified) by one or ...
2
votes
2answers
85 views
What would you switch to using instead of excel in a corporate workplace, when you aren't a programmer by trade?
I have a friend that is working on a company without any real IT people, and they've gone the classical corporate route of stringing things together with Excel macros whenever they need something. I ...
1
vote
2answers
24 views
Collaboration between Drupal 7 sites
I working on a system in Drupal 7 that is targeted on a certain domain (the domain plays no role, but all sites in the system have the same domain). I'm trying to make different sites work together ...
1
vote
3answers
66 views
Exchanging data between web sites
What is the most practical way of exchanging data between web sites (format, medium, protocol ...) ?
For example say an open-source online game has been designed such that each site where it's ...
1
vote
1answer
73 views
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 ...
1
vote
2answers
143 views
Sharing hashmap between different JVM running on the same machien
I have some maps that contains cached data from db. Currently 5 instance of the same server is running on same machine in different JVM. How can I share maps between JVM? cache is write once and read ...
1
vote
0answers
140 views
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.
...
1
vote
4answers
117 views
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 ...
1
vote
2answers
145 views
how do I share configuration data between Javascript, Python, and CSS in my Django app?
I have Javascript, Django templates, Python code, and CSS which all work with the same configuration data. Where's the best place to configure it?
Specifically, I have a browser-side entry widget in ...
1
vote
3answers
1k views
pthread and child process data sharing in C
my question is somewhat conceptual, how is parent process' data shared with child process created by a fork() call or with a thread created by pthread_create()
for example, are global variables ...
0
votes
1answer
45 views
Sharing a class property (field) between applications
I have an 8 bit digital output board used for device controlling. Each external device needs one bit and is controlled by a different application.
I have written a class library and the class ...
0
votes
2answers
23 views
How to get a value from another android application?
I'm building 2 applications.
The first application, on start, asks a value (for example an integer) to the second application, which may or may not be installed and may or may not be running.
I ...
0
votes
5answers
66 views
How many ways to pass/share data b/w view controller
im new to IOS and Objective-C and the whole MVC paradigm and i'm stuck with the following.
I am working on (replica) Contact app, also available in iphone as build in app. i want to pass data through ...
0
votes
1answer
34 views
How to have multif-form application in android?
I'm going to develop a shopping application which include several cascading forms.
The development platform is android 3.1. I got two problems.
what is a good strategy to have multiple forms? e.g. ...
0
votes
3answers
127 views
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 ...
0
votes
4answers
102 views
Sharing strings and variables throughout ios app
I'm making an app for a final project for class and I need to share strings, integers and floats throughout different views in my application. I have to create an app that a waiter/waitress would use ...
0
votes
2answers
99 views
A useful abstraction on ScenarioContext.Current?
This question is more for general discussion on sharing values in SpecFlow. Please provide any constructive feedback you may have based on your experience in SpecFlow.
I am relatively new to this ...
0
votes
0answers
90 views
Rails 3 - bulk sharing of data to social sites
I have a small page and I want to share my articles to social sites as could be facebook, twitter or google+.
Exist already any solution/gem or something like that or is needed to write my own script?
...
0
votes
2answers
244 views
Can two Android devices, running different applications, use the same SQLite Database?
I read this question and wondered if the same would apply to my situation.
I want to write accelerometer values (x, y and z) from an Android phone to a database and retrieve it with another app on a ...
0
votes
3answers
137 views
Sharing Objects between 2 different iPhone applications
We are requiring to share some information between 2 different iPhone applications which are part of suite. Let say we want to share some objects between those 2 applications like array.
After some ...
0
votes
0answers
161 views
Sharing files between applications with shareduserid : what happens at uninstall?
I am planning to develop two applications that share one file that is saved in internal memory. I read that this could be achieved by using a shareduserid, the same encryption key and the regular ...
0
votes
1answer
31 views
Sharing database data for plug-ins in python
I'm writing a program to run certain tests involving data from two databases. The idea is that such tests be implemented as plug-ins (I'm currently using the Yapsy plug-in framework). One test can be, ...
0
votes
3answers
273 views
Sharing data between selected users in web application c#
My website uses a web user control. The properties for the user control will be set will be common for a set of my users. e.g. if I have 20 users accessing my website, 5 of them may be using the user ...
0
votes
4answers
108 views
Sharing information between applications
My question is very simple to expose:
I have a few aplications that share data between then. I need a way to support that data sharing (cross several computers) and when one aplication changes data, ...
0
votes
2answers
106 views
ASP.NET - using another app's app_data?
If there is a self contained web app, let's use the Screw Turn Wiki as an example, that utilizes the App_Data to store the MDF, is there any way another web app, living in the same domain, can also ...