
naveenbhat.in
Crazy CodingIts a blog sharing and providing with information on web developing using languages C#, jscript, jquery, SQL, Visual Studio and .Net
http://www.naveenbhat.in/
Its a blog sharing and providing with information on web developing using languages C#, jscript, jquery, SQL, Visual Studio and .Net
http://www.naveenbhat.in/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Saturday
LOAD TIME
0.5 seconds
16x16
PAGES IN
THIS WEBSITE
16
SSL
EXTERNAL LINKS
1
SITE IP
172.217.6.83
LOAD TIME
0.453 sec
SCORE
6.2
Crazy Coding | naveenbhat.in Reviews
https://naveenbhat.in
Its a blog sharing and providing with information on web developing using languages C#, jscript, jquery, SQL, Visual Studio and .Net
Crazy Coding: June 2012
http://www.naveenbhat.in/2012_06_01_archive.html
By a lazy guy! Friday, June 15, 2012. Translator Extension for Chrome. Today I've published my first chrome extension called Translator. I'm so exited to say this! Few words about this:. This is very simple and user-friendly extension. It uses Google's translation service( http:/ translate.google.com/. For your great work ). It supports around 64 languages. Google is still working on it to improve the current supporting languages and add few more languages. How to use this extension? Posted by Naveen Bhat.
Crazy Coding: July 2013
http://www.naveenbhat.in/2013_07_01_archive.html
By a lazy guy! Tuesday, July 30, 2013. MVC 4 - WCF - Add Service Reference Generates Blank Proxy. After a long time I created a WCF Service with ws2007HttpBinding which has a complex data model (with inheritance involved). I created the service as usual with the well known configuration and hoping it to work. I just run the application and it ran without any error. Bingo! Wow great, I created a service in single go! Need to wake up now. Started to trace to identify what went wrong:. First step I did is c...
Crazy Coding: Order of Javascript Execution
http://www.naveenbhat.in/2012/10/order-of-javascript-execution.html
By a lazy guy! Tuesday, October 30, 2012. Order of Javascript Execution. In an ASP.Net MVC application, I had a tab control where the tab click is disabled using following code:. Function () { $("#tabs").tabs({ select: function (event, ui) { if (enableTabSelection) { enableTabSelection = false; return true; } return false; } }); });. Is a flag which is used to enable the tab selection temporarily. On some javascript function, I was selecting a particular tab like this:. What was wrong with this code?
Crazy Coding: Directory Security On Webservice with Windows Authentication
http://www.naveenbhat.in/2012/06/directory-security-on-webservice-with.html
By a lazy guy! Tuesday, June 5, 2012. Directory Security On Webservice with Windows Authentication. There is one folder on the root of a webservice application which contains some. Files These files should be able to browse only for the authenticated users. The normal solution for this is to put a config file(Web.config) in that directory with these configurations:. Configuration system.web authorization deny users="? Authorization /system.web /configuration. But this works only for the file types such as.
Crazy Coding: Tips and Tricks of Exception Handling in .Net - Part 2
http://www.naveenbhat.in/2013/02/tips-and-tricks-of-exception-handling_21.html
By a lazy guy! Thursday, February 21, 2013. Tips and Tricks of Exception Handling in .Net - Part 2. This is the continuation of my article Tips and Tricks of Exception Handling in .Net - Part 1. Usually, we write code to recover from an exception in catch block. Now what if the catch block itself throws an exception? Public static void Test() { / Force the code in the finally to be eagerly prepared RuntimeHelpers.PrepareConstrainedRegions(); try { Console.WriteLine("In try"); } finally { / MyType...When ...
TOTAL PAGES IN THIS WEBSITE
16
45 Useful JavaScript Tips, Tricks and Best Practices - Modern Web
http://modernweb.com/2013/12/23/45-useful-javascript-tips-tricks-and-best-practices
45 Useful JavaScript Tips, Tricks and Best Practices. 45 Useful JavaScript Tips, Tricks and Best Practices. As you know, JavaScript is the number one programming language in the world, the language of the web, of mobile hybrid apps (like PhoneGap. Of the server side (like NodeJS. The developers who master JavaScript and write organized and performant code have become the most sought after in the job market. 1 – Don’t forget. Keyword when assigning a variable’s value for the first time. 2 – use. 10] = = 1...
TOTAL LINKS TO THIS WEBSITE
1
NAVEEN BHANDARI
New India
These are exciting times to be in India, an India that is on the move and above all to be an Indian. Sep 8, 2007. The Israel Lobby in the U.S. Here is an interesting and insightful article from Stratfor on the the Israel Lobby in U.S. This one, if true, will put to rest some popular myths about the "most powerful" lobby in U.S. There are, however, two important questions. The first is whether this is in any way unique. Is a strong Israel lobby an unprecedented intrusion into foreign policy? The key quest...
NAVEEN BHARAT
A great night’s sleep starts with a mattress that can both support the body and relieve pressure where it is needed most. Spring Air Back Supporter mattresses do just that, with patented designs and innovations that are unmatched by any other bedding company. D'Decor Bed Spreads. When you open your home to luxurious decor from the world's third-largest producers of curtain and upholstery fabrics, it shouldn't surprise you to find yourself in the midst of magnificence. Naveen Bharat is a unique brand evol...
Naveen Bhardwaj | A directory of wonderful things
A directory of wonderful things. November 14, 2013. Comments No Comments on JavaScript Timer with Start/Pause/Stop Button. JavaScript Timer with Start/Pause/Stop Button. Timer with Start/Pause/Stop Button. JavaScript Timer with Start/Pause/Stop Button. HoursLabel = document.getElementById(. MinutesLabel = document.getElementById(. SecondsLabel = document.getElementById(. TotalTime = document.getElementById(. TotalSeconds = 0;. TotalMinutes = 0;. TotalHours = 0;. TotalMills = 0;. TimerOn = 1) {. Create AS...
iDentity7.0
Saturday, February 4, 2012. Friday, 21 October 2011. Ctober 20th 2011 marked the beginning of Bangalore Metro rail service, Namma Metro. ನಮ್ಮ ಮೆಟ್ರೊ, ಬೇಗ ಕಟ್ರೋ! ನಮ್ಮ ಮೆಟ್ರೊ. ನವೀನ ಭಟ್. Thursday, February 2, 2012. Saturday, 10 September 2011. Ts been a long time since I ventured out and also my swift was waiting for a road trip. With my parents arrival I planned a quick trip to Hoggenakal. A day well spent with my second love, Swift, and the loved ones! Dilon mein tum apni betaabiyan leke chal. Off Yalahan...
Crazy Coding
By a lazy guy! Sunday, September 27, 2015. AspNet MVC Intellisense for ViewBag. If you are a typical MVC developer, you might have used ViewBag or ViewData to pass data from Controller to View at times. Also, it is well understood that ViewBag is a dynamic type. And hence you will not get intellisense for this. Again, it is a similar case with ViewData which is a dictionary instead and hence no strongly typed support and needs to deal with magic strings. Public class ViewBagHelper { / /. Where, MyItem is...
NaveeNBioinforMaTics-any thing about bioinformatics
Get free Bioinformatics Alerts. Via FB. Tuesday, 4 August 2015. Tuning Bioinformatics Codes with Allinea Performance Reports. In this video from ISC 2015, Mark O'Connor from Allinea demonstrates how the company's Performance Reports tool enables coders to. Speed up the Discovar bioinformatics code. Is this application well-optimized for the system it is running on? Does it benefit from running at this scale? Are there I/O or networking bottlenecks affecting performance? Sunday, 2 August 2015. In Cambridg...
Naveen Blog Educational Career News
CBSE NET 2015 Answer Keys and OMR Sheets Download. Download CBSE NET 2015 answer keys and OMR Sheets from 18 Aug…. The CBSE had successfully conducted the National Eligibility Test 2015 second session on June 28. The results for the CBSE NET 2015 June session are expected in October. Download CBSE NET 2015 answer keys and OMR Sheets from 18 Aug 2015. Posted on 8/14/2015 01:34:00 pm Categories: CBSE NET. KPSC Old Question Papers Download for FDA/SDA Examination. It seems government job is a career option ...
Mirthulaalini & Naveen
naveenboutique.com - Registered at Namecheap.com
This domain is registered at Namecheap. This domain was recently registered at Namecheap. Please check back later! This domain is registered at Namecheap. This domain was recently registered at Namecheap. Please check back later! The Sponsored Listings displayed above are served automatically by a third party. Neither Parkingcrew nor the domain owner maintain any relationship with the advertisers.
Naveen Broadband Services
Is an internet service provider which powered by Broadband Pacenet Pvt. Ltd. We offer a wide bouquet of services across the value chain, focusing on Schools, Colleges and Corporate Companies. Our offerings Wi-Fi internet Connection, Broadband internet connections, Lease Line internet connections, IP Camera, IT infrastructure management and Voice IP businessess. Is an internet service provider which powered by Broadband Pacenet Pvt.Ltd.We offer a wide bouquet of services.