Linux Tutorials on the topic “programming”
-
How to Install WildFly with Nginx as a Reverse Proxy on Debian 10
Author: Hitesh Jethva • Tags: debian, linux, nginx, programming • Comments: 0WildFly is a free, open-source and cross-platform application runtime written in Java and developed by Red Hat. Wildfly comes with a rich set of features including, Fast, Customizable Runtime, Scalability, Unified configuration & Management, Concurrent Loading, Fast Linking, Domain Management and many more.
-
How to Install HTTP Git Server with Nginx on Ubuntu 18.04 LTS
Author: Hitesh Jethva • Tags: linux, programming, ubuntu, web server • Comments: 6Git is a free and open source version control system that can be used to track changes of code. Git allows you to create many repositories for the same application and coordinating work on those files among multiple people. It is primarily used for source code management in software development.
-
How to convert HTML to PDF with HTMLDoc on Debian 10
Author: Hitesh Jethva • Tags: debian, linux, programming • Comments: 1HTMLDOC is an open-source program that can be used to convert HTML and Markdown source files to PostScript and PDF files. In this tutorial, we are going to explain how to install HTMLDOC on Debian 10 and convert an HTML file to pdf.
-
-
How to Install GitBucket with Nginx on Ubuntu 18.04 LTS
Author: Hitesh Jethva • Tags: linux, nginx, programming, server, ubuntu • Comments: 1GitBucket is a free and open-source Git platform powered by Scala with Github API compatibility. In this tutorial, we will learn how to install and configure GitBucket on Ubuntu 18.04 server.
-
How to install Jenkins on CentOS and connect it to GitHub
Author: sohan patel • Tags: centos, linux, programming, server • Comments: 1In this article, we will learn how to install Jenkins and configure it with Github for sending files to the server using SSH.
-
Setup Ruby on Rails Development environment with Docker and Docker Compose on Ubuntu
Author: Muhammad Arul • Tags: linux, programming, server, ubuntu, web server • Comments: 2In this tutorial, I will show you how to set up a development environment for Ruby on Rails applications using Docker and Docker compose. We will be using Ubuntu 18.04 as the hosts operating system.
-
Linux C Programming tutorial part 27 - Array of structures
Author: Himanshu Arora • Tags: c-programming, programming • Comments: 0In this ongoing C programming tutorial series, we have been discussing lately about structures. Now, expanding further on the concept of structures, we'll discuss how to create an array of structures using easy to understand examples.
-
Linux C Programming Tutorial Part 26 - Structures and Functions
Author: Himanshu Arora • Tags: c-programming, programming • Comments: 0In one of our previous command line tutorials, we touched upon the concept of Structures. Using easy to understand examples, we discussed basic stuff like what are structures and why are they required. Expanding upon that, in this tutorial, we will discuss how structures and functions can be used together.
-
Linux C Programming Tutorial Part 25 - Function pointers
Author: Himanshu Arora • Tags: c-programming, programming • Comments: 2Just like we have pointers to variables, there can also be pointers to functions. Following is an example of a function pointer declaration.
-
Linux C Programming Tutorial Part 24 - Multi dimensional arrays
Author: Himanshu Arora • Tags: c-programming, programming • Comments: 0If you're following this ongoing C programming tutorial series, you'd be aware of the concept of arrays. To quickly refresh, arrays are used to store multiple values of the same type in continuous storage.