Hello guys, Today I am introducing a simple example of how can we make an image flipbook with the help of Turn JS. Turn JS is nothing but a JavaScript library that helps us to create beautiful magazines or books like user view with the advantage of HTML5. Here is the html part, first you […]
Kotlin Programming features in implementing of Extension function
The purpose of extension functions is to add new functions to the existing class which means it can simply add functions to the class without declearing it inside the class. The new function actually behaves like static. It can become part of your own class (like Student) or can become part of the predefined class(like […]
How to use Lambda expression in Java 8
Lambda Expression in Java 8- Lambda expression basically expresses instances of functional interfaces. Lambda expression is a new feature of Java 8. It adds more functionalities like treat functionality as a method with arguments, a function can be created without belonging to any class. The lambda expression is containing two parts the one on the […]
How to use cron job in Laravel?
First, we should know what is a cron job? Cron is a Linux tool, which schedules a command or script on the server to run automatically at a specific time interval. That means no event is needed to run the cron page. Laravel gives us a simple and easy process to activate cron in our […]
Smart Cities in India: A leap to Future
The concept of Smart City was first proposed by IBM as a part of its Smarter Planet Initiative in 2008. So, what does the term ‘Smart City’ actually mean to us, according to the definition it is basically a designation given to a city that incorporates information and communication technologies (ICT) to enhance the quality […]
MongoDB VS MySQL( The Differences Explained)
Mysql has become popular options for organizations around the globe for the past two decades when there is a requirement for the relational database. However, when diversity and volume of data have increased with time, most of the developers prefer a non-relational database like MongoDB. How Data is Stored? MongoDB is an open-source database which is […]
Learn about the Useful Web Applications of Today!
After the invention of smartphones, we can see, people spend most of the time with their handheld devices. It has been noticed that youngsters are more prone to using smartphones than adults. In the last couple of years, this usage has phenomenally increased with access to free internet and high bandwidth permit. Common websites for […]
What are the Advantages of Using Swift Over Objective C for iOS Development?
When do you first know this thing that iOS application is made in Objective C language? In objective C language, implementing each View Controller generate two files one is header file and the other is the main file. That’s why development with Objective C is a little bit tougher to understand for the developers. It is […]
Use of PHP Artisan command with Laravel framework
Laravel is a highly productive oops structure supported PHP framework. In the laravel framework, PHP artisan command is combined with the command line interface. Laravel application provides command line setup facilities where you can create and manage your project from command line. PHP artisan provides several numbers of commands which are very important and useful […]
How to use “when” expression in Kotlin programming language?
”when” is nothing but ‘Switch’ statement in C and Java language.There is also default case but this is expressed with else in When block.There is no break statement.We can attach multiple cases as well as a range(like 1…20) in one case.Also we can attach multiple condition in one case.The appropriate example is written below- fun […]