Deployment Strategies [closed] - deployment

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
i need to evaluate Software Deployment Strategies but literature is lacking. So i thought i could ask you which Strategies you know / use so that i can pick them up and evaluate them.
Thank you for your help

Are you sure you want a strategy? Deployment is more tactically and operational driven than strategic. From a software quality point of view, early feedback is seen as important and is driving towards an ASAP strategy. Take a look at the work of Kent Beck and google on lean startups. A thought experiment. Depending on your capital situation, market and competitors, you might prefer an ALAP strategy. But most companies are not Apple.

Related

Mongodb server specs [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
May i ask what is the best server specs for mongodb?
With initial request of 5k - 10k read / writes.
I don't have any idea with this please help me.
Thanks In Advance!
A normal configuration desktop should be able to handle this requirement. But may not be recommended for the production deployment.
But 10Gen, the mongodb company recommends $7K - $10K range boxes for optimal performance (in their free course offered a month ago). You can watch 9th video of playlist 7 about MongoDB DBA Tutorials or Hardware Requirements.
Again it varies based on different facts and you can take some tips from these videos to move forward.

Facebook development [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I would lile to develop interactions with facebook. I see there are a lot of questions on the subject but I have no idea where to start. Could someone kindly point me to the right direction?
Thanks
I think the question is a reasonable one; much of the documentation is oriented to somebody who is already up to their eyeballs in Facebook integration.
The tutorials are not bad. E.g. if you have an iPad/iPhone and a web server, start with http://developers.facebook.com/docs/guides/mobile/web/ and go slowly through it. Even there you will find that it isn't newbie-friendly, but if you can successfully get a few examples going it may get your confidence up, and you can try to navigate something more complex.
Lots of great resources here including a getting started section. Good luck!

Disable ipad fully [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Can we disable the ipad fully? I have heard that its not possible. I have searched for it and it shows that the above cannot be done and if its done then the app will be rejected. But still for an accurate answer i'm posting this. Can any one provide me with the correct response?
No, you cannot do this without rooting the iPad (thereby invalidating its warrantee) and installing what most users would consider malware. (You may well have a reasonable use case — loaning them out or something — I'm just saying, that's how most users would see it.)

Confused about the animation classes~ [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Today I started to learn iPhone simple animations, but I was totally Confused about so many animations ,now I have know some like CAAnimation, CATransaction and so on~ how can I distinguish them or if there are some documents about them to help me know how to use these class and the different effects among them;
I strongly recommend to read at first Core Animation Programming Guide. It describes all basic classes, provided examples and link to sample sources.

What's the technology behind Skype's anit-shake video recording? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Skype added an anti-shake feature in it's video conference app on iPhone. How can that be done?
This is quite a complicated thing to pull off, but it's probably a combination of some powerful blur detection/removal algorithms, and the gyroscope. I would start by looking into how to detect motion with the iPhone, and see what kind of results you can get with that. If it's not enough, start looking into shift/blur direction detection algorithms. This is not a trivial problem, but is something that you could probably accomplish given enough time. Hope that Helps!