Beginner

Beginner posts, videos, courses, and more

Mike Young · 9 months ago

Img2Prompt or BLIP-2: Which is better at turning pictures into prompts?

Whether we're trying to auto-generate meaningful textual prompts from visual content or seeking answers to specific queries about images, AI models have become our go-to solution. Two such m...
2

Mike Young · 10 months ago

A Plain English Guide to Reverse-Engineering Reddit's Source Code with LangChain, Activeloop, and GPT-4

Imagine writing a piece of software that could understand, assist, and even generate code, similar to how a seasoned developer would. Well, that's possible with LangChain. Leveraging advance...
4

Mike Young · 10 months ago

A quick and easy guide to creating a sitemap for a Next.js site

If you're looking to generate sitemaps for your Next.js website, the next-sitemap npm package is a great tool to help you with that. In this tutorial, I'll guide you through the process of u...
3

Baransel · 1 year ago

Getting Started with JavaScript Switch Case: A Beginner's Guide

Sign up to my newsletter for more tutorials!. JavaScript is a popular programming language used to create interactive websites and web applications. One of the most useful features of Java...
2

Baransel · 1 year ago

A Comprehensive Guide to Getting Started with PHP: Tips, Tricks, and Code Examples

Basic Syntax Before we dive into the tips and tricks, let's go over the basic syntax of PHP. Here's a simple example that outputs "Hello, World!" to the screen: <?php echo &quo...
1

Baransel · 1 year ago

Getting Started with Python: Tips, Tricks, and Code Examples

Python is a high-level, interpreted programming language that is widely used for a variety of applications, including web development, scientific computing, data analysis, artificial intelli...
2

marinsborg · 1 year ago

URL shortener - Java & Spring tutorial

Introduction A URL shortener is a service that is used to create short links from very long URLs. Usually, short links have the size of one third or even one-fourth of the original URL, whic...
4

Baransel · 2 years ago

How to add an event listener to multiple elements in JavaScript

Sign up to my newsletter!. In JavaScript you add an event listener to a single element using this syntax: document.querySelector('.my-element').addEventListener('click', event => { //...
2

Tapas Adhikary · 2 years ago

ReactJS useState Hook - lazy initialization and previous state

The State of a Component ReactJS is a component-based user interface library. Each of the components we create should have an individual responsibility. In the real world ReactJS application...
4

Baransel · 2 years ago

A Git Cheat Sheet

Sign up to my newsletter!. Intro When it comes to version control systems, there are few software that can beat GIT in performance and relevance. GIT was developed by Linus Torvalds in 200...

Tapas Adhikary · 2 years ago

JavaScript object destructuring usages you must know

Introduction We use JavaScript objects to store data and retrieve it later. We store data(aka information) in key-value pairs. The key-value pair is also known as the object properties. Here...
4

Rahul · 2 years ago

30 JavaScript project ideas for Beginners to Pro developer with resources

In this article, I'll share 30 project ideas you can work to dominate your abilities, feel sufficiently sure to add to open source projects, and do some independent undertakings. Also ready...
4

Tapas Adhikary · 2 years ago

Higher-Order Functions(HoF) in JavaScript - Explain Like I'm Five

JavaScript Functions Functions are an integral part of many programming languages, and JavaScript is not an exception. In JavaScript, functions are the first-class citizens. You create them,...
5

Rohith Gilla · 2 years ago

How I bought loading time of a media from ~3s to ~100ms or less

Hello, in this short blog post we will try to cover on how to improve media loading time when you access from firebase storage. This approach is very useful when dealing with media content r...
3

Damian Demasi · 2 years ago

How to build a JavaScript project using APIs, promises, classes, error handling, and more!

Why did I choose to build this project? 🤔 This project was one of my favourite tools for breaking my way out of tutorial hell 👹. I also wanted this project to serve me as a display of my J...
2

Damian Demasi · 2 years ago

How to make a vanilla JavaScript project: a beautiful To-Do app

Doing courses and tutorials is great, but sometimes is difficult to evaluate how much are we actually learning. Watching video after video and coding along with the instructor gives us very...
4

Damian Demasi · 2 years ago

Learn how to use Git and GitHub in a team like a pro

In this tutorial, you will learn how to work in a team with a central repository on GitHub. You will work on issues, commits, pull requests, code reviews, and more. I don't consider myself a...
5

Tony Lea · 3 years ago

AlpineJS for Beginners

AlpineJS is a new javascript library/framework that focuses on simple javascript interactivity, and it does it really well. If you're looking for a JS framework with routing, state managemen...
5

Loading More Content