In VB.NET, the Shared keyword is roughly equivalent to the static keyword used by many other languages.
32
votes
1answer
8k 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 ...
27
votes
1answer
6k 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?
24
votes
6answers
22k views
How to start Solr automatically?
At the moment I have to go to /usr/java/apache-solr-1.4.0/example and then do:
java -jar start.jar
How do I get this to start automatically on boot?
I'm on a shared Linux server.
20
votes
8answers
10k 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)
...
19
votes
3answers
4k 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 ...
17
votes
5answers
11k 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 ...
16
votes
3answers
2k 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 ...
13
votes
2answers
4k 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 ...
12
votes
5answers
6k 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 ...
12
votes
2answers
305 views
Recommendations on sharing validation rules between Javascript and PHP?
We're in the process of writing a new form which our front-end coder has included lots and lots of JavaScript validation (technically, jQuery Tools validation).
I'm writing the PHP server-side part ...
11
votes
6answers
3k views
Django: vps or shared hosting? [closed]
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 ...
10
votes
3answers
8k 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 ...
8
votes
1answer
3k 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 ...
8
votes
7answers
17k 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 ...
8
votes
3answers
3k 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 ...
8
votes
3answers
343 views
Outlook Mapi access shared contacts
I want to import contacts from Outllok via Mapi.
First step with standard contact is no problem:
MAPIFolder contactObjects =
outlookObj.Session.GetDefaultFolder(OlDefaultFolders.olFolderContacts);
...
7
votes
6answers
12k 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 ...
7
votes
4answers
1k 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 ...
7
votes
3answers
1k views
Unix: 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 ...
7
votes
2answers
3k 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 applications that use LIB on the phone, I want only one ...
7
votes
2answers
336 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
{
...
6
votes
8answers
3k 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 ...
6
votes
2answers
1k 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
1answer
2k views
Sharing authentication between two web applications
I have a base web site (Asp.net WebForms application) running under ie.
http://localhost:90/
Then I created a new (this time Asp.net MVC) application and added it under
http://localhost:90/mvc/
...
6
votes
3answers
350 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 ...
6
votes
1answer
1k views
Can't nest TFS branches, so branching to share code doesn't work?
I've been following the advice in "Team Development with Visual Studio Team Foundation Server" on structuring projects and sharing code from one team project into another using branching. So our ...
6
votes
3answers
1k views
SOA and shared databases
I don't understand SOA (Service-oriented Architecture) and databases. While I'm attracted by the SOA concept (encapsulating reusable business logic into services) I can't figure out how it's supposed ...
6
votes
2answers
1k 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 ...
5
votes
3answers
879 views
Push git changes to a shared network drive
How can a team of four people use Git (specifically Github for Windows) to push local changes to a shared network drive?
Right now (without Git) we have to copy the files from the network drive to ...
5
votes
1answer
7k views
Linux shared library that uses a shared library undefined symbol
two shared libraries liba.so and libb.so. liba.so uses libb.so. All c files are compiled with -fPIC. Linking uses -shared. When we call dlopen on liba.so it cannot find symbols in libb.so...we get ...
5
votes
4answers
296 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
3answers
2k views
how can i use a shared lib in glassfish to avoid deployment of the huge libs?
I have to upload about 30M for my app since it uses a lot of libraries, log, web engine and so on.
I think there should be a way to share these libs on glassfish, but I failed to figure it out. I ...
5
votes
1answer
563 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.
...
5
votes
3answers
381 views
Shared readonly memory between Perl processes
I wish to make a Perl program of mine use multiple cores. It progressively reads query input and compares chunks of that against a read-only data-structure loaded from file into memory for each run. ...
5
votes
1answer
500 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
2answers
1k 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, ...
4
votes
7answers
5k views
svn repository on Windows network share
Is it safe for multiple computers to concurrently access an svn repository stored on a shared filesystem?
I'm building an application in which each Windows client machine has a local working set of ...
4
votes
1answer
5k views
Android Intents: Start activity using class name from another app that has the same sharedUserId
All my apps have the same sharedUserId. I would like to start a class of another app using the class of my current app. I want to use intent extras but I do not want to use intent URLs. I also would ...
4
votes
1answer
641 views
Can't get Flask running using Passenger WSGI on Dreamhost shared hosting
I'm trying to get a Flask "hello world" application working on a Dreamhost shared server, following the instructions on their wiki, but I'm not having any luck.
My Flask application is the "hello ...
4
votes
1answer
74 views
Distribute matlab functions without source
I have written a set of Matlab functions and I want to distribute it to few people for testing. But I do not want to reveal the source to them. All these people have matalb installed on their systems. ...
4
votes
3answers
2k views
How to share semaphores between processes using shared memory
I have to synchronize N client processes with one server. These processes are forked by a main function in which i declared 3 semaphores. I decided to use POSIX semaphores but i don't know how to ...
4
votes
3answers
2k views
How to get variables shared between child and parent process while using fork in perl
I am using fork in my code. Before fork call in my code, the parent process has a global variable declared. So after the fork call does child process get a separate copy of the global variable on its ...
4
votes
2answers
1k views
OpenMP Several “shared”-directives?
Hey there,
I have a very long list of shared variables in OpenMP so I have to split lines in fortran and use the "&"-syntax to make sure the lines stick together!
Something like that:
!$OMP ...
4
votes
1answer
551 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.
4
votes
4answers
2k 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 ...
4
votes
1answer
893 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
3answers
326 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 ...
4
votes
6answers
378 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
84 views
Returning new base class when the parent class shared pointer is the return type
Can you have a parent class shared pointer return type of a function and then return a new child class without it being a shared pointer? I'm not sure how shared pointers work in these situations, do ...
4
votes
3answers
8k 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 ...