Can the same WireGuard tunnel be used for multiple devices?

By Faruque Ahamed Mollick

Have you tried using the same WireGuard configuration for multiple devices and connecting with the WireGuard VPN server? You may also think if it is possible. So let me explain to .... Read More

Text to colored QR code generator web application – JavaScript, HTML, CSS

By Aditya Pradhan

Hello everyone, today in this tutorial you will learn how to create text to colored QR code generator web application Follow the following steps to create the text for the colored .... Read More

Fixed: The project at ‘/Users/….xcodeproj’ cannot be opened because it is in a future Xcode project file format.

By Saruque Ahamed Mollick

I just found a new issue while trying to open an Xcode project (that is built using a newer version of Xcode) with an older version of Xcode and I got this error: The project at â€.... Read More

How to Draw an Arc in Tikz – Full Guide

By Saruque Ahamed Mollick

In this LaTeX tutorial, we will learn how to draw an arc in Tikz with lots of examples. I will start with the very basic arc first. The basic sytax is: \draw (x,y) arc [start angle.... Read More

How to plot Line of Best fit in python

By Sourav Rastogi

First, we will import  libraries import numpy as np import matplotlib.pyplot as plt Then we will create data points #Create data points x = np.array([0, 1, 2, 3, 4, 5]) y = np.arr.... Read More

Get yesterday’s day and date in C programming

By Saruque Ahamed Mollick

In this tutorial, we will learn how to get or find the yesterday’s day and date in C programming. Here I am using time.h header library. I will first show you how to find yes.... Read More

Draw line of any thickness in Tikz LaTeX

By Parvez Akhtar Pasha

Today I will show you how we can set custom thickness for lines in Tikz – LaTeX. We all know that we can set the thickness of the lines using the below predefined thickness c.... Read More

Draw a rounded corner rectangle in LaTeX using Tikz

By Saruque Ahamed Mollick

Let’s learn how to draw a rounded corner rectangle with Tikz in LaTeX. \documentclass{article} \usepackage{tikz} \begin{document} \begin{tikzpicture} \draw[rounded corners=20.... Read More

Related Posts