
Search In
With CSS3 @keyframes rules, we can make a fade-in effect for any HTML element we want. In following code, we are just changing the opacity of an element on two different @keyframes states. We can increase the fade-in time by animation-duration proper
// C program to check whether two strings are anagrams
#include <stdio.h>
#include <string.h>
void quickSort(char *arr, int si, int ei); //Function declared for sorting a string
bool areAnagram(char *str1, char *str2) //Function che
Step 1. Create an empty GameObject with Line Renderer attached to it.
Step 2. Create an child GameObject to above with BoxCollider attached to it.
Step 3. Attach the below script to mainCamera
using UnityEngine;
using System
In my previous blog Keyboard Shortcuts for all Web Browsers, I discussed about some commonly used keyboard shortcuts every Web Developer or a Web Designer will love to use. In this blog I will tell you about some keyboard shortcuts you can use while
Notification in Right-Bottom of windows form in WPF
Please download the "Hardcodet.Wpf.TaskbarNotification.dll" and add reference in your WPF project
Codes :
System.Windows.Controls.ContextMenu _menu = new System.Windows.Controls.C
Merge sort is a sorting algorithm that uses "Divide and Conquer" method to sort the array.It divides the array into two halves and then recursively sort the two sub-array and then merge the two sorted sub-arrays into sequence.
Time complexity of Mer
Welcome to Findnerd. Today we are going to discuss the Null coalescing operator and spaceship operator which are added in PHP7. Null coalescing operator is enchanced
version of ternary operator. You should be familar with the ternary operator. We use
If I'm write Heading tag (h1 and h2) in section or aside it shows same font size and if I put this outside of section or aside tag it works normal. Why?
<h1>heading 1</h1>
<h2>heading 2</h2>
<h3>heading 3</h3>
&
In this article we will see how to fetch records in one table that are not present in another table.
First let us create two tables which will be used for illustration purpose:
CREATE TABLE Table1
(
ID INT
)
GO
CREATE TABLE Table2
(
ID I
This function is used to display the rank for every record int the table.The SQL server provides the functionality for providing the RANK if required for every row based on column data.
The RANK function is an inbuilt function in the SQL and
