Year: 2020

Tech Object classification in TensorFlow

Object classification in TensorFlow

Project setup Before we get started with any project, it is a good idea to create a virtual environment to isolate project-specific libraries from the global environment. Python virtual environment stores dependencies required by different projects in separate places by creating virtual environments for them. It solves the “Project X depends on TensorFlow version 1.x …

Read Article Read More

Tech Laravel: Using Pagination, Sorting and Filtering with Your Tables

Laravel: Using Pagination, Sorting and Filtering with Your Tables

Introduction. In Laravel, when you create websites displaying some data, you almost always need to display tables of results (e.g. Products, Categories, etc). The problem with displaying these tables is that you need to make them sortable and filterable. Plus, you may need to paginate your results since the table may become very big and …

Read Article Read More

Tech Laravel: Database Management with Eloquent ORM

Laravel: Database Management with Eloquent ORM

Introduction In Laravel, we have several ways to work with a database. One of them is using raw SQL queries and commands via the query builder. The other way is using Eloquent ORM. Eloquent ORM is more common in everyday tasks since it simplifies our life and saves our time in the most basic things …

Read Article Read More

Tech How to Scrape Amazon Reviews with Scrapy

How to Scrape Amazon Reviews with Scrapy

  Introduction to Scrapy Scrapy is a powerful Python-based web crawling framework that helps a developer to define how one or more websites can be scrapped. Scrappy uses crawlers called Spiders, which can extract, process, and save the data. Since Scrapy is built on Twisted, an asynchronous networking framework, its performance is extremely fast due …

Read Article Read More

Tech Corner 7 New JavaScript ES6+ Array Methods Every Developer Should Know

7 New JavaScript ES6+ Array Methods Every Developer Should Know

  ECMAScript 6, also called ES6 or ECMAScript 2015, is a specification standard that introduced some new exciting features to the JavaScript programming language intended to make your code more modern, readable, and versatile—especially when building large-scale applications. Apart from ES6, which was introduced in 2015, other specifications of the standard have continuously been released …

Read Article Read More