Data Scientists spend almost 60% of their time cleaning data. Raw data contains inconsistencies, which when left un-engineered, lead to inaccurate machine learning models. This article shows how to sort and clean data with Python and Python libraries.
Controllers In Laravel – An Introduction
Controllers are an important part of Laravel MVC (Model, View, CONTROLLER). They are useful for organizing request-handling logic and help to keep the entire code structured and maintainable. This post is a brief primer on Laravel controllers.
Implementing Pagination Using PHP And MySQL
An SQL SELECT statement may often return thousands of rows. And when building sites, we usually don’t want to dump all those rows onto a single page (for speed and UX reasons). Instead, we split the results across multiple pages via PAGINATION.
Locating a Stolen Android Phone via “Find My Device” and IMEI Tracking
When your phone gets stolen, you may be tempted to just get a new one to avoid all the stress. But if you took a few simple measures in advance, locating your stolen phone may not be so hard. I’m talking about using “Find My Device” and IMEI tracking.
Service Oriented Architecture – A High Level Overview
If you love platform-neutral approaches to programming like we do, you will love Service Oriented Architecture (SOA). This article is a high level overview of SOA. We discuss SOA principles, pros and cons, and components needed for SOA infrastructure.
How to Locate the .htaccess File on cPanel
There are lots of reasons why you would want to access your website’s .htaccess file: performing URL redirection, defining custom error pages, etc. Whatever the reason, you first need to locate the file on your host server. This article explains how.