Web Development
-
How to host a static website with custom domain on AWS S3
To host a static website on AWS S3, you need the following resources Registered domain Access to domain registrar (Ex: GoDaddy, AWS area51) to configure DNS CNAME AWS Management…
-
How to setup AWS S3 storage backend for File Upload
Django delegates the files handing to the storage backend. By default Django uses the FileSystemStorage to store files on local filesystem. It is possible to customize storage system to…
-
How to Export and Import Fixtures in Django
A fixture is a collection of file that hold the serialized content of the database. Files that comprise the fixture can be distributed across multiple directories and application in…
-
Top # Search Engines List For Webmasters
Web search engine is a software which crawls whole internet and indexes (stores) to make World wide web available to you at your finger tips. Google Bing Yahoo Baidu…
-
How to interact with the clipboard using JavaScript
It’s never been a easier job to copy the text programmatically with in the browser. We use to rely on flash to get it done. Good news, now we…
-
Cross-Origin Resource Sharing (CORS) Explained
Cross-Origin Resource Sharing (CORS) is the mechanism to allow content loaded from one (main) origin to access the selected resources available from servers at different origin. This mechanism of…
-
How to view converted SQL queries of Django ORM
Django provides the ORM which is database and vendor agnostic, as a result we can perform operations on database regardless kind of database running behind.Thus, developer may not need…