Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
1answer
2k views

How to share keychain data between iOS applications

I am describing a problem for which it took me quite some time to learn the answer. The "GenericKeychain" example is a good start at providing a wrapper for sharing keychain data between applications ...
16
votes
8answers
6k views

Subversion and shared files across repositories/projects?

I am migrating a client's SourceSafe repository (3 projects) to SVN and two of the projects share source files. (These projects are separate products - with different names and release versions, etc) ...
12
votes
6answers
7k views

How to start Solr automatically?

At the moment I have to go to /usr/java/apache-solr-1.4.0/example and then java -jar start.jar Any ideas how to get this to start automatically on boot? Im on a shared linux server. Cheers
9
votes
3answers
1k views

Is there a Windows/MSVC equivalent to the -rpath linker flag?

On Linux/GCC I can use the -rpath flag to change an executables search path for shared libraries without tempering with environment variables. Can this also be accomplished on Windows? As far as I ...
8
votes
5answers
5k views

Best way for interprocess communication in C++

I have two processes one will query other for data.There will be huge amount of queries in a limited time (10000 per second) and data (>100 mb) will be transferred per second.Type of data will be an ...
8
votes
6answers
3k views

Vista and ProgramData

What is the right place to store program data files which are the same for every user but have to be writeable for the program? What would be the equivalent location on MS Windows XP? I have read that ...
7
votes
1answer
208 views

“Shared” and “__gshared” Keywords in D

When not used inside a static context (that is, when the static keyword isn't present, and you're not in global scope), what do the shared and __gshared keywords do? Examples: struct Temp { ...
7
votes
1answer
2k views

Is it possible to get CMake to build both a static and shared version of the same library?

Same source, all that, just want a static and shared version both. Easy to do?
7
votes
5answers
2k views

Django: vps or shared hosting?

I am new to web development and everything involved with it. Im finishing my website in django and i will soon have to find a hosting and deploy it. I heard there are vps or shared hosting types. So ...
7
votes
5answers
10k views

Internet Explorer 8 - Session Shared among Explorer Window

IE 8 sharing session among different Explorer Window for same domain. Like if you are a logined at hotmail.com in IE 8, and you have open another explorer window for hotmail.com, you will ...
6
votes
2answers
293 views

Use numpy array in shared memory for multiprocessing

I would like to use a numpy array in shared memory for use with the multiprocessing module. The difficulty is using it like a numpy array, and not just as a ctypes array. from multiprocessing import ...
6
votes
2answers
321 views

Git: repo for multiple users on a server

I created a Git repo on a server and want it to be used by several people, i.e. users which belong to the same Unix group. It also has a working copy because it may be useful for us to have a common ...
6
votes
3answers
278 views

Shared Apache / MySQL / PHP setup on multiboot

In short: I have a multiboot machine with Win XP, Windows 7 and Ubuntu, and I would like my localhost web projects to be shared by all three OSes. Details: I finally want to get rid of Windows XP for ...
5
votes
1answer
232 views

scala/akka/stm design for large shared state?

I am new to Scala and Akka and am considering using it to solve a problem. Suppose I have a calculation engine (that searches for a solution). I'd like to parallelize that search both across cpus and ...
5
votes
3answers
364 views

Linux: sharing already-mapped memory between processes

I have a pre-built userspace library that has an API along the lines of void getBuffer (void **ppBuf, unsigned long *pSize); void bufferFilled (void *pBuf, unsigned long size); The idea being that ...
5
votes
2answers
1k views

ld: Using -rpath,$ORIGIN inside a shared library (recursive)

I just made a basic example of using ld's -rpath option with $ORIGIN here (see 2nd response for a working version). I'm trying to create an example where main.run links to foo.so, which in turn links ...
5
votes
1answer
1k views

Android-ndk: difference between static and shared library

I'm new to Android ndk and i didn't understand yet which are the differences between static and shared library. Could you explain me what these differences are? When developing a library how could i ...
5
votes
3answers
2k views

User preferences file vs App preferences file

My android application has two kinds of preferences: 1) I have user preferences defined in res/xml/preferences.xml so that users can manage their preferences with a PreferenceActivity. 2) I'd like ...
5
votes
4answers
217 views

Does program need additional symbols from .so shared library except those declared in header file?

In C programming, I thought that a object file can be successfully linked with a .so file as long as the .so file offers all symbols which have been declared in the header file. Suppose I have ...
5
votes
2answers
548 views

Linux: How to get full name of shared object just loaded from the constructor?

On Windows, several arguments are passed to the DllMain constructor: BOOL WINAPI DllMain( __in HINSTANCE hinstDLL, __in DWORD fdwReason, __in LPVOID lpvReserved ); From hinstDLL I ...
4
votes
4answers
48 views

Git, How to change a bare to a shared repo?

So i this is how i set up my project: git init --bare Later I learned that if you want to work on a project with multiple users this is how I should have done it: git init --bare --shared Now I ...
4
votes
1answer
64 views

Dynamically loading Linux shared libraries?

I want to create a shared library which can be loaded in two different ways into targets: LD_PRELOAD Dynamic loading via dlsym My shared library looks like this: #include "stdio.h" void ...
4
votes
6answers
97 views

A shared online code viewing tool with syntax highlighting?

I work with another developer on projects and sometimes we are chatting about them via IM. We can dropbox stuff back and forth, but it would be nice to have like an interactive version of pastie / ...
4
votes
1answer
319 views

Xcode 4 iOS project structuring questions

I have my first iOS application under my belt (a relatively straightforward iPad app, to be released in a month or so), but now I'm moving on to something more ambitious, and could use some advice. ...
4
votes
3answers
4k views

android shared preferences example for high scores?

Hi I was wondering is there any simple example of implementing a high score list using shared preferences? ie have pre determined high scores at the start and then update the list dependingt on the ...
3
votes
2answers
68 views

Simple Library Questions (C++)

1. Are shared libraries and dynamic libraries the same exact thing? windows just labels them as .dll, and linux labels them as .so? 2. If a shared libarary has a ton of functions that a program ...
3
votes
2answers
38 views

Shared hosting and page generation with PHP

I've got a website on a shared hosting and I'm using PHP to generate the pages. As of now, using the management system the admin can modify the database, which is stored in an XML file (SQL is not ...
3
votes
1answer
66 views

Why does the linker modify a --defsym “absolute address”

Goal: a shared library to use a function from an executable (which does not export symbols). Means: gcc -Wl,--defsym,function=0x432238 The man page states that: "--defsym symbol=expression" Create ...
3
votes
2answers
159 views

How to create a shared library in Android

I have a library, say LIB, which exposes the quite a few APIs and classes for use by application developers. If there are more than one application that uses LIB on the phone, I want only one ...
3
votes
3answers
113 views

How to create a shared object between different sessions in PHP?

How to create a shared object between different sessions in PHP? I'm thinking of using file or MySQL memory table. Using file isn't a good option because it doesn't have locking and is slow. Using ...
3
votes
1answer
108 views

IIS7: How do I allow one site to bind to port 443 and prevent binding on other sites

We have a Win 2008 server running IIS7. The webserver runs several sites, one of which requires SSL for its e-commerce / data-capture components: www.domainA.com :80 & 443 www.domainB.com :80 ...
3
votes
1answer
128 views

Sharing Windows Authentication between SharePoint and ASP.Net Web Application

We have a SharePoint web application that uses Windows Authentication e.g. extranet.test.com. We also have an ASP.NET web application that uses Windows Authentication e.g. webapp.test.com However ...
3
votes
2answers
581 views

Shared cache between Tomcat web apps

I'm looking for a solution to share a cache between two tomcat web apps running on different hosts. The cache is being used for data synchronization, so the cache must be guaranteed to be up-to-date ...
3
votes
2answers
152 views

Sending a matrix's orientation… Converting to degrees? Radians? Something without a decimal?

I want to be able to tell the server my model's orientation so it can in turn send it back to all other players. However getting values through shared memory(which at worst take byte values, at best ...
3
votes
1answer
74 views

Two close repos in Mercurial

I have a project I'm currently working on, which I am contemplating making open source, but I definitely want to keep it closed-source for the time being. Inside this project, I have a sort of ...
3
votes
2answers
362 views

how is a shared library file called by two different processes in Linux?

In Linux, I have a shared library file called foo.so When I execute 2 different process p1, p2 that both use foo.so. Does this foo.so get overlapped by those 2 process?
3
votes
4answers
1k views

Write a private access file to another app's files directory

The two apps have the same sharedUserId. When I use this code in app1 context.openFileOutput("/data/data/org.me.app2/files/shared-data.dat", MODE_PRIVATE) I get an exception telling me that the ...
3
votes
8answers
748 views

How to create a Shared Login Service across Multiple Domains?

I'm interested in how to implement a shared cross-domain login system as well as best practices and security precautions to take. If you are familiar with 37Signals, you are probably accustomed to ...
3
votes
1answer
146 views

how to link shared library against other shared library in linux?

My application dynamically loads liba.so (with dlopen). liba.so uses libb.so so I want to link liba.so against libb.so. How to do this in Linux? Thanks in advance.
3
votes
2answers
173 views

When to use Shared methods in .net

I'm kinda getting mixed messages about this so I'm hoping someone can clear this up for me. Should I be using Shared methods/functions in the following situation: I have a generic class named ...
3
votes
1answer
390 views

How to configure an existing git repo to be shared by a UNIX group

I have an existing git repo (a bare one) which has up to this point only been writable by me. I want to open it up to some UNIX user group, foo, so that all members of foo can push to it. I'm aware ...
3
votes
4answers
734 views

Can the same DLL data be shared by 2 different processes?

I have two different C# applications that are running at the same time. I would like both of them to be able to access the same "instance" of a DLL (also in C#). The DLL holds some data that I'd ...
3
votes
2answers
459 views

PHP Shared Sessions across Domain

I have seen a few answers to this on SOF but most of these are concerned with the use of subdomains, of which none have worked for me. The common one being that the use of session.cookie_domain, ...
3
votes
5answers
81 views

Techniques for sharing a value among classes in a program

I'm using Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData) + "\MyProgram" As the path to store several files used by my program. I'd like to avoid pasting the same ...
3
votes
1answer
343 views

Skip compile-time symbol resolution when building Linux shared libraries with dependencies

Is there a gcc flag to skip resolution of symbols by the compile-time linker when building a shared library (that depends on other shared libraries)? For some reason my toolchain is giving undefined ...
3
votes
6answers
832 views

Rails application on shared hosting?

Is there a way that I can deploy my locally made rails app on a shared host that has Ruby installed?
3
votes
2answers
2k views

Hibernate one-to-one entity association with shared PK between 3 classes

I want a unidirectional one-to-one relationship between objects of 3 java classes: Person to Heart, and Person to Liver. I want the objects to share the same PK i.e. every person has a corresponding ...
3
votes
2answers
240 views

Class with just Shared functions - Why is it bad?

I have a class called MembershipHelper, which I am using in my ASP.NET project. It looks like this: Public Class MembershipHelper Public Shared Function IsMultiStoreUser() As Boolean return ...
3
votes
5answers
4k views

Any concept of shared memory in Java

AFAIK, memory in Java is based on heap from which the memory is allotted to objects dynamically and there is no concept of shared memory. If there is no concept of shared memory, then the ...
3
votes
3answers
241 views

Standard non-code resource location for python packages

This should be a common scenario, but could not find any relevant post yet.. I plan to deploy a Python library (I guess the same applies to regular applications) which makes use of some images and ...

1 2 3 4 5 8