|
How good to use 3 point technique for risk assessment.
Started by jazzrai on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Also, check out the ACM's one minute risk assessment tool which... .
Is this what you mean? http://www.aof.mod.uk/aofcontent/tactical/risk/content/tpe.htm?zoom_highlight=simulation
If so, it looks like that site's a pretty good overview and analysis .
|
|
I had scanned a page of a book and saved it as a picture. How to convert that image into real text. Is there any technique for that? . Any help will be highly appreciated.
Started by Rajasekar on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The technique is called optical character recognition (OCR replied the technique is called OCR, ....
The technique is called OCR http://en.wikipedia.org/wiki/Optical_character_recognition
A google for PHP OCR gives you a few results.
|
|
Looking for the best approach for a non-image CSS Drop Shadow technique.
I have a popup that I would like to add a shadow to.
Bonus question:
Can it work with:
-moz-border-radius -webkit-border-radius
Started by Phill Pafford on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can use box-shadow and -webkit-box-shadow, see:
http://net.tutsplus....
It creates a few styled div to simulate the shadow .
I can't tell whether it's the best approach, but you might want to check out the ASP.NET AjaxControlToolkit DropShadow extender .
|
Ask your Facebook Friends
|
What they do on this demo is exactly what i wanna do.
http://www.lightstreamer.com/demo/RoundTripDemo/
i wonder what comet technique they are using.
it cant be iframe cause on Firefox i can open two tabs with same link. with iframe u cant do that. and...
Started by noname on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
In my blog posts you'll find everything.
It was the only way of doing implemented a Full Duplex Ajax technique, very similar to Comet.
This is a rather heavyweight and obtrusive technique.
To the caller.
|
|
What's the best technique for handling US Dollar calculations in Perl?
Especially: the following needs to work:
$balance = 10; $payment = $balance / 3; # Each payment should be 3.33. How best to round amount? $balance -= $payment * 3; # assert: $balance...
Started by Larry K on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
One common technique is to do all calculations in integer cents , then convert to dollars and cents.
|
|
Is css-sprite good technique? I read about its pros at http://spriteme.org/ and have also I seen a lot of questions about css sprites here in stackoverflow.
What are its cons?
Will it work in all browsers as claimed in their site?
Started by rajakvk on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
You can reduce the number of HTTP requests and it is a page optimization technique.
Its a great technique, but you have to be real carefull as how you do it so it works correctly technique.
|
|
Is there any measurement technique that takes into consideration not only how many artifacts were generated (i.e. lines of code, use cases, etc), but also considers the quality and effort involved?
What is a good measurement that we can deploy that will...
Started by Luis Soeiro on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
Classical reasons why objective.
Objective" assessment technique can be gamed too, and rather more easily.
|
|
I have been coding for a while now and am confortable with a few programming languages but now feel that I need to improve my problem solving or program design technique.
What skills do I need have to be able to design a program as a solution to a problem...
Started by Ali on
, 21 posts
by 20 people.
Answer Snippets (Read the full thread at stackoverflow):
For problem solving technique, look at how other people have solved problems.
Asking questions.
|
|
HI, I am doing ERP solution in C#(2.0) windows application and SQL2005 Database.The network application communicate through Database.I used normal technique for user login and logout, keeping a status bit.My problem is that when my application interrupted...
Started by Anoop on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Then when you go to perform an operation, ....
How about keeping track of user logins by maintaining a session for each login? The quick-and-dirty solution is to then offer an option to have them login from a "new location" and invalidate the old session .
|
|
I am using the following technique to cache some calls to my database - this function lives in my repository.
Public Shared Function GetByStoreURL(ByVal StoreURL As String) As Model.Partner Dim key As String = StoreURL If Current.Cache(key) Is Nothing...
Started by Max Fraser on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The only problem.
Yes, it is widely used.
This technique is know as lazy initialization .
|