Tag: Linux

How to Install Node.js on Ubuntu – Node Linux Installation Guide

If you are a web developer working on the frontend or the backend, you’ll want to have Node.js installed on your system. But if you use the typical sudo apt install nodejs command, it may install a very old version of Node which can be troublesome for you. So ...
Continue Reading How to Install Node.js on Ubuntu – Node Linux Installation Guide

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

Building Interactive Figma Widgets

Figma has always encouraged collaboration between developers and designers. It strives on an endless treasury of community-made plugins. Need 3D elements? There’s a plugin for that. Need abstract SVGs? There’s a plugin for that, too. That said, the design part of Figma has … Building Interactive Figma Widgets originally published on CSS-Tricks, which is part of the DigitalOcean family. You should get the newsletter. ...
Continue Reading Building Interactive Figma Widgets

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

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

Managing Your WordPress Site With Git and Composer

Managing WordPress with Git and Composer has some big advantages. In particular, it can give you version control and helps get new people up to speed quickly. But it’s not… Read more The post Managing Your WordPress Site With Git and Composer appeared first on Delicious Brains. ...
Continue Reading Managing Your WordPress Site With Git and Composer

Python sleep function usage with examples

The sleep() function suspends (waits) the current thread’s execution for a specified number of seconds. Python offers a time module that contains various useful functions for dealing with time-related activities. sleep() is one of the most prominent roles among them. The sleep() function suspends the current thread’s execution for a specified amount of seconds. ...
Continue Reading Python sleep function usage with examples

Python Scripts Beginner’s Guide

Python is not just a popular language for programming. It is also in in-demand because it can be used to create applications ranging from simple to complicated. If you’re new to Python programming and want to learn it quickly, this article is for you. This post explains python script examples using straightforward illustrations to help you understand Python basics. ...
Continue Reading Python Scripts Beginner’s Guide

How to display hostname and IP address in Python

In this post, we’ll use the Python programming language to display the hostname and IP address. IP (Internet Protocol) is a fundamental networking concept that enables address assignment capability in a network, as we all know. ...
Continue Reading How to display hostname and IP address in Python

How to change TOR IP address with Python

Back in the 1990s, the internet was a dangerous place where network traffic was mostly unencrypted and traceable, allowing hackers to launch man-in-the-middle attacks and steal personal information quickly. To address this problem, a group of experts from the United States Naval Research Laboratory launched The Onion Routing (TOR) project, which aims to anonymize and encrypt internet connections. ...
Continue Reading How to change TOR IP address with Python