jQuery | Animation

jQuery is a very powerful JavaScript framework.Using jQuery, we can add special effects to our website or web-based application.

In jQuery, we can produce various types of animation using the animate() method. This method can produce simple to complex animation in the web page. Using animation, we can change the properties of HTML elements such as background colour, changing border styles, changing navigation properties, formatting the font properties, etc.
We apply changes to the properties by providing the styles rules in the params parameter of the method.

Syntax:

$("selector").animate({params}, speed, callback);

where

  • params parameter specifies the CSS property to be changed during execution of animate() method . It is the required parameter.
  • speed parameter specifies the speed at which the effect is applied .They can accept only these values : “slow”, “fast” or milliseconds.
  • call back parameter specifies the function to be executed after the execution of animate() method.
[mai mult...]

How to install Perl on Linux?

Perl programs can be written on any plain text editor like gedit, notepad++, or anything of that sort. One can also use an online IDE for writing Perl codes or can even install one on their system to make it more feasible to write these codes. Using an IDE makes it easier to write Perl codes because IDEs provides a lot of features like intuitive code editor, debugger, compiler, etc.

[mai mult...]

Perl | File Upload in CGI

In Perl, CGI(Common Gateway Interface) is a protocol for executing scripts via web requests or in other words we can say it’s a set of rules and standards that define how information is exchanged between the custom script and Web Server.

Uploading a file on the Web Server is done with the use of a File upload Form. This File upload form is created on any text editor available and the form must be saved with .htm or .html extension. Creation of a File Upload form involves the following steps:

[mai mult...]

Image Processing In Java

Pixels are the smallest unit of an image which consists of four components Alpha (transparency measure), Red, Green, Blue and in short (ARGB). The value of all the components lie between 0 and 255 both inclusive. Zero means the component is absent and 255 means the component is fully present.

[mai mult...]

Afla daca un utilizator este in unul sau mai multe grupuri in ActiveDirectory folosind POWERSHELL

Afla daca un utilizator este in unul sau mai multe grupuri in ActiveDirectory
 folosind POWERSHELL:



$Groups = "Group1","Group2"


$GroupHash = @{}
ForEach ($Group in $Groups)
{   $GroupHash.Add((Get-ADGroup $Group).distinguishedName,(New-Object PSObject -Property @{ GroupName = $Group;Count = 0 }))
}

$Results = ForEach ($User in (Get-ADUser -Filter * -Properties MemberOf))
{   $NotFound = $true
    ForEach ($Group in $User.MemberOf)
    {   If ($GroupHash.ContainsKey($Group))
        {   $NotFound = $false
            Break
        }
    }
    If ($NotFound)
    {   $User
    }
}
$Results | Select SamAccountName,Name,distinguishedName | Sort Name
[mai mult...]

HTML | Design Form

What is HTML Form :
HTML Form is a document which stores information of a user on a web server using interactive controls. An HTML form contains different kind of information such as username, password, contact number, email id etc.
The elements used in an HTML form are check box, input box, radio buttons, submit buttons etc. Using these elements the information of an user is submitted on a web server.

The form tag is used to create an HTML form.

[mai mult...]