The article guides you on how to apply for different roles on Crossover, the application steps, work environment and some generic guidelines regarding specific test(s).
GitHub Campus Expert Program | Application Process
All you need to know before applying for the GitHub Campus Expert Program, as well as what to except once you become one.
How to upload a project on GitHub using Git
How to upload a local project to GitHub using git
How to Upload Large Files to GitHub | Git LFS
Uploading or tracking large files (over 100 MB) on GitHub using GIT LFS
Google Colab Notebook Tutorial | How to import a dataset
Note: If you prefer to watch a video instead, you can find the video version at Google Colab Notebook Tutorial | Import Dataset | Import Local Files. Introduction In this article, we are going to learn about Google colaboratory notebooks in as much detail as possible. This tutorial is going to cover a variety of …
Continue reading "Google Colab Notebook Tutorial | How to import a dataset"
Bucket Sort Algorithm & Time Complexity | Python Implementation
Introduction In this tutorial, we are going to learn about a sorting algorithm named Bucket Sort. Bucket sort, or bin sort, is a comparison sort algorithm that works by assigning the elements of an array or list to a number of buckets. The elements within each bucket are then compared to each other and sorted …
Continue reading "Bucket Sort Algorithm & Time Complexity | Python Implementation"
How to code a classification & regression model in Python
In this article, we are going to first get an introduction to Supervised learning, followed by a little dive into the two most common types of supervised learning algorithms; namely, classification & regression. At the end we will have two coding examples, one for classification and one for regression. Both will use a different dataset …
Continue reading "How to code a classification & regression model in Python"
How to create a Blockchain in Python [Basic Tutorial]
Introduction In this tutorial, we are going to learn about the basics of Blockchain and then create a blockchain in Python. BC is undoubtedly one of the most disruptive technologies that have recently appeared in the world of technology. You will find Blockchain at the core of Bitcoin and other cryptocurrencies. However, you will also …
Continue reading "How to create a Blockchain in Python [Basic Tutorial]"