Tag: naming

6 Common SVG Fails (and How to Fix Them)

Someone recently asked me how I approach debugging inline SVGs. Because it is part of the DOM, we can inspect any inline SVG in any browser DevTools. And because of that, we have the ability to scope things out and … 6 Common SVG Fails (and How to Fix Them) originally published on CSS-Tricks, which is part of the DigitalOcean family. You should get the newsletter. ...
Continue Reading 6 Common SVG Fails (and How to Fix Them)

Renaming columns in a pandas DataFrame

People work with vast amounts of big data every day. There are times when the massive data has column names and times when it doesn’t. Sometimes when the column names are present, they contain unnecessary names or other characters, such as spaces. So, before beginning the analysis, we must pre-process those enormous amounts of data. Therefore, we must first rename the column names. ...
Continue Reading Renaming columns in a pandas DataFrame

Fancy Image Decorations: Single Element Magic

As the title says, we are going to decorate images! There’s a bunch of other articles out there that talk about this, but what we’re covering here is quite a bit different because it’s more of a challenge. The challenge? … Fancy Image Decorations: Single Element Magic originally published on CSS-Tricks, which is part of the DigitalOcean family. You should get the newsletter. ...
Continue Reading Fancy Image Decorations: Single Element Magic

How to Automate Microservices on AWS

Introduction As organizations rapidly move towards cloud adoption, they are also looking at microservices and an agile way of development, deployment, and testing. With such rapid adoption, large organizations are facing many challenges. In large… The post How to Automate Microservices on AWS appeared first on Education Ecosystem Blog. ...
Continue Reading How to Automate Microservices on AWS

Using Grid Named Areas to Visualize (and Reference) Your Layout

Whenever we build simple or complex layouts using CSS Grid, we’re usually positioning items with line numbers. Grid layouts contain grid lines that are automatically indexed with positive and negative line numbers (that is unless we explicitly name them). … Using Grid Named Areas to Visualize (and Reference) Your Layout originally published on CSS-Tricks, which is part of the DigitalOcean family. You should get the newsletter. ...
Continue Reading Using Grid Named Areas to Visualize (and Reference) Your Layout

Building a newbie-friendly codebase

Pedro Santos suggests: Using naming conventions such that you can learn them once and apply them everywhere Unidirectional data flows. Make it easy to follow the app flow. No magic numbers. I’d add they are even worse in CSS … Building a newbie-friendly codebase originally published on CSS-Tricks, which is part of the DigitalOcean family. You should get the newsletter. ...
Continue Reading Building a newbie-friendly codebase

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

Honor prefers-color-scheme in the CSS Paint API with Custom Properties

One of the coolest things I’ve been messing with in the last couple years is the CSS Paint API. I love it. I did a talk on it, and made a little gallery of my own paint worklets… Honor prefers-color-scheme in the CSS Paint API with Custom Properties originally published on CSS-Tricks, which is part of the DigitalOcean family. You should get the newsletter. ...
Continue Reading Honor prefers-color-scheme in the CSS Paint API with Custom Properties

Installing Python packages user guide

Python packages are collections of modules (reusable code) that extend and improve the basic Python language’s capability. Python developers contribute to the official Python Package Index (PyPI ) repository, making their packages open source and available to the Python community. The Python Packaging Authority (PyPA ) is in charge of the repository and provides a collection of tools for creating, distributing, and installing Python packages. ...
Continue Reading Installing Python packages user guide

How to plot in Python

In this article, we illustrate how to use each of the four most popular Python plotting libraries—Matplotlib, Seaborn, Plotly, and Bokeh—as well as a couple of promising newcomers: Altair, with its expressive API, and Pygal, with its beautiful SVG performance. We’ll also take a look at pandas’ extremely useful plotting API. ...
Continue Reading How to plot in Python