Web Development

  • Setting up React Project

    Setting up React Project

    React Project involves boiler plate code, why reinvent the wheel and do the repetitive task when time can be saved to setup react project and quick start on it….

    neotam Avatar
  • How to host a static website with custom domain on AWS S3

    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…

    neotam Avatar
  • How to setup AWS S3 storage backend for File Upload

    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…

    neotam Avatar
  • How to Export and Import Fixtures in Django

    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…

    neotam Avatar
  • Top Search Engines List

    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…

    neotam Avatar
  • Clipboard - Copy, Cut and Paste Using JavaScript

    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…

    neotam Avatar
  • Cross Origin Resource Sharing

    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…

    neotam Avatar
  • View Django ORM's raw SQL queries

    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…

    neotam Avatar