Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

39
votes
8answers
1k views

Multiple Programmers in Software Development. How do we work on the same code and ensure it is always updated?

This seems like something I should know by now, but for whatever reason I do not. I also am not having much luck searching on the topic. A friend and I are starting a simple project together away ...
21
votes
7answers
9k views

What's your favorite cross domain cookie sharing approach?

I see iframe/p3p trick is the most popular one around, but I personally don't like it because javascript + hidden fields + frame really make it look like a hack job. I've also come across a ...
17
votes
1answer
361 views

A good way to avoid “sharing”?

Suppose that someone would translate this simple Python code to Haskell: def important_astrological_calculation(digits): # Get the first 1000000 digits of Pi! lucky_numbers = ...
11
votes
6answers
6k views

Sharing C# code between Windows and Silverlight class libraries

We wrote a small Windows class library that implements extension methods for some standard types (strings initially). I placed this in a library so that any of our projects would be able to make use ...
7
votes
1answer
83 views

Sharekit: url is modified while posting to facebook?

I am posting image with image title and in the image title I have added url, I am able to share image and url also but,there is slight modification in the url.The = symbol is converted to %3D ,as ...
7
votes
5answers
2k views

How to code sharing between Android and iOS

I'm moving away from strict Android development and wanting to create iPhone applications. My understanding is that I can code the backend of iOS applications in C/C++ and also that I can use the NDK ...
7
votes
2answers
2k views

Combine ASP.Net MVC with WebForms

Would it be possible to create a MVC root application (Portal with masterpages and themes) and add a couple of WebForms based subprojects (we already have an existing WebForms application that we ...
6
votes
4answers
3k views

subversion server vs. network repository access through tortoise

There are currently 5 developers on my team and we all access a repository through a shared drive on computer X which is on our network. Since we all have access to computer X, and we can manage who ...
5
votes
1answer
87 views

The right way to provide a Premium update to a free Android App

I have been developing a free game (with ads) on the Android Market. Now quite a few people are requesting me to do a paid version without ads. I have no experience in keeping multiple versions of a ...
5
votes
1answer
2k views

iOS App-to-App Trasnmission of Data using new Document Support API

Problem: Building Enterprise Applications of a Suite Nature, and need to be able to pass data from one application to another. Example: App1 is a barcode reader that produces and inventory list. ...
5
votes
1answer
437 views

Sharing data between processes in Python

I have a complex data structure (user-defined type) on which a large number of independent calculations are performed. The data structure is basically immutable. I say basically, because though the ...
5
votes
1answer
351 views

Sharing code between two different git projects

I have two different .Net projects, hosted on github. I would like to create a shared "commons" library for the two projects. How should I structure my repository to facilitate this sharing? ...
5
votes
4answers
728 views

Feasibility of shared code between .NET and Silverlight?

Having just gone through a small experimenting session to try to see how much work it would take to bring our .NET class library, or at least portions of it, into Silverlight so that we can reuse ...
4
votes
2answers
100 views

How much information do array variables share?

How much information is copied/shared when I assign one array variable to another array variable? int[] a = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]; int[] b = a; a[0] = 42; writefln("%s %s", a[0], b[0]); // ...
4
votes
1answer
136 views

Perl: Are Special Variables Thread Safe?

I was reading some questions regarding the $@ global variable and how it can be clobbered before it's even handled due to successful evals wiping it clean. But what if it gets clobbered by an error ...
4
votes
1answer
156 views

Viewing Mac Localhost on a network PC

I am developing some websites on my Mac (Standard LAMP setup, with PHP5, Using Remy Sharp's LAMP setup instructions). I can see these sites locally by going to (eg http:// apple.dev). I was just ...
4
votes
2answers
855 views

Is There Any Way To Customize Sharekit?

By default, Sharekit uses an actionSheet to sharing items. Is there any way to show only specific items, such as only facebook, twitter, and email, in a small UIView, not in an actionSheet? Edit: Put ...
4
votes
8answers
9k views

Android - What's the best way to share data between activities?

hey people, I have one activity which is the main activity used throughout the app and it has a number of variables. I have 2 other activities which I would like to be able to use the data from the ...
4
votes
1answer
2k views

How long is Facebook caching the sharing thumbnails?

How long is Facebook caching the sharing thumbnails? I've added a custom thumbnail for my page using: <meta property="og:image" content="/path/to/my/image" /> But on pages I've already ...
4
votes
2answers
980 views

Sharing Session between webservice and asp.net application

I have an asp.net application and webservices (asmx) that reside in the same application but not in the same folder of the aspx files. I aslo have a winform application that uses the webservices. I ...
4
votes
5answers
1k views

Sharing classes between projects in xcode/objective-c

I've got a client<=>server app I'm building for Mac OS X, using Objective-c/Cocoa and xCode. I've created a different project for both the apps I have, and I'm wondering the best way to share ...
4
votes
2answers
279 views

How can I share a folder of content between multiple ASP.Net projects in studio?

I would like to share 2 folders of content ('stylesheets' and 'graphics') between multiple asp.net projects in a solution. Is there a way to do this and have studio display the graphics and such ...
3
votes
2answers
57 views

How to export an activity so other apps can call it?

Well I searched a lot, but I didn't find a precise answer how to export an Activity, so an app can start it with startActivityforResult. How do I achieve that? Do I have to change the Manifest in ...
3
votes
1answer
75 views

Do I need separate Twitter apps for integration with iOS and Android apps + Web?

I'm working on a project which has iOS and Android native apps, plus a Website; with all 3 channels featuring content sharing via Twitter. Sharing must of course be done by integrating a Twitter app ...
3
votes
1answer
368 views

iOS sharing 'global data' across view controllers

I have been using app delegate as a "global bucket" to share data between various view controllers. Typically I do something like this: My_AppDelegate *appDelegate = (My_AppDelegate ...
3
votes
2answers
565 views

Share SQLite database between 2 android apps?

I need to share a single database between 2 apps. I know that the database will be created on /data/data/MY_PACKAGE/databases/ . Since the packages names are different is it possible to define the ...
3
votes
2answers
124 views

Share & track code snippets in-house?

Is there an online tool to share and track code-snippets between a team of developers? My team mate is sitting right next to me and GTalk isn't really adequate for pasting larger snippets. How can I ...
3
votes
2answers
2k views

Open Source PasteBin?

frequently I write wiki pages or set up configuration files that I need to share with other developers. Are there any pastebin clones out there that you can install in your own network and if not, how ...
3
votes
1answer
239 views

Get username of opened file

Is there a way to learn the username of the user that has a file open? I am developing a program that will be a desktop client for many users. The application will open some files and I'd like to ...
3
votes
4answers
387 views

Two C++ apps sharing a read-only region of memory on Linux

I have two processes P1 and P2. I have this large read-only resource, called "R" that I want both P1 and P2 to have access to. R is not just a "flat" group of bytes; it's a bunch of C++ objects that ...
3
votes
4answers
2k views

Problem with WCF and multiple namespaces - sharing object types across multiple service references

i have two web services. One with user functionality, one with admin functionality. Both services effectively work with the same object types, for instance: AdminService provides functionality for ...
3
votes
1answer
876 views

IE8 Session sharing across tabs and windows

Has anyone implemented any effective solutions to address the numerous issues that are caused by IE8's session sharing functionality? We've gotten very close by writing a custom http module that ...
3
votes
2answers
453 views

Memcache sharing

Is it possible to share a single instance of a Memcache between multiple projects. Suppose I push one object inside the memcache in one project, is it possible for me to retrieve the same object from ...
2
votes
1answer
57 views

How to use Frictionless sharing to post to the users wall with open graph

So I've heard we can now post to the users wall without them prompting it, and without them confirming the text that is posted. First of all is that correct? I don't want to do anything that risks ...
2
votes
1answer
91 views

Android: Sharing a common folder between linux application and Android application

Hi I'm a newbie for Android... Please throw some light on the following issue.. I have a file created by a linux application (written in C) with S_IRWXU|S_IRWXG permission and the file belongs to ...
2
votes
1answer
107 views

Sharing on Facebook is sometimes working fine and sometimes not (no title, no description, no thumbnail)

I'm working at Storify and we have an issue when we want to share some stories on Facebook. We are using og meta tags to make sure the story is shareable in a nice way. Mainly, we use og:title, ...
2
votes
3answers
238 views

Integrating Twitter into iOS 4.3+ App

I'm trying to integrate Twitter with my App right now. I have successfully set up the iOS 5 TWTweetComposeViewController, but this does not work on iOS 4.3. What's the best method to also integrate ...
2
votes
5answers
111 views

What's the best way to access the internal data structure within a class?

I have a class A consiting of a bunch of internal data strucutres(e.g. m_data) and a few objects (e.g. ClassB): class A { public: ... private: int m_data[255]; ClassB B[5]; } ...
2
votes
1answer
112 views

OpenGL and multiple GPUs - General possibility

I was wondering, is it possible to run a multi-window OpenGL application on more than one GPU simultaneously? To be more specific, let's say I've created an application with two windows each sharing ...
2
votes
1answer
252 views

Link to fan-page with app_data parameter removes the app_data parameter

I have a FB app in an iframe on a Facebook fan-page. If I create a URL linking to that page, and that URL contains an app_data parameter, like this: ...
2
votes
3answers
234 views

centralized / distributed sharing

I would like to make a system whereby users can upload and download files. The system will have a centralized topography but will rely heavily on peers to transfer relevant data through the central ...
2
votes
2answers
335 views

How can I to handle the “share via” dialog request from other app?

I added the intent-filter to ApplicationManifest.xml to take my app to "Share via" Dialog: <intent-filter> <action android:name="android.intent.action.SEND" /> <category ...
2
votes
1answer
426 views

iOS/Android Bluetooth sharing permission question

Hey guys, I was just wondering about bluetooth API for Android and iOS: Can I connect 2 devices and share things without user "permission"? (after running app and the user accept the terms) I mean, ...
2
votes
2answers
167 views

How to share common css and other resources among grails projects?

I'm working on a grails-based web application that will be composed of a couple of different grails projects, each developed by a separate team, which will eventually all be unified under a common ...
2
votes
2answers
302 views

Ignore image when sharing a page with Facebook

I know it's possible to tell Facebook to use a certain image when sharing a page by adding a meta tag. But I was wondering if the opposite is possible: telling facebook NOT to user a certain image as ...
2
votes
2answers
556 views

Sharing a common DAL between WPF, Silverlight, and ASP.NET

What is the best method/technology to sharing the same data access layer between WPF, Silverlight, and ASP.NET? I am using ADO.NET Entity framework, and was thinking of a creating a DAL using the ...
2
votes
1answer
413 views

Sharing a complex object between Python processes?

I have a fairly complex Python object that I need to share between multiple processes. I launch these processes using multiprocessing.Process. When I share an object with multiprocessing.Queue and ...
2
votes
2answers
475 views

PHP CMS file sharing with rating

I need to set up a community web site to allow people to share binary files in some specific binary format. Files will be visible to everyone. I want users to be able to vote and leave comments about ...
2
votes
3answers
181 views

What's the best way to share “session” information between 4 datacenters with 40 servers?

Currently our DNS routes the user to the correct datacenter and then we have a round-robin situation for the servers. We currently store the session information in the cookie but it's grown too large ...
2
votes
1answer
389 views

Why Facebook prompt_feed.php is causing browser window to resize itself

We use Facebook's prompt_feed.php in order to do sharing from a widget. When we popup a browser window with the sharing URL that uses prompt_feed.php it causes Safari (and in some cases also Firefox) ...

1 2 3 4 5 6