SERVFORU

Update Your Samsung Galaxy ACE GT S5830i with Android 4.1.1 Jeally Bean

  When it comes to custom ROMs firmware, the Galaxy Ace users can choose from a long list of updates, though they should be aware that not all the OS improvements are working properly. Also, not all the ROMs can be installed on both versions of the device, the S5830i and the S5830, therefore you must check the compatibility first. Anyway, today, I will teach you how to update the S5830i variant of the Galaxy Ace to Jelly Bean 4.1.1......
 

Architecture of Wireless Sensor Networks

The concept of wireless sensor networks is based on a simple equation: Sensing + CPU + Radio = Thousands of potential applications As soon as people understand the capabilities of a wireless sensor network, hundreds of applications spring to mind. It seems like a straightforward combination of modern technology. WSN OSI layers Transport layer: The function of this layer is to provide reliability and congestion avoidance where......
 

Simulating Denial of Services Attack in Wireless Sensor Networks

Program ########################################################################### # security.tcl # auther : Ebin Ephrem # http://servforu.blogspot.com # mail2ebine@gmail.com #Simulation settings - security #IEEE 802.11 with Distributed co ordination function #nominal bit rate 2 Mb/s #radio range 100 meter #random way-point model #node speed  1 m/s - 15 m/s #CBR 20 nodes #source generate 512 bytes #transmission rate 4 packets /sec #area of simulation 1000m x 300 m #number of nodes is 50 #total simulation time 500 sec #AODV routing protocol used #=================================== #......
 

Tcl and OTcl Tutorial for NS2 - Program to find Factorial

 Fractorial Computation: tcl script to obtain the value of 10! = 10 * 9 * ... * 1. get factorial.tcl and run the script; write a function to compute 2^x, test your answer. Execute the script as: $ tclsh lab1a.tcl or$ ns lab1a.tcl ################################################################################ #filename : factorial.tcl# define function to compute Factorial X! proc Factorial {x} {     # define variable     set result 1         # for loop     for {set i 1} {$i <= $x} {incr i} { set result [expr $result......
 

Tcl and OTcl Tutorial For NS2 - Procedures

Procedures Procedures are an essential component of Tcl and can be used to make programming ns simpler. As in any functional programming language, procedures can be used for repetitive tasks, or simply to logically break down the tasks in the program.Procedures are defined in Tcl as follows: proc proc1 {} {    puts "in procedure proc1"} This defines a procedure that takes no parameters and prints out "in procedure proc1". To call this procedure proc1 can be used.A procedure with parameters can be defined as follows: proc proc2 {parameter1} {    puts "the value......
 

Tcl and OTcl Tutorial For NS2 -Loops and Conditional Statements

For loops For loops are very useful in ns and can be used in conjunction with arrays to easily create larger network topologies. To generate 100 nodes, the following code can be used: for {set i 0}{$i < 100}{incr i} {    set n($i) [$ns node]} While loops These are very similar to for loops. The syntax is set i 0while {$i < 10} {    set n($i) [new Node]    incr i} If statements If statements are very simple if {$i < 10} {    puts "i is less than 10"}if {$var2 == "Tcl Variable 2"} {    puts "var2 = Tcl Variable......
 

Tcl and OTcl Tutorial For NS2 - variables and arrays

Variables and arrays Defining a variable in Tcl is very simple: set var1 1set var2 "Tcl Variable 2" The variables can be referenced by prefixing the variable name with a $. For example to print the above variables, we can use puts "var1=$var1, var2=$var2" Any situation in which you require that the value of the variable be used is one in which the $ prefix should be added to the variable name. In some situations, it is necessary to use the variable name directly. For example incr var1 can be used to increment var1. I guess you can think of it as the difference between call-by-reference and......
 
 
Support : Ebin EPhrem | Ebin Ephrem | #Gabbarism
Copyright © 2011. Services | Embedded Support | Reviews | Virtual Technologys - All Rights Reserved
Template Created by ebinephrem.com Published by Ebin Ephrem
Proudly powered by Blogger