Tag: angular

2022 Roundup of Web Research

We’ve started making a tradition of rounding up the latest front-end research at the end of each year. We did it in 2020 and again in 2021. Reports are released throughout the year by a bunch of different companies … 2022 Roundup of Web Research originally published on CSS-Tricks, which is part of the DigitalOcean family. You should get the newsletter. ...
Continue Reading 2022 Roundup of Web Research

Flutter For Front-End Web Developers

I started as a front-end web developer and then became a Flutter developer. I think there were some concepts that helped me adopt Flutter easier. There were also some new concepts that were different. In this article, I want to … Flutter For Front-End Web Developers originally published on CSS-Tricks, which is part of the DigitalOcean family. You should get the newsletter. ...
Continue Reading Flutter For Front-End Web Developers

Array push() method in JavaScript

Arrays are essential for completing programming tasks in any programming language. In fact, arrays refer to list objects with methods for performing mutation operations. The length of a JavaScript array and the types of its items are not fixed. Arrays in JavaScript are used to hold several values in a single variable. ...
Continue Reading Array push() method in JavaScript

Beginner’s guide to Anaconda Python

Python and R programmers can use Anaconda’s data science and machine learning platform. It is accessible on Linux, Windows, and OS X and is made to make the process of building and delivering projects simple, stable, and reproducible across systems. ...
Continue Reading Beginner’s guide to Anaconda Python

Why I Chose Angular to Build a URL Shortener

URL Shorteners are tools we use to make links shorter than they actually are. With a URL Shortener, you can transform a long link (maybe for a registration form or article) into a shorter version. Behind the scenes, the long … Why I Chose Angular to Build a URL Shortener originally published on CSS-Tricks. You should get the newsletter. ...
Continue Reading Why I Chose Angular to Build a URL Shortener

Heapq in Python (with examples)

Heapq is an abbreviation for heap and queues. They’re notable for tackling various challenges, including finding the best element in a dataset. We can optionally sort the smallest item first or vice versa when dealing with data collections. Python’s heapq belongs to the standard library. For the formation of a heap, this function uses a conventional Python list. ...
Continue Reading Heapq in Python (with examples)

The Relevance of TypeScript in 2022

It’s 2022. And the current relevance of TypeScript is undisputed. TypeScript has dominated the front-end developer experience by many, many accounts. By now you likely already know that TypeScript is a superset of JavaScript, building on JavaScript by adding … The Relevance of TypeScript in 2022 originally published on CSS-Tricks, which is part of the DigitalOcean family. You should get the newsletter. ...
Continue Reading The Relevance of TypeScript in 2022

Java Lists (with examples)

The Collection interface is inherited by the List interface, located in java.util package. It’s a ListIterator interface factory. We can iterate the list forward and backward using the ListIterator. ArrayList, LinkedList, Stack, and Vector are the List interface, implementation classes. In Java programming, the ArrayList and LinkedList are commonly utilized. Since Java 5, the Vector class has been deprecated. ...
Continue Reading Java Lists (with examples)

What Were the Hottest Front-End Tools in 2021?

Another year has passed and once again I’ve had the privilege of going through the Web Tools Weekly newsletter archives from the past 12 months to hunt down the front-end tools that readers found to be the most interesting during … What Were the Hottest Front-End Tools in 2021? originally published on CSS-Tricks, which is part of the DigitalOcean family. You should get the newsletter. ...
Continue Reading What Were the Hottest Front-End Tools in 2021?

How to Make a Component That Supports Multiple Frameworks in a Monorepo

Your mission — should you decide to accept it — is to build a Button component in four frameworks, but, only use one button.css file! This idea is very important to me. I’ve been working on a component library called … How to Make a Component That Supports Multiple Frameworks in a Monorepo originally published on CSS-Tricks, which is part of the DigitalOcean family. You should get the newsletter. ...
Continue Reading How to Make a Component That Supports Multiple Frameworks in a Monorepo