Questions about this topic? Sign up to ask in the talk tab.

Difference between revisions of "Main Page/Featured Article"

From NetSec
Jump to: navigation, search
Line 1: Line 1:
<center><big>'''Arp poisoning with scapy'''</big></center>
+
<center><big>'''Ruby'''</big></center>
  
Scapy is a [[Python]] library found in most distribution's repositories under "scapy" or "python-scapy" and it must be ran as root for most (if not all) operations. Sniffing in scapy is fairly straight forward using the sniff() function, packet crafting is done by constructing each header individually.
+
'''Ruby''' is an [[interpreted languages|interpreted language]], dynamically, reflective, semi-Functional and Object Orientated scripting language written in [[C]]. Ruby is said to be semi-Functional because it supports higher-order functions (aka lambdas) and closures (aka blocks). Ruby was created by [http://en.wikipedia.org/wiki/Yukihiro_Matsumoto Yukihiro "Matz" Matsumoto] and was first released in 1995.
  
<center>'''''[[Arp poisoning with scapy|Learn more - Arp poisoning with scapy]]'''''</center>
+
Matz's goal was to combine powerful features from various other [[programming]] languages, and create a [[programming language]] maximized for developer happiness; as opposed to computational efficiency. Ruby's Object Model mirrors that of Smalltalk, the syntax shares some similarities with [[Bash]], [[Perl]], [[Python]], and the scoping rules for closures was taken from LISP.
 +
 
 +
<center>'''''[[Ruby|Learn more - Ruby]]'''''</center>

Revision as of 02:42, 14 August 2012

Ruby

Ruby is an interpreted language, dynamically, reflective, semi-Functional and Object Orientated scripting language written in C. Ruby is said to be semi-Functional because it supports higher-order functions (aka lambdas) and closures (aka blocks). Ruby was created by Yukihiro "Matz" Matsumoto and was first released in 1995.

Matz's goal was to combine powerful features from various other programming languages, and create a programming language maximized for developer happiness; as opposed to computational efficiency. Ruby's Object Model mirrors that of Smalltalk, the syntax shares some similarities with Bash, Perl, Python, and the scoping rules for closures was taken from LISP.

Learn more - Ruby