Arjun Thakur has Published 1111 Articles

Use of Ionic as desktop web application with HTML5

Arjun Thakur

Arjun Thakur

Updated on 30-Jul-2019 22:30:22

163 Views

Ionic is an HTML5 Mobile App Development Framework targeted at building hybrid mobile apps. Think of Ionic as the front-end UI framework that handles all the look and feel and UI interactions your app needs to be compelling. Kind of like "Bootstrap for Native", but with the support for a ... Read More

Sum of all proper divisors of a natural number in java

Arjun Thakur

Arjun Thakur

Updated on 30-Jul-2019 22:30:22

356 Views

Following is the Java program which prints all the sum of all the divisors of a given number.

Role of CSS Filters

Arjun Thakur

Arjun Thakur

Updated on 30-Jul-2019 22:30:22

114 Views

Use CSS filters to add special effects to text, images and other aspects of a webpage without using images or other graphics. If you are developing your site for multi browsers, then it may not be a good idea to use CSS filters because there is a possibility that it would ... Read More

CSS Grid Gaps

Arjun Thakur

Arjun Thakur

Updated on 30-Jul-2019 22:30:22

128 Views

The space as shown in the following figure, between rows and columns are called Grid Gaps

Maximum size of a element in HTML

Arjun Thakur

Arjun Thakur

Updated on 30-Jul-2019 22:30:22

1K+ Views

 All web browsers limit the canvas element’s width, height, and area.For Google Chrome, the maximum allowable width and height are 32, 767 pixels and the maximum allowable area is 268, 435, 456 pixels.For Firefox, the maximum allowable width and height are 32, 767 pixels and the maximum allowable area is 472, ... Read More

Play infinitely looping video on-load in HTML5

Arjun Thakur

Arjun Thakur

Updated on 30-Jul-2019 22:30:22

4K+ Views

The tag specifies video. Currently, there are 3 supported video formats for the element that are MP4, WebM, and Ogg. Autoplay is used to start the video when the video and page loads.The loop attribute is a boolean attribute. When present, it specifies that the video will start ... Read More

Java program to print a multiplication table for any number

Arjun Thakur

Arjun Thakur

Updated on 30-Jul-2019 22:30:22

1K+ Views

Following is a Java program which accepts an integer variable from user and prints the multiplication table of that particular integer.Exampleimport java.util.Scanner; public class MultiplicationTable { public static void main(String args[]) { System.out.println("Enter an integer variable :: "); ... Read More

2D transforms in CSS3

Arjun Thakur

Arjun Thakur

Updated on 30-Jul-2019 22:30:22

90 Views

2D transforms are used to re-change the element structure as translate, rotate, scale, and skew.The following table has contained common values that are used in 2D transformsS.NoValues & Description1matrix(n, n, n, n, n, n)Used to defines matrix transforms with six values2translate(x, y)Used to transforms the element along with x-axis and ... Read More

Java Program to Convert OutputStream to String

Arjun Thakur

Arjun Thakur

Updated on 30-Jul-2019 22:30:22

1K+ Views

The java.io.ByteArrayOutputStream.toString() method converts the stream's contents using the platform's default character set. The malformed-input and unmappable-character sequences are replaced by the default replacement string for the platform's default character set.Example Live Demoimport java.io.ByteArrayOutputStream; import java.io.IOException; public class ByteArrayOutputStreamDemo {    public static void main(String[] args) throws IOException {     ... Read More

Comparison between endl and in C++

Arjun Thakur

Arjun Thakur

Updated on 30-Jul-2019 22:30:21

135 Views

"" Outputs a newline (in the appropriate platform-specific representation, so it generates a "\r" on Windows), but std::endl does the same and flushes the stream. Usually, you don't need to flush the stream immediately and it'll just cost you performance, so, for the most part, there's no reason to use ... Read More

Advertisements