I am looking for free and/or open source requirements management tools. Does anyone have any experience with these tools and can recommend one or two? Thanks.
For some machines this works, for some it doesn't.
Xvfb :99 -screen 0 1280x1024x32
However, on most machines this works:
Xvfb :99 -screen 0 1280x1024x24
What is the secret ingredient to getting Xvfb working with 32 bit color?
I'm using the Dr. Racket development environment and the language definition #lang scheme to do work for a course. However, I'm not sure how to best use this tool for debugging. I would like to be able to execute a function and step through it, observing the values of different functions at various points in execution.
Is this possible? If not,…
I came across a function today that made me stop and think. I can't think of a good reason to do it:
sub replace_string {
my $string = shift;
my $regex = shift;
my $replace = shift;
$string =~ s/$regex/$replace/gi;
return $string;
}
The only possible value I can see to this is that it gives you…
It appears that the NetBeans UML plugin has been discontinued, as per a discussion on the NetBeans forums. This was a great, free tool with nice model-code and code-model generation.
There are a number of other UML NetBeans plugins out there. However, I've never used any of them. Any suggestions?
I am trying to write a tokenizer for Mustache in Perl. I can easily handle most of the tokens like this:
#!/usr/bin/perl
use strict;
use warnings;
my $comment = qr/ \G \{\{ ! (?<comment> .+? ) }} /xs;
my $variable = qr/ \G \{\{ (?<variable> .+? ) }} /xs;
my $text = qr/ \G …
I have a UITableView and when I build it only two rows will be displayed. Each section has more than two cells to be displayed, I am confused since they are all done the same?`#import #import "Store.h"
import "VideoViewController.h"
@implementation Store
@synthesize listData;
// Implement viewDidLoad to do additional setup after…
The first time I ever used it was at my current job. Among my coworkers, the feelings toward it for usability are mixed. The other developer doesn't really care one way or the other, as long as Office does everything he needs it to do when writing reports. The top manager likes it because it feels natural, and I feel the same way.…
Hi All,
My first post here, so i hope this is the right area. I am currently trying to compare 2 recordsets, one of which has come from an Excel named range, and the other from a table in the Access database. The code for each is:
Set existingUserIDs = db.OpenRecordset("SELECT Username FROM UserData")
Set IDsToImport =…
This is more to satisfy my curiousity than anything else, but what languages have the best (or worst) documentation and support communities (including IRC, mailing lists, USENET groups, websites, forums, etc)?
If a string in Perl 5 passes looks_like_number, it might as well be a number. For instance,
my $s = "10" + 5;
results in $s being assigned 15.
Are there any cases where a string does not behave like it's numeric equivalent would have?
I'm currently looking at Bugzilla and Trac, as they seem to be the most popular (and I'm hoping that also means if there are any problems, it will be easier to get help), but I'm curious what solutions you use or have used and what your thoughts are.
I'm currently leaning toward Trac, as it's Wiki functionality can be…
I'm aware that the old Django messages framework is deprecated, but I still would like to know the answer to this.
When I go to a certain url to my broswer, a message is created, I am redirected to a different page, and I see the message correctly displayed by my template.
When the test client goes to the same url,…
This is for a homework assignment. I just plain don't understand how to do it.
The instructions for this particular question is:
List the branch name for all branches that have at least one
book that has at least 4 copies on hand.
Where the tables in question are:
Branch:
BranchName | BranchId
Henry…
Introducing the Native Client SDK
Henry Bridge, product manager for Native Client introduces the developer preview of Native Client's sdk. For more information go to code.google.com
From:
GoogleDevelopers
Views:
5
0
ratings
Time:
05:00
More in
Science & Technology
Really Simple Syndication or RSS, is a valuable way to keep up with new information on interesting websites that you visit often. RSS uses a special XML code that constantly checks for updates or new... [Author: Henry McCody - Computers and Internet - June 15, 2010]
Hi all,
I have an application in which I'm doing some custom drawing, a bunch of lines on a gradient background, like so (ignore the text, they're just UILabels):
At the moment, that's all done by starting a new CGContext, drawing stuff into it with CGContextDrawLinearGradient and CGContextStrokePath, then…
I used to have DevPartner Profiler Community Edition installed on my machine, which was free to use indefinitely and was compatible with Visual Studio 2003.
After I have rebuild my machine and downloaded a newer version (version 8.1) of the software, it turns out it is actually a 45 day trial eventhough it…
I am creating a library which contains an API for setting the current location based off some value collected by the GPS. I want to store this location in my class and later, change the behavior of my library if it is set.
What I had in mind was:
@interface myLib
{
@property (nonatomic, retain)…
Please check out the comment field at the bottom
on http://tinyurl.com/3xow97t
in Firefox - it works pretty well - the red warning gets added if empty
and the submit gets disabled - once there is text inside, the submit gets re-enabled.
the problem i have now, it does not work in IE.
i really…
Alright, this problem is a little complicated, so bear with me.
I have a table full of data. One of the table columns is an EntryDate. There can be multiple entries per day. However, I want to select all rows that are the latest entry on their respective days, and I want to select all the…
I'm used to setting up CF9 (Dev edition) on my Windows using Apache. I would like to try using IIS7 that comes with Win7 Pro. What are the steps to set it up so that I can have:
www.siteA.dev
www.siteB.dev
Both of these point to 127.0.0.1 via windows host file. I would like siteA.dev…
In CF9 doc: Defining components and functions in CFScript, it says:
/**
*Comment text, treated as a hint.
*Set metadata, including, optionally, attributes, in the last entries
*in the comment block, as follows:
*@metadataName metadataValue
...
*/
access returnType function…
How would I declare this code in the header file (.h) in iPhone SDK?
(void) save {
UIGraphicsBeginImageContext(self.view.frame.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage…