Linear Search vs Binary Search: Searching Algorithms Algorithms are solutions. It is a solution to a problem or too many problems. Algorithms rule the world. It is a universal truth.
Why spend your precious time writing Developer Documentation? The staple of this article is to share the observations and raise awareness on why developer documentation is important to the software project and its people.
Getting Started with Scrum in an Agile Way This article revolves around the topics of Scrum, its practices, techniques, terminologies and implementation.
How to create a Ubuntu bootable USB using MacOS What you need beforehand – Prerequisites 1. At least 4 GB USB device – pen drive >= 4 GB size 2. Ubuntu Desktop OS – Official Ubuntu Download Page 3. Etcher app – Official Etcher Download Page 4. Mac or laptop running MacOS 5. sudo access permission. Before continuing to this tutorial, please read
SMS Phone Verification in Django - Part 3 We arrive at the final and longest snippet of our code that will connect all dots and make the previous steps more relevant to us. We partition all code contents from views.py into 3 parts.
SMS Phone Verification in Django - Part 2 Starting off imports, the most basic module to import is path that returns for urlpatterns. ValidatePhoneSendOTP and ValidateOTP are API view classes that subclass Django's View class. These will arrive later in Step 5: Writing Final Views part of this tutorial.
Notes on Convolutional Neural Network Preliminary knowledge of computer vision is good for readers. You may also like articles on Image Manipulation and Object Detection. We start with a simple analogy about what is an artificial neuron. It is a math function but a digital one. And it tries to function similar to our brain&
Load Testing using ab Apache Benchmark command-line tool ab is a simple load testing command from Apache. It benchmarks your HTTP server by automating a scenario of sending multiple requests with concurrent clients.
SMS Phone Verification in Django - Part 1 In this post, we're going to code in Python Django to use the Sparrow SMS API integration to verify a Nepali NTC/ Ncell phone number using an API as a service server-generated OTP code.