Linux Tutorials on the topic “programming”
-
How to Install GitBucket with Nginx on Ubuntu 18.04 LTS
Author: Hitesh Jethva • Tags: linux, nginx, programming, server, ubuntu • Comments: 0 • Published: Aug 16, 2019GitBucket 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: 1 • Published: Jun 19, 2019In 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: 2 • Published: May 22, 2019In 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.
-
-
Installing and using Git and GitHub on Ubuntu Linux: A beginner's guide
Author: Akshay Pai • Tags: linux, programming, ubuntu • Comments: 120 • Updated: May 17, 2019This tutorial is a quick setup guide for installing and using GitHub and how to perform its various functions of creating a repository locally, connecting this repo to the remote host that contains your project (where everyone can see), committing the changes and finally pushing all the content in the local system to GitHub.
-
Linux C Programming tutorial part 27 - Array of structures
Author: Himanshu Arora • Tags: c/c++, programming • Comments: 0 • Published: May 06, 2019In 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/c++, programming • Comments: 0 • Published: May 03, 2019In 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/c++, programming • Comments: 2 • Published: Apr 29, 2019Just 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/c++, programming • Comments: 0 • Published: Apr 26, 2019If 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.
-
Linux C Programming Tutorial Part 23 - Structures
Author: Himanshu Arora • Tags: c/c++, programming • Comments: 2 • Published: Apr 23, 2019So far in this ongoing C programming tutorial series, we have discussed several aspects, ranging from variables to functions to even pointers. However, that's still like scratching the surface, as there are many other important concepts in the C programming language. Today, in this tutorial, we will discuss one such concept - the concept of structures.
-
Linux C Programming tutorial part 22 - Accessing command line arguments within C program
Author: Himanshu Arora • Tags: c/c++, programming • Comments: 1In the previous tutorial, we discussed multiple concepts related to pointers in C programming language. One of the concepts we discussed was an array of pointers.