Speed-up your NodeJS application by caching into Redis In recent years, Redis has become a common occurrence in a Node.js application stack. Though its most popular use case is caching, Redis has many other use cases where you can take advantage of its blazing-fast in-memory database. In this tutorial, we are going to give you […]
A typed introduction to JavaScript, I mean Typescript If you are a Javascript developer, you must have heard about Typescript at one point or another. If you have been reluctant about giving Typescript a try because you are not sure how it could serve you better than Javascript, you have come to the right place. […]
An enterprise app is an application or software used by a business to solve its enterprise problems. It integrates all aspects of a company’s operations and processes like accounting, human resources, manufacturing, marketing, sales, distribution, inventory and resource planning. “When done correctly, Enterprise Application integration really allows companies to realize the full benefit of their […]
NumPy, also known as Numerical Python, was created by Travis Oliphant, accomplished by blending the features of Numarray into a Numeric package. NumPy has acted as a “replacement” for Matlab (used for technical computing) in the past; How? The combination of NumPy with packages like SciPy (known as Scientific Python) and Mat−plotlib (plotting library), has been treated as a Python Alternative to […]
A binary search is a simplistic algorithm intended for finding the location of an item stored in a sorted list. There are a few variations to the binary search in C program, such as testing for equality and less-than at each step of the algorithm. Binary search in C is an example of a simple […]
Variable Handling Functions Variables in PHP are containers for storing data. A variable name is preceded with a $ sign. It must start with a variable or an underscore. A variable cannot be started with a number. A variable can only contain alphanumeric characters. Variables are case-sensitive. $Result and $result are treated as two different […]
Paradigm is a school of thought or model that has distinct features, frameworks, patterns, and style which help you solve a particular problem. Paradigms are used in all fields such as psychology, sociology, etymology, computer science and so on. In the field of computer science, new programming languages emerge from existing languages and add, remove […]
There are many factors that make a good framework, and you’ll find that many frameworks have been swapping places over the years. Thus, it’s not always easy to pick a framework to work with, especially if you’re just beginning with web development. Today, we’ll be exploring the Ruby on Rails framework, one of the most […]
So you have started our Hack-n-Learn? Great! In case you are a beginner and are struggling to start the project, this post is for you. To run the project solution, all you need is Node/Npm. NPM is a package manager that comes with node and is required to run projects involving any Front-End/Back-End Framework. It takes care […]
What is Blockchain? As the name implies, it is a chain of blocks. A Blockchain is a timestamped series of immutable records of data called Blocks managed by millions of computers and not owned by any single entity and is connected by cryptographic principles called a chain. A Blockchain has no transaction cost and is […]