What Are LLM Tokens? A Complete Beginner’s Guide
LLM tokens are the fundamental units of text that Large Language Models use to process and generate language.
ai · llm · tokens
Blog
Writing about engineering, AI, product, and the process of building for the web.
LLM tokens are the fundamental units of text that Large Language Models use to process and generate language.
ai · llm · tokens
The useState hook is used to create and manage local state in functional components.
react · javascript · frontend
CSS Specificity is an algorithm that is used to determine which rule is the most specific. For that, CSS uses an scoring system.
CSS
The cascade is an algorithm used for solving conflicts when multiple CSS rules apply to the same HTML element.
CSS
Arrow functions are introduced in ES6. It has easier syntax and unlike regular functions, it actually has lexical scoping which can be taken advantage off in certain situations
JavaScript
Javascript hoisting is the process of initializing variables and providing them memory space before a JS program is run
JavaScript
A scope in JavaScript defines the accessibility of variables. Local scopes can ensure variables with general names aren't overwritten.
JavaScript
JavaScript promises is a new way to do function callbacks. With the introduction of promise, syntax is significantly reduced. It also helps us avoid what is called a callback hell.
JavaScript
The CSS box model is the easiest way to understand why browser renders elements the way it does.
CSS
Explaining JavaScript this keyword for beginners.
JavaScript
JavaScript functions are building blocks of a JavaScript program.
JavaScript