Software
Carlos
var usuarioEscoge = prompt("¿Piedra, papel o tijeras?");
var computadorEscoge = Math.random();
if (computadorEscoge <0.34){
computadorEscoge = "piedra";
}else if(computadorEscoge <=0.67){
computadorEscoge = "papel";
}else{
computadorEscoge = "tijeras";
}
var comparar=function(eleccion1, eleccion2){
if(eleccion1 === eleccion2)
{
return "¡Es un empate!";
}
if(eleccion1==="piedra")
{
if(eleccion2==="tijeras"){
return "piedra gana";
}
else{
if(eleccion2==="papel"){
return "papel gana";}
}
}
if(eleccion1==="papel")
{if(eleccion2==="piedra")
{
return "papel gana";
}
}
else{
if(eleccion2==="tijeras"){
return"tijeras gana";}
}
if(eleccion1==="tijeras")
{
if(eleccion2==="Piedra"){
return "piedra gana";
}
else{
if(eleccion2==="papel")
{
return "tijeras gana";
}
}
}
};
comparar(usuarioEscoge, computadorEscoge);
Panda IOT
The idea of the project is to control a 'device' through the USB port and make it available through the network. The device of interest is currently a digital SLR.
Visit www.clicksbyuma.com/pages/category/blog/ for updates.
We will try to update our progress every week.
PandaIOT
Use ISA and PCMCIA cards on Pandaboard - through USB
Project consists of:
- interface hardware - USB2ISA and USB2PCMCIA cards
- supporting software - system software and enumerator
Provides an API set for software developers to allow the work of ISA and PCMCIA cards on Pandaboard, and allows:
- read/write to - I/O and memory spaces
- detecting and handling events generated by - IRQ and DMA channels
Links:
- USB2ISA card - http://arstech.com/install/ecom-prodshow/usb2isar.html
- USB2PCMCIA card - http://arstech.com/install/ecom-prodshow/usb2pcmcia.html
- User's Guide for all products - http://arstech.com/users-guide.pdf
VDriveCar 2
We, a group of students at the Upper Austrian University of Applied Sciences in Hagenberg started a project where we want to control a RC car using wifi. We built an infrastructure where you can control this car from all over the world.
For further details please visit:
http://visioncar2.hagenberg.servus.at/
Genode OS Framework
Genode OS Framework is a tool kit for creating component-based operating systems. It allows the combination of various different OS kernels with a growing set of device drivers, protocol stacks, runtime environments, and applications. In contrast to commodity operating systems, Genode is designed such that critical components do not need to rely on an overly complex system foundation. At the same time, less critical components are able to leverage sophisticated and complex software stacks such as Qt4 or even instances of virtualized Linux kernels.
Learn more about How Genode came to the Pandaboard...
Legacy Linux Kernels on PandaBoard ES
Trying to backport legacy Linux kernels to the PandaBoard ES. I need to verify a software library functions on multiple Linux kernels and multiple platforms. Linux kernel generations are any kernel from 2.6.32 - 2.6.35, and kernel from 2.6.36 - 2.6.39 and the 3.0 kernel.
MicroStation
Project on game console, the blue prints are already laid out I need some minds, brains to help me please contact me at cseck@bryant.edu Thanks again
