|
|
-
|
|
I just learned how to setup a RSS subscription on stackoverflow tags.
There are couple of ways:
1) Just hover your mouse over the tag to see the "RSS" button:
2) Scroll to the bottom of the page to see a RSS link:
And If you know the tagname, here's ...
|
|
-
|
|
Hello devs,
Today i have watched this tutorial video of NDC 2012, Brad presented 3 topics
1. Knockoutjs with html5
2. Asp .Net Web API
3. SignalR
session contain introduction and demonstration of all three.
Resource: http://github.co...
|
|
-
|
|
Distributed Authoring and Versioning (DAV) is a set of extensions to HTTP/1.1
that simplifies website development when work is being carried out in a team
scenario. DAV is an open standard and is available on numerous platforms. DAV
provides the ability...
|
|
-
|
|
Haml5 Local storage (DOM storage) is such a nice feature for improve performance of data driven ASP.NET application
Think of HTML5 local storage like browser cookies, but much better. Like cookies, local storage is persistent.
...
|
|
-
|
|
I just learned that reCaptcha is a variant of Captcha that helps in digitizing books from a Ted Video. Once i learned about it - i realaized how prevalent it is - in fact SolidQ blog's comment section had reCaptcha and i keep on seeing this at various o......
|
|
-
|
|
Recently i started to learn HTML 5, In which i found an interesting attribute "Placeholder", which can be used to show sample values for controls in web page. When the page loads, controls will have the value specified in "Placeholder" attribute. As soo......
|
|
-
|
|
Today I got an error in javascript because of "innerText" property. I found this property is not working in mozilla browser and working in other browsers. Later I found that innerText property is not compatible with mozilla browser and instead we can us......
|
|
-
|
|
If we want to debug JavaScript in IE, we will use some editor like Visual studio. But in Google Chrome, its relatively easy and no seperate editor is required to debug JavaScript. We can debug JavaScript in browser itself. Put "debugger" statement in ......
|
|
-
|
|
find day no of current year using following JavaScript
[code]
var cday;
var d = new Date(); // gets today's date
var yn = d.getFullYear();
var mn = d.getMonth();
var dn = d.getDate();
var d1 = new Date(yn, ......
|
|
-
|
|
Filezilla is free open source FTP software that is used for transferring files from one location to another location. I have found that it is pretty fast compared to other FTP softwares. This is used for uploading and downloading of files.......
|
|