Disable browser cache for ajax request on ASP.NET MVC
The application reloads the list of jobs, if any job is reposted or expired. We display different labels, such as "reposted", "expired", depending on the act...
The application reloads the list of jobs, if any job is reposted or expired. We display different labels, such as "reposted", "expired", depending on the act...
You can download sublime text 2. I created a directory, "Applications" under Home. I extracted the downloaded tar in there. Then I did "Make Link" of sublime...
create controller with help and home routes [sourcecode language="bash"] $ rails generate controller StaticPages home help --no-test-framework [/sourcecode] ...
When you create a new site, skip generating unit test, as you want to use rspec instead. [sourcecode language="bash"] $ rails new sample_app --skip-test-unit...
Delete a directory recursively and forcefully. You have files in there, but you want to delete the directory [sourcecode language="bash"] rm -rf first_app/ [...