All Posts tagged as "backend programming"

R6 class for processing large text files

In this article I will describe a R6 class that I had developed for processing large text files.

Read

Adding Table of Contents to a Gatsby website

Gatsby is a modern CMS that is well suited for publishing Blog posts. However managing a Gatsby Blog is like managing a web application and can be difficult for those not familiar with Software Development. In this blog post I will describe my experience of adding table of contents to my Gatsby Blog.

Read

Adding scroll to top button to a Gatsby website

Scrolling to top is a useful feature for Blogs. It allows readers to scroll to the top of the page any time with a single click of a button. In this article I will describe how to add a scroll to top button to a Gatsby website.

Read

Node.js Table of Contents Generator

Gatsby is a modern CMS that is well suited for publishing Blog posts. However managing a Gatsby Blog is like managing a web application and can be difficult for those not familiar with Software Development. In this blog post I will describe how I managed to add Table of contents to my Gatsby Blog.

Read

PHP and Python - Quick Tips

Following are some quick tips related to PHP and Python

Read

Generating Table of Contents

Table of contents gives an overview of the article. It describes what the article contains. A quick glance at the table of contents gives a useful overview of the article. Most articles have a table of contents which contains links to the important parts of an article.

Read

Using substr_compare function to find out if a file exists in a folder

The substr_compare function is a useful function that can be used to check if a given string occurs at the end of a larger string.

Read

Displaying contents of an array in NXM html table

The following code allows displaying the contents of an array containing X number of elements in a HTML table. The HTML table contains N rows and M columns. The values of X, N and M can be configured:

Read