programming (174)

Are There Problems That Computers Can't Solve?

Are there problems that computers can’t solve? Even if you work with the cleverest programmers, even if you have infinite time and energy and more computing power than could possibly ever exist in the universe, are there some things that it wil...

Den W. · 3 years ago · 591

Machine Learning Foundations: Part 10 - Using NLP to build a sarcasm classifier

Previous: Part 9 - Using the Sequencing APIs Over the last few parts, we haven't done much machine learning. Instead, we looked at how you can preprocess text data to get it ready for training machine learning models. In this part, you're going to p...

Alex · 25 June 2020 · 371

One of the ways to speed up TypeScript compilation

Source data: Compiling a NodeJS project consumes almost 2GB of memory. It didn't bother me on my work computer, but on my laptop, I periodically encountered an unpleasant OutOfMemory error. I began to investigate why such a small project was consumin...

Jacob Enderson · 1 year ago · 103

Vue 3.3 Overview: What's New and What's with TypeScript

The Vue team has announced the release of version 3.3 - "Rurouni Kenshin." In this new version, the developers focused on improving the development experience. For example, they enhanced the interaction with SFC <script setup> in TypeScript. Many lon...

Jacob Enderson · 11 months ago · 64

Unary vs. Recursive Relationship in DBMS

In database management systems, a unary relationship is a type of relationship where an entity is related to itself, while a recursive relationship is a type of relationship where an entity is related to another entity of the same type. A unary rela...

Akshay Sharma · 03 March 2023 · 87

Node.js Vs .NET Core: Is Node.js Being Killed Off By .NET Core?

Node.js and .NET Core are two powerful platforms that have become staples in the world of web development. While both have their unique strengths and use cases, some have been asking whether Node.js is being replaced by .NET Core. Let us take a close...

Aditya Jani · 10 April 2023 · 86

Why Do We Use Different Languages on Facebook and WhatsApp?

The most famous social media platforms worldwide were Facebook and WhatsApp. These services have enabled people to keep in touch with friends, family, and co-workers through text messages. Facebook is famous to such an extent that it acquired WhatsAp...

Alex · 16 August 2022 · 303 · 1

Top Interview Questions for Java Developers

As we continue with the series of Java Interview Questions and Answers, here are the top Java Developer Interview Questions for both freshers and seasoned Java professionals to assist them to ace the Java developer interview.Java is a well-known prog...

Alex · 19 September 2022 · 124

Machine Learning Foundations: Part 1 - What is ML?

Welcome to this series on Machine Learning Foundations. It's a course where you'll learn the fundamentals of building machine learning models using TensorFlow. The only thing that you'll need to know is a little bit of Python. So if you've tried to l...

Alex · 3 years ago · 128

Machine Learning Foundations: Part 4 - Coding with Convolutional Neural Networks

In the previous part 3 - Convolutions and pooling, you learned all about convolutions and how they can use filters to extract information from images. You also saw how to create pools that can reduce and compress your images without losing the vital...

Alex · 3 years ago · 58

What are the top 10 frontend development languages in 2022?

What are the top 10 frontend development languages in 2022? Which programming languages will be most popular with frontend developers next year? What technologies and frameworks are they adopting, and which ones are they leaving behind? It&rsquo;s im...

John Smith · 1 year ago · 42

Substring search algorithms in JavaScript

Recently, I came across a not very difficult task on LeetCode. Within the task, I had to implement an algorithm to search for a substring in a string. While I was trying to solve the task, I realized that I knew very little about how to search for a...

Jacob Enderson · 11 months ago · 96

Understand Virtual DOM in React and What Makes It Great

What is a virtual DOM? The virtual DOM (VDOM) is a programming concept in which an ideal, or &ldquo;virtual,&rdquo; version of a user interface (UI) is stored in memory and synchronised with the &ldquo;actual&rdquo; DOM via a library such as ReactDO...

Aditya Jani · 16 February 2023 · 58

The Role of Operating Systems in Embedded Systems

Embedded systems are devices and systems that are integrated into other products and used for specific functions. These systems are found in a wide range of applications, including appliances, vehicles, and medical equipment. In order to perform thei...

Sahil Saini · 03 March 2023 · 120

Solidity Tutorial: What is Constants & Immutables

Solidity is a high-level programming language used to write smart contracts on the Ethereum platform. In this tutorial, we will discuss the concepts of constants and immutables in Solidity. Constants: Constants in Solidity are variables that cannot b...

Alex · 31 January 2023 · 66

What is data Abstraction in DBMS?

Often when you visit a website, you might notice what you view can differ from what another person views. For instance, if you login to a shopping website and enter your details, you can only view what orders you have placed rather than what someone...

Akshay Sharma · 05 January 2023 · 112