<tutorialjinni.com/>

Get Full URL in PHP

Posted Under: Programming on Nov 20, 2020
Get Full URL in PHP
PHP code snippet to get the complete URL typed in the browser. It will get complete URL with query string.

R Programming Language Linux Installation

Posted Under: Programming on Apr 13, 2020
R Programming Language Linux Installation
Installation of R programming language in pretty straight forward on Linux.

R Language Hello World Program

Posted Under: Programming on Apr 13, 2020
R Language Hello World Program
To get started first we need to install R language. Then we will write our first "Hello, world!" Program. As needed, you can program at the R language command prompt, or you can write programs using R language script files.

R Language Quick Introduction

Posted Under: Programming on Apr 13, 2020
R Language Quick Introduction
R language is a programming language and software environment for statistical analysis, graphical representation and reporting. The R language was created by Ross Ihaka and Robert Gentleman at the University of Auckland, New Zealand, and is currently developed by the R language development core team.

Python Remove Duplicates From List

Posted Under: Programming on Apr 8, 2020
Python Remove Duplicates From List
Removing duplicates in from a list in Python is a simple operation and the results can be achieved using different methods and techniques. First very common way is to use Python set. Set is a collection of unordered unique object.