open

Unknown open() flag passed by execve()

When executing a bash script located on my FUSE filesystem, an open() call is made with these flags: debug,cpfsfuse.c(62),cpfs_fuse_open: path "/make.sh", flags 0100040 The flags (0100040) should correspond to those passed in parameter 2 of open(). The unknown flag originates from an execve() call: matt@stanley:~/cpfs/dir$ strace -f ....

Whats the best open source bayesian software for trouble shooting?

Hi I have seen www.dezide.com as a top of the line trouble shooting software based on bayesian networking. But I need an open source solution to develop further as this is not for a commercial project. What would you recommend? BR Morten ...

Finding Android source code

Are the Android APIs open source? If so, I want to see how they implemented the smoothscroll method for the ListView object (this is implemented in API level 8, but I want to build against an earlier API level). How would I go about finding this? ...

Android link to another package's function

I've got two android apps, one with a public void. How would the other app call this function? ...

How to get time it takes for an application to startup?

I am writing a C# application that needs to be able to tell how much time it takes for a certain application to open. I am using the Stopwatch class as my timer. Start time is easy since I set it exactly with the call to run the .exe. The problem is finding out how to time when the program is done opening. The only thing I could thin...

Free Unix Shell with open port ?

Hi,I'm in a restricted network,that way I'm looking for a free Unix shell with open port to use SSH tunnelling (remote port forwarding) and thanks. ...

open social applications

I want to create opensocial apps using Ning platform but dont know where to start. how to save data in mysqlusing PHP, how to create profile apps etc. can somebody help please. ...

How to transfer the NativeApplication instance to another NativeWindow

Not sure if my title accurately describes what I'm trying to do, but basically I've created a new NativeWindow as follows (using an example from the Adobe NativeWindow documentation http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/display/NativeWindow.html?filter_flex=4.1&filter_flashplayer=10.1&filter_air...

What is the best open source .NET CMS with a FORUM?

Hi First, there is a similar question on this but was asked 2 years ago, and I know that new players are in the arena now. We need a CSM with the following characteristics: Has Forum Module and is integrated with the Membership provider of the CMS (the don't want the user to login twice on CMS and on Forum) Free/Cheap (the final clie...

Open source or free web site customers data solution

Hi, I'm really not sure if that's the right place to ask it , but I'm so used to this site so i'll just give it a try. I'm interviewing many people for a certion mission, and i'm looking for a an easy way to organize the people according to some properties (age, origin , hobbies, education etc'...). I need a website which will allow me...

Open file from gridview within updatepanel, without warning

I want to open a PDF file after clicking a button within gridview, which is inside an updatepanel. Using Response.Write() etc. requires full postaback to send the HTTP headers for the file. I dont want to use a postback trigger on my gridview, so after going through some forums I decided to use javascript and the hidden iframe trick t...

Working on localhost but server returns “Failed to open stream: No such file or directory”

Hello to everyone, I'm a newbie that really needs help, been trying to make this php script work with no luck, when I'm running the site locally it works but after I move the files to the server Im getting the following error, hope someone can help me: Warning: include(/var/chroot/home/content/16/5976816/html/inc/header.php) [function.i...

How can I open a Windows CMD window for Perl and run a command?

Is there a way I can open a new cmd window and pass a variable and once completed close that window? I have found some info but not enough that I can get it to work. system('start "List Perl files" dir c:/dfd/dfdf.pl /B'); Opens window but does not run script. ...

Big vs Small Open Source Project, which is more useful to learn from?

I'm looking to help out in some open source projects, to learn from better developers, as well as add to my resume in areas where I'm lacking. I had a look through codePlex and I can see some quite popular projects, were I'd probably get to do very little, but look useful to the community, and some small projects which I think I could c...

Create a batch to open new URL in existing Internet Explorer window

How can i Create a batch (.bat,vbs,js) that can be run from command line in windows to open new URL in existing Internet Explorer window ...

XCode not opening files or projects

I am unable to open projects or files with XCode unless I explicitly do so by going to "File->Open...". If I double click a file or project from the Finder, XCode is launched (or given focus if already open) but it does not load my file or project. Same thing goes for the /usr/bin/open command. This only happens on one of my two developm...

Any recommendation to use a personalize openID invitation in a Website?

I want to use OpenId in my website but i want to personalize it in that way to the user can just login with FB Twitter Gmail and Hotmail with just a few step by step ...

Open source frameworks tools/frameworks/language

Hello, we are a software startup. We are planning to develop a CRM type application using open source technologies like PHP, RoR, MySQL. Can you pl suggest what open source tools/frameworks/language shall we consider? ...

Android Development: How To Automatically Add Linebreaks When Using setText()?

Hello, In my app is the ability to read a file. This works perfectly, but there's a problem. No line breaks or whatever they are called get added when I append the file's contents to my big EditText, so this: function hmm(){ echo 'Hello, PHP!'; } would turn into this: function hmm(){ echo 'Hello, PHP!'; } How can I stop this and m...

using a viewController to open another instance of the same viewController

I have a MasterViewController.h.m.xib (UIViewController) that is opening a TestDummy.h.m.xib (UIViewController) in the following way: TestDummy *controller = [[TestDummy alloc] initWithNibName:@"TestDummy" bundle:nil]; [scrollView addSubview:controller.view]; I have two buttons in TestDummy: (Open), (Close) and one label: (windowDepth...