|
Here's the setup:
My coworker has a Fedora x64_86 machine with a gcc 4.3.3 cross compiler (from buildroot). I have an Ubuntu 9.04 x64_86 machine with the same cross compiler.
My coworker built an a library + test app that works on a test machine, I compiled...
Started by EightyEight on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
What arch is your target (the test machine)?
Are you using the distribution provided compilers? They usually have a quite large set of patches applied to gcc, for example on gentoo there are about 20 patches, fedora and ubuntu won't be that different.... .
|
|
I have a list of jar files, all containing slightly different versions of the same system.
I want to execute a set of test cases on each jar file while being able to obtain the results for each jar (via RunListener or something like that).
I am a bit ...
Started by Romain on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you're using Eclipse JUnit integration, just create N run configurations, in each one in... .
If the jars maintain the same interface, then all you have to do is run each test with a slighly different classpath - each time with jars from another version .
|
|
I have a series of movieclips containing both bitmaps and text. After applying some 3d transformations and moving in 3d space, my text and bitmaps are slightly blurred. This is AFTER I reset all the 3d coordinates (ie z=0, rotationX=0, rotationY=0) Has...
Started by eco_bach on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You need to remove all 3d transformations by applying a new transfrom.matrix
var tempMatrix:Matrix = new Matrix(); this.transform.matrix = tempMatrix;
You need to make sure you set the... .
Looking up another post on 3d issues and came across the solution .
|
Ask your Facebook Friends
|
Hi, I have a PC running two Nvidia 8500 GTs in SLI mode and I am trying to use my TV in dual mode. When I switch the TV to PC the screen is nearly centered with a slight offset. All resolutions are effected from 800x600 all the way up to the TVs native...
Answer Snippets (Read the full thread at superuser):
If you have haven't figured this out yet what you need to do is go into the TV's menu and go down to the screen settings on the left hand menu and then PC SETTINGS in larger right side menu, make sure you select wide mode normal, and and then use the ... .
|
|
Hi all,
I'm looking for a C++ container class, that's a lot like a multimap, but slightly different. The container would store pairs of strings. But when I retrieve items from the container using key K, I want to find all the items where K begins with...
Started by Rocketmagnet on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
So following your example with:
"abcde", "hello" "abc", "Hi" "abcqz....
Your algorithm would be O(m) for both lookups and insertion, where m is the length of a string .
Basically you have a tree with 1 node per unique character .
I would suggest using a trie.
|
|
Wolfman7421 Post subject: Re: Slight pull and slight juddering - serious or not? Posted: Sat Apr 09, 2011 1:18 pm
Joined: Sat Jan 29, 2011 8:28 pm
Posts: 2430
Has thanked: 29 time
Have thanks: 93 time If it was happening all the time, the judder might...
Answer Snippets (Read the full thread at talbotoc):
Worlfman
Answers -No evidence of the slight juddering whne breaking - does that help narrow down.
|
|
One of my applications is a public website, the other is an intranet. The public website runs using a limited security user that must access a certain table through a view, whereas the intranet can access the table itself.
This seems like it would be ...
Started by cbp on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I also don't think that two hbm files would work for the same name, as it would be unable to distinguish between the two, you... .
Although this is perhaps not the most helpful answer to your problem, I don't believe that this is possible in a mapping file .
|
|
Hi all,
Here's the use case: A user clicks on a link that opens a window displaying the contents of a text log. Easy enough. But is there a way of using POST, to open that text log to a certain location (i.e., search for a particular timestamp given in...
Started by ImSleeping on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Since you can't modify the file, the only way would be to wrap it in a <frame> or an <iframe>... .
If you could put some tags around the file's text, then you could probably insert some javascript that would scroll the window after loading it .
|
|
Hello,
I have a table which has the following
id timestamp 1 1247046037 4 1247047437 5 1247047438 6 1247048738
Now I want to return all those ids which are 3 minutes apart from the previous id. In the above example it should return 1,4,6.
How should I...
Started by Alec Smart on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
This should do what you need
select t1.id from mytable as t1 left join mytable as t2 on t1.id = (t2.id + 1) where t2.id is null or (t1.timestamp - 180) > t2.timestamp
If the... .
You are not going to be able to do this without joins, as far as I can tell .
|
|
Hi,
I have a button that when clicked, gets the row in the table that was clicked on.
So I have:
$("#someId").remove();
I want to highlight the row that is being deleted, and fade it out (it is being deleted).
Is there a way to do this with jQuery? I ...
Started by mrblah on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The highlight part, I don't know, but the fade out part:
$("someId").fadeOut(1000,function() { $(this).remove(); });
Which does a callback: http://docs.jquery.com/Effects/fadeOut
If you are trying to change the color of the row without any color transition... .
|