Tag: details

How to convert Column to DateTime in Pandas

Time series data are frequently encountered when working with data in Pandas, and we are aware that Pandas is an excellent tool for working with time-series data in Python. Using the to_datetime() and astype() functions in Pandas, you can convert a column (of a text, object, or integer type) to a datetime. Furthermore, if you’re reading data from an external source like CSV or Excel, you can specify the data type (for instance,...
Continue Reading How to convert Column to DateTime in Pandas

Speeding up the JavaScript ecosystem – module resolution

📖 tl;dr: Whether you’re building, testing and/or linting JavaScript, module resolution is always at the heart of everything. Despite its central place in our tools, not much time has been spent on making that aspect fast. With the changes discussed in this blog post tools can be sped up by as much as 30%. In part 1 of this series… ...
Continue Reading Speeding up the JavaScript ecosystem – module resolution

How to use Azure Management APIs in C# with Azure.Identity

Azure offers a wide range of management APIs to automate a range of actions that can be performed in the Azure portal. These include things… ...
Continue Reading How to use Azure Management APIs in C# with Azure.Identity

Converting Column with float values to Integer values in Pandas

To change a column’s data type to int (float/string to integer/int64/int32 dtype), use the pandas DataFrame.astype(int) and DataFrame.apply() methods. If you are converting a float, you probably already know that it is larger than an int type and would remove any number with a decimal point. ...
Continue Reading Converting Column with float values to Integer values in Pandas

GraphQL errors: the Good, the Bad and the Ugly

Returning errors in GraphQL is a challenging task, and we tried a lot of different approaches over time. Keep reading to know what we’ve learned along the way. ...
Continue Reading GraphQL errors: the Good, the Bad and the Ugly

Pandas DateFrame Histogram

A histogram is a type of chart frequently used to show how numerical data are distributed. When investigating it, you’ll frequently wish to quickly comprehend how specific numerical variables are distributed throughout a dataset. A histogram is responsible for this. ...
Continue Reading Pandas DateFrame Histogram

My Top 10 Visual Studio Code Extensions for 2022

Over the last few years, I have found myself using Visual Studio Code more and more. The main reasons being both the speed of the… ...
Continue Reading My Top 10 Visual Studio Code Extensions for 2022

Achieving end-to-end type safety in a modern JS GraphQL stack – Part 2

Welcome back! This article is the second and last part of the Achieving end-to-end type safety in a modern JS GraphQL stack series. Read the first part if you haven't yet! Svelte I won't go into the details of why Svelte, but I like Svelte a ...
Continue Reading Achieving end-to-end type safety in a modern JS GraphQL stack – Part 2

Classy and Cool Custom CSS Scrollbars: A Showcase

In this article we will be diving into the world of scrollbars. I know, it doesn’t sound too glamorous, but trust me, a well-designed page goes hand-in-hand with a matching scrollbar. The old-fashioned chrome scrollbar just doesn’t fit in as … Classy and Cool Custom CSS Scrollbars: A Showcase originally published on CSS-Tricks, which is part of the DigitalOcean family. You should get the newsletter. ...
Continue Reading Classy and Cool Custom CSS Scrollbars: A Showcase