|
|
-
|
|
Today I just read article about cost of try..catch blocks..
If the code didn't raise any exception, there is not much difference in performance, whether you use try..catch blocks or not.
But if the code raise any exception, to throw exception, it ......
|
|
-
|
|
Run this code and see the pattern matching in the result
[code]select
987654321987654321987654321987654321*3.0,
987654321987654321987654321987654321*9.0
[/code]......
|
|
-
|
|
Today I just help my kid's to learn tables. I lean new technique for learn nine table like
Now Hold out both of your hands with palms facing away from you.Numbers your fingers from 1 to 10 from left to right. Make sure you know the number correspondi......
|
|
-
|
|
This is quite a generic tip.
Now and then in a developper's lifetime, he faces annoying bugs he eventually found to be related to some filenames' cases.
The last time it happend to me was an hour ago after I had deployed an aspx website and tried to......
|
|
-
|
|
Just Learned from Niladri Biswas blog that, ORACLE's CONCAT() function only takes 2 arguments, So, it means we can't concatenate 3 strings in a function
call. We should use Nested calls of CONCAT() function to achieve the same. Remember in SQL Server D......
|
|
-
10 Liked
| 11 Learned
| 0 Comments
|
|
C# team members Shon Katzenberger, Scott Wiltamuth, Todd Proebsting, Erik Meijer, Peter Hallam, Anders Hejlsberg, and Peter Sollich were awarded a Technical Recognition Award for Outstanding Technical Achievement for their work on the C# language. This ......
|
|
-
20 Liked
| 25 Learned
| 13 Comments
|
|
Recently read an article, which explains the surprising trick to reveal the folder which has all system management shortcuts.
1. Create a new folder in any of drives.
2. Rename the folder with the text "GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}......
|
|
-
|
|
Suppose if you want to visit www.beyondrelational.com. instead of typing each character, just type beyondrelational and press CTRL+ENTER to invoke the website. This works in IE and Firefox......
|
|
-
|
|
In the case of linear search, it start from beginning and look every element. For example if a book has 300 pages, and if we are searching for page 151 then it will start from start search from page 1 to 151. If it finds Page 151, then it will return a......
|
|
-
|
|
yepnope is an asynchronous conditional resource loader that's super-fast, and allows you to load only the scripts that your users need
There are only a handful of things to know about yepnope. There are only 3 functions available to you and there's......
|
|