Digital Fora
Programming Questions and Answers
Pages
(Move to ...)
Home
Namaste India
▼
Thursday, March 21, 2019
Write a program to draw an equilateral triangle full of '*'
›
#!/usr/bin/perl #This is a Perl program to draw an equilateral triangle full of "*" symbols Program to draw an equilateral t...
Wednesday, March 13, 2019
Left shift a string having n characters without using array - Python
›
#Left shift a string having n characters such that on left shift left most character will move to the rightmost. #String to array conver...
Monday, March 4, 2019
How to use constants in Perl
›
# !/usr/bin/perl # How to use constants in Perl # Best practices include keeping constant's name to be in CAPITALS use 5.14.0; ...
given when statements in Perl
›
# !/usr/bin/perl # given when statements in perl use 5.14.2; use warnings; my $x = 1; say " Hello, World " if $...
Monday, August 6, 2018
Install pdfkit, wkhtmltopdf, wkhtmltoImage on Ubuntu 18.04
›
Install pdfkit, wkhtmltopdf, wkhtmltoImage on Ubuntu 18.04 For Python 3.x sudo apt update sudo apt install python3-pdfkit For P...
Monday, October 31, 2016
What is Dirty COW Vulnerability and how to check and fix this vulnerability
›
What is Dirty COW Vulnerability? Dirty COW is a privilege escalation vulnerability in the Linux Kernel. The Dirty COW vulnerability all...
Saturday, October 8, 2016
Perl: This script is to read only the last line from the file
›
This script is in case if you just need to read the last line from the file. #!/usr/bin/perl #############################################...
›
Home
View web version