Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
5answers
8k views

C fopen vs open

Is there any reason (other than syntactic ones) that you'd want to use FILE *fdopen(int fd, const char *mode); or FILE *fopen(const char *path, const char *mode); instead of int open(const ...
15
votes
10answers
13k views

In Perl, how can I read an entire file into a string?

So I'm working on a server where I can't install any modules whatsoever. Yes this makes my job difficult. To complete the rest of my script I need to do something that I had thought would be ...
14
votes
13answers
1k views

Open source Python project to contribute to

Until recently, I was a Linux Administrator for a company which went out of business. I don't need money so I don't plan to work for a while. With all this free time, I'd like to work on my ...
13
votes
1answer
123 views

Does the autodie-pragma have influence on the encoding?

Why do I get after the "autodie" a different output? #!/usr/bin/env perl use warnings; use 5.012; use utf8; use open ':encoding(utf-8)'; use open ':std'; open my $fh, '>', 'test.txt' or die $!; ...
13
votes
4answers
1k views

.Net Opposite of GraphicsPath.Widen()

I need the opposite of the GraphicsPath.Widen() method in .Net: public GraphicsPath Widen() The Widen() method does not accept a negative parameter, so I need the equivalent of an Inset method: ...
12
votes
6answers
4k views

Finding an Open Source Project to work on [closed]

I am looking for some direction on finding a good open source project to work on. I am experienced in Java and PHP and am currently learning C, however, I don't know if I am comfortable enough in it ...
11
votes
2answers
263 views

Where can I get an open source Radio driver and RIL for an android phone?

I am looking for a phone (preferably android) where I can use software to have full control over the cellular radio hardware. anyone know of such a device? preferably a popular device on the market :) ...
11
votes
3answers
1k views

How do I mock an open used in a with statement (using the Mock framework in Python)?

How do I test the following code with mocks (using mocks, the patch decorator and sentinels provided by Michael Foord's Mock framework): def testme(filepath): with open(filepath, 'r') as f: ...
10
votes
4answers
208 views

Opening multiple (an unspecified number) of files at once and ensuring they are correctly closed

I am aware that I can open multiple files with something like, with open('a', 'rb') as a, open('b', 'rb') as b: But I have a situation where I have a list of files to open and am wondering what the ...
9
votes
5answers
418 views

Should I open() and close() my SQL database constantly or leave it open?

I am creating an app that uses an SQL database for storing data. The way the app is designed it will be updated every 3 minutes or so with new data depending on user actions while the app is running. ...
9
votes
7answers
2k views

Internet Explorer calling window.onbeforeunload on window.open and AJAX calls

Ok, I have spent a while on this problem and this is what I have gathered: If you make an AJAX call in IE7 and you have a window.onbeforeunload function specified, it calls the onbeforeunload ...
9
votes
2answers
12k views

Open XML SDK 2.0 - how to update a cell in a spreadsheet?

I want to update a cell in a spreadsheet that is used by a chart, using the Open XML SDK 2.0 (CTP). All the code samples I have found insert new cells. I am struggling with retrieving the right ...
8
votes
2answers
1k views

Modify sources under Apache License 2.0

Say I am working on some application in my free time, with non-commercial purposes. Surfing around I find some sources from some developer that has created a parser for the type of data I am also ...
7
votes
1answer
337 views

Change read/write permissions on a file descriptor

I'm working on a linux C project and I'm having trouble working with file descriptors. I have an orphan file descriptor (the file was open()'d then unlink()'d but the fd is still good) that has ...
7
votes
3answers
277 views

How does the App Store website know if iTunes is installed?

As a user, I really love how the Apple App Store website on a browser can tell if I have iTunes installed or not and can act accordingly. For example, if I go to an App's page like "Remember the ...
6
votes
2answers
148 views

What is an operating system independent way to open file with associated program from C++?

What is an operating system independent way to open a file with associated program from C++? Is there a solution in Boost, or something like it? More specifically, something that would cover Windows, ...
6
votes
2answers
1k views

How are the O_SYNC and O_DIRECT flags in open(2) different/alike?

The use and effects of the O_SYNC and O_DIRECT flags is very confusing and appears to vary somewhat among platforms. From the Linux man page (see an example here), O_DIRECT provides synchronous I/O, ...
6
votes
2answers
145 views

When did the file mode in Perl's open become a separate argument?

Once upon a time, you opened files in Perl like so: open(FH, ">$filename"); At some point, for many good reasons including some very sticky ones involving filenames with leading spaces, this ...
6
votes
5answers
854 views

If Pentaho is Open Source, can I just use it? [closed]

I see that Pentaho wants to charge me for their software. How can I get to the underlying Open Source software for dashboards to see what it can do without having to deal with Pentaho marketing folks? ...
5
votes
3answers
212 views

Using hashlib to compute md5 digest of a file in python3

With python 2.7 the following code computes the mD5 hexdigest of the content of a file. (EDIT: well, not really as answers have shown, I just thought so). import hashlib def md5sum(filename): f ...
5
votes
2answers
292 views

Test if stdin has input for C++ (windows and/or linux)

I basically want to test if stdin has input (like if you echo and pipe it). I have found solutions that work, but they are ugly, and I like my solutions to be clean. On linux I use this: bool ...
5
votes
2answers
307 views

Should I keep a file open or should I open and close often?

Is it customary in such a case to open the file only once? #!/usr/bin/env perl use warnings; use 5.012; use autodie; my $file = 'my_file'; open my $fh, '>>', $file; say $fh "Begin"; close ...
5
votes
1answer
1k views

AppEngine Channel API - Best way to check if a channel is still open (server side)

I have built a social network/dating type application on the AppEngine and am currently in the process of adding a chat built on top of the Channel API. However, the problem that I have is that users ...
5
votes
7answers
211 views

What is Opening a file in C?

In C when we open a file what happens?? As I know that the contents of the file is not loaded in the memory when we open a file. It just sets the file descriptor ? So what is this file descriptor ...
5
votes
4answers
478 views

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 ...
5
votes
2answers
350 views

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 ...
5
votes
3answers
3k views

Facebook like button issue

We're having some trouble getting our like button to work. It seemed to work last week but suddenly it's stopped working. Basically when clicking "Like", we get an error saying: You failed to ...
5
votes
3answers
170 views

when does a software become “proprietary”?

say a company is using Open source libraries, or programs, and packaging it into a proprietary solution. or perhaps, the engineers have copy pasted certain section of those open source libraries and ...
5
votes
7answers
2k views

What's the way to implement Save / Load functionality?

I'm trying to implement a Load / Save function for a Windows Forms applications. I've got following components: A tree view A couple of list views A couple of text boxes A couple of objects (which ...
4
votes
2answers
55 views

vim add files opened via CLI to :e history

In Vim by default when you enter :e and hit the up arrow, it shows a list of files previously opened using the :e command. Is there a way to add files that I've opened from the terminal via vim ...
4
votes
1answer
49 views

php open file performance

I have a question regarding php and opening files PHP has more than one function to open files: file_get_contents() fopen() file() My question is related to performance. On my server I have to ...
4
votes
1answer
78 views

how to use python closing context manager

The standard library open function works both as a function: f = open('file.txt') print(type(f)) <type 'file'> or as a context manager: with open('file.txt') as f: print(type(f)) ...
4
votes
2answers
88 views

How to open a new instance of default browser in Python when the default is Chrome

I have been looking for a way to open a new default browser window from inside Python code. According to the documentation webbrowser.open_new(url) Should do that. Unfortunately in case Chrome is ...
4
votes
4answers
147 views

In Perl, how do you tell if a pipe opened process has terminated?

Assuming a handle created with the following code: use IO::File; my $fh = IO::File->new; my $pid = $fh->open('some_long_running_proc |') or die $!; $fh->autoflush(1); $fh->blocking(0); ...
4
votes
1answer
630 views

Python mmap 'Permission denied' on Linux

I have a really large file I'm trying to open with mmap and its giving me permission denied. I've tried different flags and modes to the os.open but its just not working for me. What am I doing ...
4
votes
2answers
94 views

.NET: How to open a file with an existing instance?

I have an MDI file viewer. That is, my program can open multiple files in a single instance. By the way, my application is not a single instance application, so the users can open as many instances as ...
4
votes
3answers
3k views

Android SQLiteOpenHelper cannot open database file

I know that subject was disscussed before. But i cant find solution to my problem so im going to ask it one more time. I have problem creating database. Ive copied implementation of SQLiteOpenHelper: ...
4
votes
1answer
99 views

Opening a file in text mode can lead to data loss in Python: why?

The documentation for codecs.open() mentions that Files are always opened in binary mode, even if no binary mode was specified. This is done to avoid data loss due to encodings using 8-bit values. ...
4
votes
2answers
532 views

Open Source Alternative to Drop Box

Is there an open source alternative to DropBox. We'd like to offer a service for our user base (30,000+ users) to share files with each other similar to DropBox, but have a requirement to host this ...
4
votes
3answers
736 views

unbuffered I/O in Linux

I'm writing lots and lots of data that will not be read again for weeks - as my program runs the amount of free memory on the machine (displayed with 'free' or 'top') drops very quickly, the amount ...
4
votes
1answer
637 views

open O_CREAT | O_EXCL on NFS in Linux?

When in the Linux 2.6 kernel and in NFSv3 did open("fname", O_CREAT|O_EXCL) became valid? The current canonical open(2) system call documentation ...
4
votes
1answer
362 views

Why won't my jQuery UI dialog show up when it's div is nested?

I'm trying to show a dialog (div) that's inside another div. This way, I can easily keep all my dialogs together. The page looks something like this: <div id="bookshelf"> <div ...
4
votes
6answers
3k views

Using the open() system call

I'm writing a program that writes output to a file. If this file doesn't exist, I want to create it. Currently, I'm using the following flags when calling open: O_WRONLY | O_CREATE However, when ...
4
votes
3answers
1k views

How can I get forking pipes to work in Perl on Windows?

I'm trying to port a Perl script over from Unix to Windows but am having a near impossible time getting it to work due to the unsupported forking pipes in the open function. Here's the code: sub ...
3
votes
1answer
19 views

Batch to open a folder within a user's folder(c:\users\usernamehere\my documents)?

Sorry that this title might be a bit unclear. But I am looking for a code that will allow whatever user that uses my batch file to get to their my documents. The idea is that they would type 3, press ...
3
votes
5answers
48 views

How can I prevent an exception when I cancel an openfiledialog?

My program has a button which when clicked opens an openfiledialog to choose a picture: private string ChoosePicture() { fDialog.Title = "Select Picture"; ...
3
votes
1answer
68 views

Is it possible to make a open source app for facebook?

My question is very simple and it's in the title: "Is it possible to make a open source app for Facebook?" If so, how do you manage things in the app which are supposed to be private (like the api_id ...
3
votes
4answers
111 views

Python returns no such file or directory when opening a file it has just found using re.search

I am trying to open a specific file in many folders, with the name ending '.alleles.txt'. I search for the file and it is found, but then it returns: IOError: [Errno 2] No such file or directory: ...
3
votes
1answer
88 views

How to stop Windows from converting “\r\n” to “\n” when reading a text file in C?

I have a normal text file that lines end with normal \r\n. However, when using 'open' and 'read', Windows convert all the \r\n to \n. I know this means I have to open the file in binary mode but the ...
3
votes
3answers
676 views

Add to Timeline vs Login

I've got or site working with timeline using the new javascript SDK sample code but we'd like to move this into the natural flow of the script for authenticated users [so they don't have to actively ...

1 2 3 4 5 13