1
vote
1answer
47 views
Binary Java 7 for Mac
Is there any binary release of Java 7 (using the Mac/BSD-port project) anywhere? Some blogs (e.g. Building Java 7 on Mac OS X) have a detailed instructions to build the jdk from source, but I was …
0
votes
3answers
47 views
VisualStudio C++ how to make debuginfo reliable in releasemode
Hi!
I've got a little problem. my application runs without problems in Debug mode, but crashes in release mode. I can't track down the problem, because in release mode all the Debuginfo appears to be …
0
votes
1answer
40 views
NSThread object retained twice?
I have a class derived from NSThread:
@interface FSEventMonitorThread : NSThread {
FSEventStreamRef m_fseStreamRef;
CFRunLoopRef m_runLoop;
}
- (id) initWithStream:
…
2
votes
5answers
64 views
Objective-C + release Objects
I am using the following function in my application:
+(TeamTournamentLookUp *)getOpponentTeamTournamentLookUp:(int)tournamentId:(int)opponentTeamId
{
TeamTournamentLookUp *objOpponentTTL = nil;
…
0
votes
3answers
36 views
jQuery code behaves differently in Debug vs. Release mode
I am developing a website where I am using a tabs implementation with jQuery. In Debug mode, all runs fine, I spent the entire day developing it, and when I was about to deploy to the live site and I …
3
votes
5answers
127 views
Enhancements to programming languages that had to be withdrawn after release?
Are there examples of significant enhancements to major programming languages that were fully released and then found to be sufficiently flawed that they had to be withdrawn?
UPD @Jeff Foster has an …
0
votes
2answers
74 views
jQuery Highlight element on select option
I have a list of values in a drop down style select box e.g.
<select id="places">
<option>Italy</option>
<option>France</option>
<option>Germany</option>
…
12
votes
7answers
310 views
Is there anything exciting in perl 5.11?
Perl 5.11 is now released! Is there anything really exciting in this release, or is it mostly maintenance patches? (From what I've read so far, it appears to be a rollup of improvements we have …
6
votes
6answers
152 views
How to prove my stakeholder and manager my software works?
What do software engineers encounter after another stressfull release? Well, the first thing we encounter in our group are the bugs we have released out in the open. The biggest problem that we as …
4
votes
6answers
75 views
How do other development teams approach version numbers?
Our application is quite mature, and thus we are up to version 16. However, this can give the impression that the software is old and out of touch (how many commercial applications are there with a …
1
vote
2answers
40 views
What is the difference between release and iteration?
The title says What is the difference between release and iteration? Can you explain what the difference is?
0
votes
3answers
59 views
maven snapshot repositories
My project depends on a 3rd party library that only has snapshots in its maven repository (no releases, which seems strange, but that's how it is). Every time I do a full build (and clean my local .m2 …
0
votes
1answer
15 views
Code leaks memory, seems to be coming from ID3DXBuffer, unsure why..
I load a shader with the following:
ID3DXBuffer* errors = 0; ID3DXEffect
*effect = 0;
HR(D3DXCreateEffectFromFile(
gd3dDevice, L"Shader.fx", 0, 0,
…
0
votes
3answers
31 views
Checklist for releasing an open source library
Hi all,
I have been working on a web development library (for the CodeIgniter framework) that I soon hope to release.
This would be my first contribution ever, and I have never released an open …
0
votes
1answer
23 views
Perform a maven patch release
Is it possible to perform a patch release in maven? I would like to create a jar containing only one class which I have changed since the release.
