Learn how the `this` keyword works in JavaScript If you belong to a programming background, you might have come across “this” keyword, multiple times. Every programming language that exists usually contains the concept of “this”, especially the modern programming languages. But the catch here is, different programming languages have slight changes in the definitions for […]
Intro to building full stack applications with JavaScript and NextJS Even though modern Javascript-based frontend frameworks like React help us develop robust dynamic websites, they have one major downside: the client has to wait until all Javascript code loads to render the page and display content to a user. As a page’s loading speed significantly […]
Stay up to date with the latest trends in freelancing The world has expanded with the rise of the internet. In current times the online world is staying up ahead and serving people. People are taking healthy advantage of the online world these days. Earning from the online world has been more accessible and convenient […]
Learn how to create interactive Discord bots with NodeJS Build Your First Discord Bot With NodeJS in Less Than 60 Minutes Discord is a chat application over 100 million users rely on to build online communities through text, voice, and video conversations. With the extensive API Discord offers to developers, we can build bots that perform repetitive, mundane, […]
Learn how to create interactive Discord bots with NodeJS Build Your First Discord Bot With NodeJS in Less Than 60 Minutes Discord is a chat application over 100 million users rely on to build online communities through text, voice, and video conversations. With the extensive API Discord offers to developers, we can build bots that perform repetitive, mundane, […]
Learn some great one-liners to use on your next project Javascript syntax and built-in methods allow us to cut down a lot of unnecessary lines in our code and write short, easily readable code. In this post, we are taking this simplicity another step forward to see where you can write one-line solutions to some […]
Say bye-bye to the problem of centering vertically on the web For something theoretically so simple, vertical centering elements in CSS is not the easiest task to accomplish. This statement was especially true before browsers started supporting modern additions to CSS like flex and grid. In this post, we are going to discuss some older […]
Bootstrap a NodeJS & MySQL application using Docker Compose Docker has become a tool that developers can’t live without in less than a decade since its release. Docker provides lightweight containers to run services in isolation from other processes in the system. If you haven’t yet been properly introduced to Docker, follow our introduction to Docker guide before […]
Learn about the tech stack we use at FeedHive, the whys and hows. Simon (@SimonHoiberg ) is a super developer on Twitter. He inspires many people with his tweets on development, javascript/typescript, entrepreneurship, and much more. He’s also the Founder of FeedHive , a platform built around the idea of growing and handling your social media. As someone […]
Demystifying Threads is Node.js Often, we talk about how Node’s single-threaded nature makes Node applications easily scalable and resource-efficient. But it also makes Node an unsuitable choice for implementing CPU-intensive tasks . But as a workaround to this problem, in its v10.5.0 release, Node introduced the concept of worker threads. Worker threads provide a mechanism to spawn […]