|
First off.... they've had this since 4/09. Second off... the item in question only went for 16.50. They left feedback for others since 4/09 and prior to today.... and I know this ring is signed, and I know it is sterling. I'm not so miffed at the asking...
Started by realitycheck-7 on
, 24 posts
by 15 people.
Answer Snippets (Read the full thread at ebay):
how she was able to review her other purchases (after mine) and leave feedback throughout the month not respond to her/him untill after I talked to both PayPal & ebay to see what they think or how to proceed is moot at this....
|
|
What is the best way to run your suite of unit tests after each commit?
I'm particularly interested in the case that you do all of your features/changes in branches and keep your trunk stable.
My source control is SVN and I use tortoise SVN as my client...
Started by Brian R. Bondy on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
This will monitor svn....
Http://cruisecontrol.sourceforge.net/
You need a Continuous Integration Server like CruiseControl.
Check out Cruise Control - it can run the unit tests before deploying .
I would setup an automated build/deployment process as well.
|
|
What is the best "how to" site to learn how to program for iPhone?
Answer Snippets (Read the full thread at stackoverflow):
There is a very nice compilation here on SO:
What are the best Cocoa-Touch/iPhone programming blogs?
Here is a well written article on "Cocoa is my girlfriend" that describes how to create a small an initial grasp of how to do things....
|
Ask your Facebook Friends
|
What are the first steps to getting back into programming after many years of tech support?
Started by davidsandey on
, 15 posts
by 15 people.
Answer Snippets (Read the full thread at stackoverflow):
You may face some....
After you start to get some confidence pick a reasonably small understandable open source The Dip .
What I found best both times was to pull out an old project (personal legs back.
Years, so I know how you feel.
|
|
I am able to program in Lisp, Python, Ruby, JavaScript and Prolog and I have been willing to learn how to program in C for a very long time now. I know the syntax and basic concepts (I've actually read Kernigham & Ritchie), but I've never been able to...
Started by Ryszard Szopa on
, 19 posts
by 19 people.
Answer Snippets (Read the full thread at stackoverflow):
Check out ....
It will help you understand (a little bit) how compilers optimise for certain that interests you).
To learn how the linker works, I'd recommend having a look at the man and bitwise manipulation.
Have read K&R, that is good.
|
|
With ActionScript3 for Flash Player 9+, what is the nicest way to call a "once-off" function after exactly one frame?
I am aware of the Timer class and it's uses, and the callLater method on Flex UIComponents (which, glancing through the source, doesn...
Started by Darscan on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The best approach.
One way would be to see how many frames per second your project is set for and let the setTimeout nature of the Flash Player so you will not find much to help you with your problem.
|
|
I need to build a little webapp but I'm not sure what is the best thing to do.
A person that subscribe the petition is signing an email sent to X . This will be also saved to a db in order to show online who subscribed.
The idea is to have a standard ...
Started by Andrea Ambu on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
That is already saturating the world to no good purpose, and you're asking how best to do it? I would read.
|
|
What is the best way to exit out of a loop as close to 30ms as possible in C++. Polling boost:microsec_clock ? Polling QTime ? Something else?
Something like:
A = now; for (blah; blah; blah) { Blah(); if (now - A > 30000) break; }
It should work on...
Started by Neil G on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
The problem is the time-slicing algorithm and how close to the end of your time slice you are on a multi expiration, even on a 2GHz P4, couldn't do updates any faster than a 300ms interval, no matter how low) in a loop like the one ....
|
|
I have a class like this
public class HistoryEntry { DateTime Date{ get; protected set; } HistoryType EntryType { get; protected set; } } public enum HistoryType { Cancelled, Cleared, Redeemed, Refunded }
I have an unordered list of these History Entries...
Started by Brandon on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
How about something like this:
private bool.
Msdn.microsoft.com/en-us/library/efasdh0s.aspx.
|
|
I'm wondering what would be the smoothest way to change an image on a web page after a user action. E.g Say a listbox contains a list of book titles. each time a user clicks on a title I want the book cover associated with that title to display in a panel...
Started by TonyNeallon on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The bit on how to stream the image back from the server, but thats pretty straight-forward..
|