Skip to main content

6 posts tagged with "Tutorials"

This tag is for various Tutorials and How To Guides.

View All Tags

How to Install Jenkins using Docker ?

· 2 min read
Rahul Vijayakumar
DevOps Enthusiast with Expertise in Server Management & Operations

Install Jenkins Using Docker

In this article, we will take a look at how to install or deploy Jenkins using Docker. First Install Docker if you haven’t already. You can use the below instructions to install docker in Ubuntu.

How to install C and C++ on Windows ?

· 3 min read
Rahul Vijayakumar
DevOps Enthusiast with Expertise in Server Management & Operations

Install C and C++ in Windows

In this article we we will show you how to install C and C++ on windows. Unlike python and other languages, installing the C compiler on Windows is not an easy task. For languages like python, you can just download the latest installer from the official website and install it like any other normal program. For C and C++ it is not as straight forward. Usually people download and install the compiler separately and then an ide or text editor to actually write and run code. We will show you another simple way to get C and C++ working on your computer. The easiest way to install the C and C++ compiler is to install it along with an ide like Codeblocks.

How to install C and C++ in VS Code ?

· 4 min read
Rahul Vijayakumar
DevOps Enthusiast with Expertise in Server Management & Operations

Install C and C++ in VS Code

In this article we will show you how to install c and c++ in VS Code. VS Code is one of the most popular code editors out there and you can configure VS Code to work with any language. First we will be installing the C compiler and then we will configure VS Code to work with C and C++.

How to Integrate Qt Designer with Pycharm ?

· 3 min read
Rahul Vijayakumar
DevOps Enthusiast with Expertise in Server Management & Operations

Integrate Qt Designer with Pycharm

PyQt is one of the most commonly used toolkit fir making GUI (Graphical User Interface) based programs in python. You can use Qt Designer tool to easily make GUIs using drag and drop functionality. After you design your GUI using QT Designer , you will get a .ui file which you can convert to .py using pyuic5. It is sometimes a little bit of hassle to do sll this. Luckily for us there exists a much easier way to do all this using PyCharm.