share

Sharing Interface between different processes..

Currently I am working on a problem which is implemented as a combination of different modules. Each module is written in C# and is supposed to run as separate Process. I have an Interface I, and a class, Let's call it X, which implements this I. This class encapsulates information that is required by all the modules. Now what would be ...

Python - PHP Shared MySQL server connection info?

I have some MySQL database server information that needs to be shared between a Python backend and a PHP frontend. What is the best way to go about storing the information in a manner wherein it can be read easily by Python and PHP? I can always brute force it with a bunch of str.replace() calls in Python and hope it works if nobody ha...

Facebook How to Format HTML Page so that Share picks up an image

Hello! When I use facebook.com/share.php?u=mysite.com, what must I do in my index.html document so that it gets an image as well? Setting Title and META Description will populate the title and the description of the link. I don't know how to do that to show an image. (index.html has Flash in it, no images). Thank you! ...

Facebook Share - Logo images not showing up as thumbnails

Hi folks, I know this has been asked many times, yet I have not found an answer that seems to work. I am currently sharing a page with one or more images on it on Facebook. The link is shortened using bit.ly (not sure if this is important, but I thought i'd mention it anyway). All the images show up as thumbnails on Facebook, except th...

Facebook share displaying weird characters

I just added a facebook share icon to my website, when I hit the button the facebook popup displays weird special characters the character won't display here but it's a square with 00 over 97 for example instead of a single quote I tried changing the quote to a the special character ’ but this doesnt' work either also tried mes...

Twitter integration iPhone app?

Hello, I am looking for a simple method to allow the user to share their score using Twitter. Originally I just opened a Twitter share URL in Mobile Safari to make the Tweet, however I can't seem to find a valid Twitter share URL. What would you suggest? Thanks. ...

Opening a network shared folder with Java Desktop API

Hi, I'm working on an app that exports a file to a network folder specified on a drop down list using the Desktop API. File directory = new File("\\\\server\\XML\\Input"); Desktop desktop = null; if (Desktop.isDesktopSupported()) { desktop = Desktop.getDesktop(); } try { desktop.open(directory); ...

how to share a mp3 inline in facebook

Hello, I am trying to share a mp3 and allow people to send it via facebook using facebook share. I am linking directly to a MP3 for the URL in my setup. The issue is my nginx server is returning the mp3 only. So Facebook says here... The ideal way for you to connect video and media files to the share link is to make the URL in the li...

Facebook Share text alone?

is possible to write code(like any links or buttons) only for share text alone without any images & url's in facebook. thanks ...

Programmatically establish an SSL encrypted connection to a windows share

I'm trying to programatically make a connection to a windows share. So far, so good. I just use the WNetAddconnection2 API. Let's me pass userid, pwd, etc. Now I've been given the requirement that this connection be SSL. I can't find any information anywhere about being able to do this. WNetAddConnection2 certainly doesn't support ...

Sharing Audio over bluetooth

Hi, I want to write a function in my iPad App, which allows me to stream the music choosen on iPad to the connected Game-Interfaces (iPod, iPhone...) via bluetooth. Does anyone knows a simple solution or maybe wants to share some sample code? Thanks for help! ...

Perl: Threading with shared multi-dimensional hash

I am trying to share a multi-dimensional hash over multiple threads. This hash holds 2 connected key-pairs, I need to know if they are already connected, if they are not, I need to connect them, if not, there is no need to go to the database. use threads; use threads::shared; my %FLUobject2param : shared = (); #Start a new thread f...

How can I write a facebook app to share flash audio file ?

Hi, Is it possible to write a facebook app to post a .flv or .swf audio file to wall and get a audio player embeded in the wall(similar to a youtube video on wall has a play button to play the video) . The meta tags provided by facebook, work fine for .mp3 and not for .swf Thanks in advance. ...

Twitter and Javascript

I just came across something extremely annoying that took me ages to figure out. I was calling window.open('http://www.twitter.com/share?url=...&text=...','twitterShare','width=500,height=400') in a JS function for a SWF file to trigger and for the life of me the freakin' message wouldn't properly unencode hashtags and spaces (%23 an...

What is Mac's REAL marketshare ?

Hello all. This is my first post on the site. Quick intro: I operate a one-man shop where I design software for a fairly small niche in the financial services industry. I target Windows desktops exclusively and my development framework is .NET/WPF. I'm trying to decide whether or not it makes sense for me to port my flagship software ...

How long is Facebook caching the sharing thumbnails?

Hi guys, 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 displayed before my image is not displayed => it is cached somewhere on FB servers. Any ideas how to flush that cache or how long does it ta...

Codes in the FaceBook share URL's

What is the h=(some code) and/or ref=(some code) at the end of the url in the link of something shared on FaceBook? ie. If you click on an item that was shared by someone on their wall, the url it takes you to has this code at the end of it. What specifically is that identifying? ...

Share to Facebook, "your link could not be shared"

I'm adding the ability to share scores from my app using android's share intent: Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND); shareIntent.setType("text/plain"); shareIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "My Score"); shareIntent.putExtra(android.content.Intent.EXTRA_TEXT, "I scored "+score+" on "+...

Twitter Button Stopped Showing Count 0

Ok so the official Twitter Share button has stopped display the counter if the count is 0. I've fixed this before with the Facebook share button (wants 3 shares before it shows the counter), but can't seem to fix it with the twitter button. Has anyone had any luck overriding this and forcing the counter to show at all times? ...

how to share a database to different pc's for a java desktop application?

Hi experts, I am making an application which have to be used in different pc's, and it has to share the same database. I have no idea how to do it. I am using the java as programming language and mysql as database. Please help me to do this task... ...