Commit 0afbc48d by Nelson Ruiz

primer commit en Roshka

parents
# para ejecutar
#python3 toro_vaca.py
#hshah@roshka.com
#Funcion para validar el numero ingresado tanto para el jugador A como para el jugador B
def numero_valido(numero):
#Verifica que el valor de entrada sea un valor valido
if(not numero.isdigit()):
print("Entrada con dato incorrecto")
return False
#verifica que el numero sea de 4 cifras
elif ((int(numero) < 1000 or int(numero) > 9999)):
print("El numero debe tener 4 digitos, ingrese de nuevo")
return False
#verifica que el numero no tenga valores repetidos
#el tipo set es una clase que elimina los elementos repetidos en un cojunto
else:
if ( not (len(numero)==len(set(numero)))):
print("El numero no debe tener digitos repetidos, ingrese de nuevo")
return False
return True
numero = (input("Ingrese el numero a adivinar: "))
# Verifica si es valido el numero si no lo es se debe volver a introducir el numero
lista=[]
while(not numero_valido(numero)):
numero = (input("Ingrese el numero a adivinar: "))
vacas=0
toros=0
intentos=0
while(intentos<=12):
intentos=intentos+1#contador de intentos
#si el intento es mas de 12 gana el jugador A y termina el programa
if(intentos==13):
print ("FIN DEL JUEGO - GANÓ A")
break
#se ingrese el numero elegido por el jugador B
print("Intento B ",intentos,": ",end=" ")
numero_B=input()
#se valida el numero elegido por el jugador B
while(not numero_valido(numero_B)):
numero_B = (input("Ingrese numero del jugador B: "))
#compara los digitos con sus respectivas posiciones para contar la cantidad de toros
lista.append(numero)
for i in range(4):
if(numero[i]==numero_B[i]):
toros=toros+1
#compara los digitos de numero y numero_B para contar la cantidad de vacas
for i in range(4):
for j in range(4):
if (numero[i]==numero_B[j] and numero[j]!=numero_B[j]):
vacas=vacas+1
#va imprimiendo los resultados en pantalla
print("RESPUESTA A: ",toros," TOROS, ", vacas," VACAS")
#si el numero elegido por B es igual al numero elegido por A antes de pasar los 12 intentos,entonces gana B
if(numero==numero_B):
print ("FIN DEL JUEGO - GANÓ B en ",intentos," INTENTOS")
break
toros=0
vacas=0
public class Bisiesto {
//Son bisiestos todos los años múltiplos de 4, excepto aquellos que
//son múltiplos de 100 pero no de 400. Por ejemplo, años múltiplos de 4 son:
public static void main(String[] args) {
for(int anio=1996; anio<=2021;anio++){//años bisiestos desde 1996 al 2021
if ( anio % 4 == 0 && anio % 100 != 0 || anio % 400 == 0){
System.out.println("Anio: "+anio);
}
}
}
}
//practica de set y get
class Boxx {
public float ancho;
public float largo;
public float profundidad;
public float volumen;
/* public Boxx(int anch,int larg,int prof){
this.ancho=anch;
this.largo=larg;
this.profundidad=prof;
}
*/
public void setDatos(float anch,float larg,float prof){
this.ancho=anch;
this.largo=larg;
this.profundidad=prof;
}
public void calcularVolumen(){
this.volumen=ancho*largo*profundidad;
}
public float getDatos(){
return this.volumen;
}
}
public class Box{
public static void main(String[] args) {
Boxx obj= new Boxx();
obj.setDatos(2,3,5);
obj.calcularVolumen();
System.out.println("Volumen= "+obj.getDatos()+" m2");
}
}
class Pila{
private int top;
private int []s;
private int capacidad;
public Pila(int cap){
this.top=-1;
this.capacidad=cap;
this.s=new int[this.capacidad];
}
public int longitud(){//obtiene la logitud de la pila
return this.top+1;
}
public boolean esVacia(){//verifica si la pila está vacia si el contador top es meor a 0
if(this.top<0){
return true;
}else{
return false;
}
}
public void push(int numero){//agreaga elementos a la pila
if (longitud()<this.capacidad){
s[++this.top]=numero;
}
}
public int pop(){//quita un elemento de la pila y lo reemplaza con 0 , es decir 0 significa que no tiene elmentos en ese lugar
int aux;
if(esVacia()) return 0;
aux=s[top];
s[top--]=0;
return aux;
}
public void imprimir(){//imprime la pila
for(int i=0;i<this.capacidad;i++){
System.out.println(this.s[i]);
}
}
}
public class ClassPila {
public static void main(String[] args) {
Pila pila=new Pila(5);
pila.push(2);
pila.push(1);
pila.push(3);
pila.push(4);
pila.push(6);
pila.pop();
pila.imprimir();
}
}
class Estaciones {
public static void main(String[] args) {
int numero = 11;//el valor del mes
switch(numero)
{
case 12:
System.out.println("Es verano");
break;
case 1:
System.out.println("Es verano");
break;
case 2:
System.out.println("Es verano");
break;
case 3:
System.out.println("Es otonio");
break;
case 4:
System.out.println("Es otonio");
break;
case 5:
System.out.println("Es otonio");
break;
case 6:
System.out.println("Es invierno");
break;
case 7:
System.out.println("Es invierno");
break;
case 8:
System.out.println("Es invierno");
break;
case 9:
System.out.println("Es primavera");
break;
case 10:
System.out.println("Es primavera");
break;
case 11:
System.out.println("Es primavera");
break;
default:
System.out.println("numero no es valido");
break;
}
}
}
import java.util.Scanner;
class Lenguajes{
public static void main(String[] args) {
int numero;
Scanner read=new Scanner(System.in);
do{
System.out.println("1-PHP");
System.out.println("2-JAVA");
System.out.println("3-PYTHON");
System.out.println("4-C");
System.out.println("5-R");
System.out.println("6-RUBY");
System.out.println("7-Salir");
numero=read.nextInt();
System.out.println("\n");
switch(numero)
{
case 1:
System.out.println("PHP (acrónimo recursivo de PHP: Hypertext Preprocessor )");
System.out.println("\n");
break;
case 2:
System.out.println("Java es un lenguaje de programación una plataforma informática comercializada por primera vez en 1995 por Sun Microsystems");
System.out.println("\n");
break;
case 3:
System.out.println("Python es un lenguaje sencillo de leer y escribir debido a su alta similitud con el lenguaje humano");
System.out.println("\n");
break;
case 4:
System.out.println("C se utiliza, entre otras cosas, para el desarrollo de sistemas operativos");
System.out.println("\n");
break;
case 5:
System.out.println("R es un entorno de programación libre que se utiliza para el procesamiento y análisis estadístico");
System.out.println("\n");
break;
case 6:
System.out.println("El lenguaje Ruby se utiliza principalmente en el desarrollo de aplicaciones web");
System.out.println("\n");
break;
default:
break;
}
}while(numero!=7);
}
}
#include <stdio.h>
int numero=3;
int main(){
switch (numero){
case 12:
printf("Es verano");
break;
case 1:
printf("Es verano");
break;
case 2:
printf("Es verano");
break;
case 3:
printf("Es otoño");
break;
case 4:
printf("Es Otoño");
break;
case 5:
printf("Es otoño");
break;
case 6:
printf("Es invierno");
break;
case 7:
printf("Es invierno");
break;
case 8:
printf ("Es invierno");
break;
case 9:
printf("Es primavera");
break;
case 10:
printf("Es primavera");
break;
case 11:
printf("Es primavera");
break;
default:
printf("Numero no valido");
break;
}
return 0;
}
\ No newline at end of file
class Notas{
public int notas[];
public int n;
public int contador;
public Notas (int dim){//constructor
this.notas= new int[dim];
this.contador=0;
}
public void setNotas(int notas){//agrega las notas al array
this.notas[this.contador]=notas;
this.contador++;
}
}
class Estudiante{
Notas nota;
int cantidad;
public Estudiante(int cantidad){
this.cantidad=cantidad;
nota=new Notas(this.cantidad);//crea un objeto Notas
}
public void getNotas(){//imprime las notas
for(int i=0;i<this.cantidad;i++)
System.out.println(nota.notas[i]);
}
public void setNnotas(int notas){//carga las notas invocando al objeto notas
nota.setNotas(notas);
}
}
public class ClaseNotas {
public static void main(String[] args) {
Estudiante estudiante=new Estudiante(5);
estudiante.setNnotas(5);
estudiante.setNnotas(5);
estudiante.setNnotas(5);
estudiante.setNnotas(5);
estudiante.setNnotas(5);
estudiante.getNotas();
}
}
//ejemplo de herencia
class Cliente{
String nombre;
public Cliente(String nombre){
this.nombre=nombre;
}
public String getNombre(){
return this.nombre;
}
}
class ClientePlata extends Cliente{
String servicios;
public ClientePlata(String nombre,String servicios){
super(nombre);
this.servicios=servicios;
}
public String getServicios(){
return this.servicios;
}
/* @Override
public String getNombre() {
return super.getNombre();
}*/
}
class ClienteOro extends ClientePlata{
String beneficios;
public ClienteOro(String nombre,String servicios,String beneficios){
super(nombre, servicios);
this.beneficios=beneficios;
}
public String getBeneficios(){
return this.beneficios;
}
}
class ClientePremium extends ClienteOro{
String premio;
public ClientePremium(String nombre,String servicios,String beneficios,String premio){
super(nombre, servicios, beneficios);
this.premio=premio;
}
}
public class Herencia {
public static void main(String[] args) {
ClientePlata cp=new ClientePlata("nelson","masaje");//creo un objeto ClientePlata e instancio
System.out.println("nombre: "+cp.getNombre());
System.out.println("servicio: "+cp.getServicios());
}
}
//practica de polimorfismo
class Boxx {
public float ancho;
public float largo;
public float profundidad;
public Boxx(float anch,float larg){
this.ancho=anch;
this.largo=larg;
this.profundidad=1;
}
public Boxx(float anch,float larg,float prof){
this.ancho=anch;
this.largo=larg;
this.profundidad=prof;
}
public void setDatos(int ancho,int largo,int profundidad){
this.ancho=ancho;
this.largo=largo;
this.profundidad=profundidad;
}
public void setDatos(float ancho,float largo,float profundidad){
this.ancho=ancho;
this.largo=largo;
this.profundidad=profundidad;
}
public float getVolumen(){
float volumen=this.ancho*this.largo*this.profundidad;
return volumen;
}
}
public class Operaciones{
public static void main(String[] args) {
Boxx obj= new Boxx(2,3);
Boxx obj2=new Boxx(2,2,3);
System.out.println("Volumen obj: "+obj.getVolumen());
System.out.println("Volumen obj2: "+obj2.getVolumen());
}
}
class Factura{
private static float iva1;
public Factura(int n){
iva1=n;
}
public static float getIva(){//solo puede retornar variables estaticas
return iva1;//si iva1 no es static va a dar un error
}
}
public class PruebaStatic {
public static void main(String[] args) {
Factura f1=new Factura(5);
Factura f2=new Factura(4);
System.out.println(f1.getIva());
System.out.println(f2.getIva());
}
}
class Pila{
private int top;
private int []s;
private int capacidad;
public Pila(int cap){
this.top=-1;
this.capacidad=cap;
this.s=new int[this.capacidad];
}
public int longitud(){//obtiene la logitud de la pila
return this.top+1;
}
public boolean esVacia(){//verifica si la pila está vacia si el contador top es meor a 0
if(this.top<0){
return true;
}else{
return false;
}
}
public void push(int numero){//agreaga elementos a la pila
if (longitud()<this.capacidad){
s[++this.top]=numero;
}
}
public int pop(){//quita un elemento de la pila y lo reemplaza con 0 , es decir 0 significa que no tiene elmentos en ese lugar
int aux;
if(esVacia()) return 0;
aux=s[top];
s[top--]=0;
return aux;
}
public void imprimir(){//imprime la pila
for(int i=0;i<this.capacidad;i++){
System.out.println(this.s[i]);
}
}
public void sortStack(){
int temp;
if ( !(esVacia())){
temp = pop();
sortStack();
sortedInsert(temp);
}
}
public void sortedInsert( int element){
int temp;
if (esVacia() || element > s[this.top] ){
push(element);
}
else{
temp = pop();
sortedInsert(element);
push (temp);
}
}
}
public class SortPila {
public static void main(String[] args) {
Pila pila=new Pila(5);
pila.push(2);
pila.push(1);
pila.push(3);
pila.push(4);
pila.push(6);
pila.sortStack();
pila.imprimir();
}
}
/*● Consultar todas las películas(film).
● Consultar todas las filas de film_actor donde actor_id es de Johnny(join)
● Consultar todas las filas de film_actor donde actor_id es de Johnny or Penelope(join)
● Consultar todas las filas de film_actor donde actor_id es de Johnny and Penelope(join)
● Consultar todas las filas de film_category donde category_id es en (Action, Comedy)
● Consultar todas las filas de film donde titlle se empieza con A
● Consultar todas las filas de film donde titlle se termina con B
● Consultar todas las filas de payment donde amount es entre 0 y 5.
● Consultar todas las filas de film donde title no es "Analyze Hoosiers"
*/
/*muestra las columnas de title y description
ordenando de forma alfabetica con las columna title */
SELECT title,description FROM film
ORDER BY title;
SELECT first_name from film_actor
JOIN film ON film.film_id=film_actor.film_id
JOIN actor ON film_actor.actor_id= actor.actor_id
where first_name='Johnny';
SELECT first_name from film_actor
JOIN film ON film.film_id=film_actor.film_id
JOIN actor ON film_actor.actor_id= actor.actor_id
where first_name='Johnny' OR first_name='Penelope';
SELECT first_name from film_actor
JOIN film ON film.film_id=film_actor.film_id
JOIN actor ON film_actor.actor_id= actor.actor_id
where first_name='Johnny' AND first_name='Penelope';
SELECT last_update from film_category
JOIN category ON film_category.category_id=film_category.category_id
WHERE category.name='Action' OR category.name='Comedy';
SELECT title FROM film WHERE title LIKE 'A%';
SELECT title FROM film WHERE title LIKE '%b';
SELECT DISTINCT staff_id,amount FROM payment WHERE amount>=0 AND amount<=5 ;
SELECT DISTINCT title FROM film WHERE NOT title='Analyze Hoosiers';
class Box {
public float ancho;
public float largo;
public float profundidad;
public float volumen;
public Box(){ }
public Box(Box b){
this.ancho=b.ancho;
this.largo=b.largo;
this.profundidad=b.profundidad;
}
public Box(float anch,float larg,float prof){
this.ancho=anch;
this.largo=larg;
this.profundidad=prof;
}
public Box(float cubo){
this.ancho=cubo;
this.largo=cubo;
this.profundidad=cubo;
}
public void calcularVolumen(){
this.volumen=this.largo*this.ancho*this.profundidad;
}
public float getVolumen(){
return this.volumen;
}
}
class BoxPeso extends Box{
float peso;
public BoxPeso(){
super();
}
public BoxPeso(Box b){
super(b);
}
public BoxPeso(float ancho,float largo,float profundidad){
super(ancho,largo,profundidad);
}
public BoxPeso(float cubo,float peso){
super(cubo);
this.peso=peso;
}
public float getPeso(){
return this.peso;
}
}
class Envio extends BoxPeso {
float ancho;
float largo;
float profundidad;
public Envio(){
super();
}
public Envio(Box b){
super(b);
}
public Envio(float ancho,float largo,float profundidad){
super(ancho,largo,profundidad);
}
public Envio(float cubo,float peso){
super(cubo,peso);
}
}
public class polimorfismo{
public static void main(String[] args) {
Envio obj1= new Envio(2,3);//envio los atribuo lado de un cubo y el peso
Box box1=new Box(1,2,3);//crea un objeto Box
Envio obj2= new Envio(box1);//envia el objeto box e inicializa con sus datos
obj1.calcularVolumen();
obj2.calcularVolumen();
System.out.println("Volumen del objeto 1= "+obj1.getVolumen());//imprime el volumen
System.out.println("Peso del objeto1= "+obj1.getPeso());//obtiene el peso
System.out.println("Volumen del objeto 2= "+obj2.getVolumen());//obtiene el volumen del objeto 2
}
}
CREATE TABLE Local (
id_local SERIAL PRIMARY KEY,
direccion varchar
);
CREATE TABLE Transporte_Articulo (
id_transporte_articulo SERIAL PRIMARY KEY
);
CREATE TABLE Transporte (
id_transporte SERIAL PRIMARY KEY,
tipo_transporte varchar,
ruta varchar,
id_transporte_articulo int
);
CREATE TABLE Articulo (
id_articulo SERIAL PRIMARY KEY,
peso int,
dimesion float,
importe float,
destino varchar,
fecha_entrega date,
id_local int,
id_transporte_articulo int
);
ALTER TABLE Transporte ADD FOREIGN KEY (id_transporte_articulo) REFERENCES Transporte_Articulo (id_transporte_articulo);
ALTER TABLE Articulo ADD FOREIGN KEY (id_local) REFERENCES Local (id_local);
ALTER TABLE Articulo ADD FOREIGN KEY (id_transporte_articulo) REFERENCES Transporte_Articulo (id_transporte_articulo);
INSERT INTO Local(direccion) Values('Ypane');
INSERT INTO Local(direccion) Values('Ñemby');
INSERT INTO Transporte_Articulo Values(1);
INSERT INTO Transporte_Articulo Values(2);
INSERT INTO Transporte(tipo_transporte,ruta,id_transporte_articulo) Values('Avion','ACCESO',1);
INSERT INTO Transporte(tipo_transporte,ruta,id_transporte_articulo) Values('Avion','ACCESO',2;
INSERT INTO Articulo(peso,dimesion,importe,destino,fecha_entrega,id_local,id_transporte_articulo)
VALUES(1,2,12,'ÑEMBY',NULL,1,1);
INSERT INTO Articulo(peso,dimesion,importe,destino,fecha_entrega,id_local,id_transporte_articulo)
VALUES(12,1,2,'Ypane',NULL,2,2);
SELECT Articulo.id_articulo from Articulo
join Local ON Articulo.id_local=Local.id_local;
interface Formas{
boolean cuadraTexto();
}
class Circulo implements Formas{
float area;
float radio;
String color;
String letras;
public Circulo(float radio,String color,String letras){
this.radio=radio;
this.color=color;
this.letras=letras;
}
public boolean cuadraTexto(){
if(this.letras.length()<=this.radio){
return true;
}
return false;
}
}
class Rectangulo implements Formas{
float largo;
float ancho;
float area;
String color;
String letras;
public Rectangulo(float largo,float ancho,String color,String letras){
this.largo=largo;
this.ancho=ancho;
this.color=color;
this.letras=letras;
}
public boolean cuadraTexto(){
if(this.letras.length()<=this.largo){
return true;
}
return false;
}
}
public class InterfacesDia3 {
public static void main(String[] args) {
Rectangulo cartelRectangulo=new Rectangulo(5,2,"ROJO","HOLA");
System.out.println("Es la dimension correcta para la forma de un rectangulo?: "+cartelRectangulo.cuadraTexto());
Circulo cartelCirculo=new Circulo(4, "ROJO", "PALABRA");
System.out.println("Es la dimension correcta para la forma de un circulo?: "+cartelCirculo.cuadraTexto());
}
}
/*● Consulta todos los clientes que han alquilado películas
● Obtenga todos los clientes que hayan vencido la fecha de vencimiento de pago.
Muestra también por qué películas vencen sus pagos.
● ¿Cuáles son las categorías más alquiladas?
● Cuales son las categorías más alquiladas agrupadas por cliente.
● Cual es el lenguaje más alquilado
● Cuál empleados son los mejores. Significa cual empleados se alquila maximo películas.
● Quién es el actor más famoso. Significa películas de cual actor se alquila maximo.
● Quien es el mejor cliente. ¿Significa quien alquila máximo?*/
SELECT first_name From customer
JOIN rental ON customer.customer_id=rental.customer_id;
select DISTINCT f.film_id, f.title, first_name from customer c
join rental r on c.customer_id=r.customer_id
JOIN payment p ON p.rental_id=r.rental_id
JOIN inventory i ON i.inventory_id=r.inventory_id
JOIN film f ON f.film_id=i.film_id
where r.return_date<current_date
LIMIT 10;
/*¿Cuáles son las categorías más alquiladas?*/
select c.category_id ,c.name, COUNT(r.rental_id) cont FROM category c
JOIN film_category fc ON c.category_id=fc.category_id
JOIN film f ON F.film_id=fc.film_id
JOIN inventory i ON i.film_id=f.film_id
JOIN rental r ON r.inventory_id=i.inventory_id
GROUP BY(c.category_id)
ORDER BY(cont) desc
;
select cus.first_name,c.name, COUNT(r.rental_id) AS cont FROM category c
JOIN film_category fc ON c.category_id=fc.category_id
JOIN film f ON F.film_id=fc.film_id
JOIN inventory i ON i.film_id=f.film_id
JOIN rental r ON r.inventory_id=i.inventory_id
JOIN customer cus ON cus.customer_id=r.customer_id
GROUP BY(c.name,cus.first_name)
ORDER BY(cus.first_name,COUNT(r.rental_id)) DESC
;
SELECT l.name,COUNT(r.rental_id) FROM language l
JOIN film f ON l.language_id=f.language_id
JOIN inventory i ON f.film_id=i.film_id
JOIN rental r ON i.inventory_id=r.inventory_id
GROUP BY(l.name)
ORDER BY(COUNT(r.rental_id)) DESC
LIMIT(1);
;
SELECT s.first_name ,COUNT(r.rental_id) FROM staff s
JOIN payment p ON s.staff_id=p.staff_id
JOIN rental r ON r.rental_id=p.rental_id
GROUP BY (s.first_name)
ORDER BY(COUNT(r.rental_id)) DESC
;
SELECT a.first_name, COUNT(r.rental_id) FROM actor a
JOIN film_actor fa ON a.actor_id=fa.actor_id
JOIN film f ON fa.film_id=f.film_id
JOIN inventory i ON f.film_id=i.film_id
JOIN rental r ON i.inventory_id=r.inventory_id
GROUP BY (a.first_name)
ORDER BY(COUNT(r.rental_id)) DESC
LIMIT(1)
;
SELECT first_name,count (rental.rental_id) From customer
JOIN rental ON customer.customer_id=rental.customer_id
GROUP BY(first_name)
ORDER BY(COUNT(rental.rental_id)) DESC
LIMIT (1)
;
\ No newline at end of file
<html>
<head>
<script>
//funcion que muestra lo que se selecciona en la pantalla
function digitos(val)
{
document.getElementById("resultado").value+=val
}
//funcion que evalua la caena de entrada y lo evalua
function resolver()
{
let x = document.getElementById("resultado").value
let y = eval(x)
document.getElementById("resultado").value = y
}
//limpia la pantalla
function clr()
{
document.getElementById("resultado").value = ""
}
</script>
</head>
<body>
<div class = title >Calculadora</div>
<table border="4">
<tr>
<td colspan="5"><input type="text" id="resultado"/></td>
<td><input type="button" value="c" onclick="clr()"/> </td>
</tr>
<tr>
<td><input type="button" value="1" onclick="digitos('1')"/> </td>
<td><input type="button" value="2" onclick="digitos('2')"/> </td>
<td><input type="button" value="3" onclick="digitos('3')"/> </td>
<td><input type="button" value="/" onclick="dis('/')"/> </td>
</tr>
<tr>
<td><input type="button" value="4" onclick="digitos('4')"/> </td>
<td><input type="button" value="5" onclick="digitos('5')"/> </td>
<td><input type="button" value="6" onclick="digitos('6')"/> </td>
<td><input type="button" value="-" onclick="digitos('-')"/> </td>
</tr>
<tr>
<td><input type="button" value="7" onclick="digitos('7')"/> </td>
<td><input type="button" value="8" onclick="digitos('8')"/> </td>
<td><input type="button" value="9" onclick="digitos('9')"/> </td>
<td><input type="button" value="+" onclick="digitos('+')"/> </td>
</tr>
<tr>
<td><input type="button" value="." onclick="digitos('.')"/> </td>
<td><input type="button" value="0" onclick="digitos('0')"/> </td>
<td><input type="button" value="=" onclick="resolver()"/> </td>
<td><input type="button" value="*" onclick="digitos('*')"/> </td>
</tr>
</table>
</body>
</html>
class Usuairo{
String nombreUsuario;
}
public class Twitter {
}
File added
File added
1 Penelope Guiness 2013-05-26 14:47:57.62
2 Nick Wahlberg 2013-05-26 14:47:57.62
3 Ed Chase 2013-05-26 14:47:57.62
4 Jennifer Davis 2013-05-26 14:47:57.62
5 Johnny Lollobrigida 2013-05-26 14:47:57.62
6 Bette Nicholson 2013-05-26 14:47:57.62
7 Grace Mostel 2013-05-26 14:47:57.62
8 Matthew Johansson 2013-05-26 14:47:57.62
9 Joe Swank 2013-05-26 14:47:57.62
10 Christian Gable 2013-05-26 14:47:57.62
11 Zero Cage 2013-05-26 14:47:57.62
12 Karl Berry 2013-05-26 14:47:57.62
13 Uma Wood 2013-05-26 14:47:57.62
14 Vivien Bergen 2013-05-26 14:47:57.62
15 Cuba Olivier 2013-05-26 14:47:57.62
16 Fred Costner 2013-05-26 14:47:57.62
17 Helen Voight 2013-05-26 14:47:57.62
18 Dan Torn 2013-05-26 14:47:57.62
19 Bob Fawcett 2013-05-26 14:47:57.62
20 Lucille Tracy 2013-05-26 14:47:57.62
21 Kirsten Paltrow 2013-05-26 14:47:57.62
22 Elvis Marx 2013-05-26 14:47:57.62
23 Sandra Kilmer 2013-05-26 14:47:57.62
24 Cameron Streep 2013-05-26 14:47:57.62
25 Kevin Bloom 2013-05-26 14:47:57.62
26 Rip Crawford 2013-05-26 14:47:57.62
27 Julia Mcqueen 2013-05-26 14:47:57.62
28 Woody Hoffman 2013-05-26 14:47:57.62
29 Alec Wayne 2013-05-26 14:47:57.62
30 Sandra Peck 2013-05-26 14:47:57.62
31 Sissy Sobieski 2013-05-26 14:47:57.62
32 Tim Hackman 2013-05-26 14:47:57.62
33 Milla Peck 2013-05-26 14:47:57.62
34 Audrey Olivier 2013-05-26 14:47:57.62
35 Judy Dean 2013-05-26 14:47:57.62
36 Burt Dukakis 2013-05-26 14:47:57.62
37 Val Bolger 2013-05-26 14:47:57.62
38 Tom Mckellen 2013-05-26 14:47:57.62
39 Goldie Brody 2013-05-26 14:47:57.62
40 Johnny Cage 2013-05-26 14:47:57.62
41 Jodie Degeneres 2013-05-26 14:47:57.62
42 Tom Miranda 2013-05-26 14:47:57.62
43 Kirk Jovovich 2013-05-26 14:47:57.62
44 Nick Stallone 2013-05-26 14:47:57.62
45 Reese Kilmer 2013-05-26 14:47:57.62
46 Parker Goldberg 2013-05-26 14:47:57.62
47 Julia Barrymore 2013-05-26 14:47:57.62
48 Frances Day-Lewis 2013-05-26 14:47:57.62
49 Anne Cronyn 2013-05-26 14:47:57.62
50 Natalie Hopkins 2013-05-26 14:47:57.62
51 Gary Phoenix 2013-05-26 14:47:57.62
52 Carmen Hunt 2013-05-26 14:47:57.62
53 Mena Temple 2013-05-26 14:47:57.62
54 Penelope Pinkett 2013-05-26 14:47:57.62
55 Fay Kilmer 2013-05-26 14:47:57.62
56 Dan Harris 2013-05-26 14:47:57.62
57 Jude Cruise 2013-05-26 14:47:57.62
58 Christian Akroyd 2013-05-26 14:47:57.62
59 Dustin Tautou 2013-05-26 14:47:57.62
60 Henry Berry 2013-05-26 14:47:57.62
61 Christian Neeson 2013-05-26 14:47:57.62
62 Jayne Neeson 2013-05-26 14:47:57.62
63 Cameron Wray 2013-05-26 14:47:57.62
64 Ray Johansson 2013-05-26 14:47:57.62
65 Angela Hudson 2013-05-26 14:47:57.62
66 Mary Tandy 2013-05-26 14:47:57.62
67 Jessica Bailey 2013-05-26 14:47:57.62
68 Rip Winslet 2013-05-26 14:47:57.62
69 Kenneth Paltrow 2013-05-26 14:47:57.62
70 Michelle Mcconaughey 2013-05-26 14:47:57.62
71 Adam Grant 2013-05-26 14:47:57.62
72 Sean Williams 2013-05-26 14:47:57.62
73 Gary Penn 2013-05-26 14:47:57.62
74 Milla Keitel 2013-05-26 14:47:57.62
75 Burt Posey 2013-05-26 14:47:57.62
76 Angelina Astaire 2013-05-26 14:47:57.62
77 Cary Mcconaughey 2013-05-26 14:47:57.62
78 Groucho Sinatra 2013-05-26 14:47:57.62
79 Mae Hoffman 2013-05-26 14:47:57.62
80 Ralph Cruz 2013-05-26 14:47:57.62
81 Scarlett Damon 2013-05-26 14:47:57.62
82 Woody Jolie 2013-05-26 14:47:57.62
83 Ben Willis 2013-05-26 14:47:57.62
84 James Pitt 2013-05-26 14:47:57.62
85 Minnie Zellweger 2013-05-26 14:47:57.62
143 River Dean 2013-05-26 14:47:57.62
86 Greg Chaplin 2013-05-26 14:47:57.62
87 Spencer Peck 2013-05-26 14:47:57.62
88 Kenneth Pesci 2013-05-26 14:47:57.62
89 Charlize Dench 2013-05-26 14:47:57.62
90 Sean Guiness 2013-05-26 14:47:57.62
91 Christopher Berry 2013-05-26 14:47:57.62
92 Kirsten Akroyd 2013-05-26 14:47:57.62
93 Ellen Presley 2013-05-26 14:47:57.62
94 Kenneth Torn 2013-05-26 14:47:57.62
95 Daryl Wahlberg 2013-05-26 14:47:57.62
96 Gene Willis 2013-05-26 14:47:57.62
97 Meg Hawke 2013-05-26 14:47:57.62
98 Chris Bridges 2013-05-26 14:47:57.62
99 Jim Mostel 2013-05-26 14:47:57.62
100 Spencer Depp 2013-05-26 14:47:57.62
101 Susan Davis 2013-05-26 14:47:57.62
102 Walter Torn 2013-05-26 14:47:57.62
103 Matthew Leigh 2013-05-26 14:47:57.62
104 Penelope Cronyn 2013-05-26 14:47:57.62
105 Sidney Crowe 2013-05-26 14:47:57.62
106 Groucho Dunst 2013-05-26 14:47:57.62
107 Gina Degeneres 2013-05-26 14:47:57.62
108 Warren Nolte 2013-05-26 14:47:57.62
109 Sylvester Dern 2013-05-26 14:47:57.62
110 Susan Davis 2013-05-26 14:47:57.62
111 Cameron Zellweger 2013-05-26 14:47:57.62
112 Russell Bacall 2013-05-26 14:47:57.62
113 Morgan Hopkins 2013-05-26 14:47:57.62
114 Morgan Mcdormand 2013-05-26 14:47:57.62
115 Harrison Bale 2013-05-26 14:47:57.62
116 Dan Streep 2013-05-26 14:47:57.62
117 Renee Tracy 2013-05-26 14:47:57.62
118 Cuba Allen 2013-05-26 14:47:57.62
119 Warren Jackman 2013-05-26 14:47:57.62
120 Penelope Monroe 2013-05-26 14:47:57.62
121 Liza Bergman 2013-05-26 14:47:57.62
122 Salma Nolte 2013-05-26 14:47:57.62
123 Julianne Dench 2013-05-26 14:47:57.62
124 Scarlett Bening 2013-05-26 14:47:57.62
125 Albert Nolte 2013-05-26 14:47:57.62
126 Frances Tomei 2013-05-26 14:47:57.62
127 Kevin Garland 2013-05-26 14:47:57.62
128 Cate Mcqueen 2013-05-26 14:47:57.62
129 Daryl Crawford 2013-05-26 14:47:57.62
130 Greta Keitel 2013-05-26 14:47:57.62
131 Jane Jackman 2013-05-26 14:47:57.62
132 Adam Hopper 2013-05-26 14:47:57.62
133 Richard Penn 2013-05-26 14:47:57.62
134 Gene Hopkins 2013-05-26 14:47:57.62
135 Rita Reynolds 2013-05-26 14:47:57.62
136 Ed Mansfield 2013-05-26 14:47:57.62
137 Morgan Williams 2013-05-26 14:47:57.62
138 Lucille Dee 2013-05-26 14:47:57.62
139 Ewan Gooding 2013-05-26 14:47:57.62
140 Whoopi Hurt 2013-05-26 14:47:57.62
141 Cate Harris 2013-05-26 14:47:57.62
142 Jada Ryder 2013-05-26 14:47:57.62
144 Angela Witherspoon 2013-05-26 14:47:57.62
145 Kim Allen 2013-05-26 14:47:57.62
146 Albert Johansson 2013-05-26 14:47:57.62
147 Fay Winslet 2013-05-26 14:47:57.62
148 Emily Dee 2013-05-26 14:47:57.62
149 Russell Temple 2013-05-26 14:47:57.62
150 Jayne Nolte 2013-05-26 14:47:57.62
151 Geoffrey Heston 2013-05-26 14:47:57.62
152 Ben Harris 2013-05-26 14:47:57.62
153 Minnie Kilmer 2013-05-26 14:47:57.62
154 Meryl Gibson 2013-05-26 14:47:57.62
155 Ian Tandy 2013-05-26 14:47:57.62
156 Fay Wood 2013-05-26 14:47:57.62
157 Greta Malden 2013-05-26 14:47:57.62
158 Vivien Basinger 2013-05-26 14:47:57.62
159 Laura Brody 2013-05-26 14:47:57.62
160 Chris Depp 2013-05-26 14:47:57.62
161 Harvey Hope 2013-05-26 14:47:57.62
162 Oprah Kilmer 2013-05-26 14:47:57.62
163 Christopher West 2013-05-26 14:47:57.62
164 Humphrey Willis 2013-05-26 14:47:57.62
165 Al Garland 2013-05-26 14:47:57.62
166 Nick Degeneres 2013-05-26 14:47:57.62
167 Laurence Bullock 2013-05-26 14:47:57.62
168 Will Wilson 2013-05-26 14:47:57.62
169 Kenneth Hoffman 2013-05-26 14:47:57.62
170 Mena Hopper 2013-05-26 14:47:57.62
171 Olympia Pfeiffer 2013-05-26 14:47:57.62
172 Groucho Williams 2013-05-26 14:47:57.62
173 Alan Dreyfuss 2013-05-26 14:47:57.62
174 Michael Bening 2013-05-26 14:47:57.62
175 William Hackman 2013-05-26 14:47:57.62
176 Jon Chase 2013-05-26 14:47:57.62
177 Gene Mckellen 2013-05-26 14:47:57.62
178 Lisa Monroe 2013-05-26 14:47:57.62
179 Ed Guiness 2013-05-26 14:47:57.62
180 Jeff Silverstone 2013-05-26 14:47:57.62
181 Matthew Carrey 2013-05-26 14:47:57.62
182 Debbie Akroyd 2013-05-26 14:47:57.62
183 Russell Close 2013-05-26 14:47:57.62
184 Humphrey Garland 2013-05-26 14:47:57.62
185 Michael Bolger 2013-05-26 14:47:57.62
186 Julia Zellweger 2013-05-26 14:47:57.62
187 Renee Ball 2013-05-26 14:47:57.62
188 Rock Dukakis 2013-05-26 14:47:57.62
189 Cuba Birch 2013-05-26 14:47:57.62
190 Audrey Bailey 2013-05-26 14:47:57.62
191 Gregory Gooding 2013-05-26 14:47:57.62
192 John Suvari 2013-05-26 14:47:57.62
193 Burt Temple 2013-05-26 14:47:57.62
194 Meryl Allen 2013-05-26 14:47:57.62
195 Jayne Silverstone 2013-05-26 14:47:57.62
196 Bela Walken 2013-05-26 14:47:57.62
197 Reese West 2013-05-26 14:47:57.62
198 Mary Keitel 2013-05-26 14:47:57.62
199 Julia Fawcett 2013-05-26 14:47:57.62
200 Thora Temple 2013-05-26 14:47:57.62
\.
1 Action 2006-02-15 09:46:27
2 Animation 2006-02-15 09:46:27
3 Children 2006-02-15 09:46:27
4 Classics 2006-02-15 09:46:27
5 Comedy 2006-02-15 09:46:27
6 Documentary 2006-02-15 09:46:27
7 Drama 2006-02-15 09:46:27
8 Family 2006-02-15 09:46:27
9 Foreign 2006-02-15 09:46:27
10 Games 2006-02-15 09:46:27
11 Horror 2006-02-15 09:46:27
12 Music 2006-02-15 09:46:27
13 New 2006-02-15 09:46:27
14 Sci-Fi 2006-02-15 09:46:27
15 Sports 2006-02-15 09:46:27
16 Travel 2006-02-15 09:46:27
\.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
1 Afghanistan 2006-02-15 09:44:00
2 Algeria 2006-02-15 09:44:00
3 American Samoa 2006-02-15 09:44:00
4 Angola 2006-02-15 09:44:00
5 Anguilla 2006-02-15 09:44:00
6 Argentina 2006-02-15 09:44:00
7 Armenia 2006-02-15 09:44:00
8 Australia 2006-02-15 09:44:00
9 Austria 2006-02-15 09:44:00
10 Azerbaijan 2006-02-15 09:44:00
11 Bahrain 2006-02-15 09:44:00
12 Bangladesh 2006-02-15 09:44:00
13 Belarus 2006-02-15 09:44:00
14 Bolivia 2006-02-15 09:44:00
15 Brazil 2006-02-15 09:44:00
16 Brunei 2006-02-15 09:44:00
17 Bulgaria 2006-02-15 09:44:00
18 Cambodia 2006-02-15 09:44:00
19 Cameroon 2006-02-15 09:44:00
20 Canada 2006-02-15 09:44:00
21 Chad 2006-02-15 09:44:00
22 Chile 2006-02-15 09:44:00
23 China 2006-02-15 09:44:00
24 Colombia 2006-02-15 09:44:00
25 Congo, The Democratic Republic of the 2006-02-15 09:44:00
26 Czech Republic 2006-02-15 09:44:00
27 Dominican Republic 2006-02-15 09:44:00
28 Ecuador 2006-02-15 09:44:00
29 Egypt 2006-02-15 09:44:00
30 Estonia 2006-02-15 09:44:00
31 Ethiopia 2006-02-15 09:44:00
32 Faroe Islands 2006-02-15 09:44:00
33 Finland 2006-02-15 09:44:00
34 France 2006-02-15 09:44:00
35 French Guiana 2006-02-15 09:44:00
36 French Polynesia 2006-02-15 09:44:00
37 Gambia 2006-02-15 09:44:00
38 Germany 2006-02-15 09:44:00
39 Greece 2006-02-15 09:44:00
40 Greenland 2006-02-15 09:44:00
41 Holy See (Vatican City State) 2006-02-15 09:44:00
42 Hong Kong 2006-02-15 09:44:00
43 Hungary 2006-02-15 09:44:00
44 India 2006-02-15 09:44:00
45 Indonesia 2006-02-15 09:44:00
46 Iran 2006-02-15 09:44:00
47 Iraq 2006-02-15 09:44:00
48 Israel 2006-02-15 09:44:00
49 Italy 2006-02-15 09:44:00
50 Japan 2006-02-15 09:44:00
51 Kazakstan 2006-02-15 09:44:00
52 Kenya 2006-02-15 09:44:00
53 Kuwait 2006-02-15 09:44:00
54 Latvia 2006-02-15 09:44:00
55 Liechtenstein 2006-02-15 09:44:00
56 Lithuania 2006-02-15 09:44:00
57 Madagascar 2006-02-15 09:44:00
58 Malawi 2006-02-15 09:44:00
59 Malaysia 2006-02-15 09:44:00
60 Mexico 2006-02-15 09:44:00
61 Moldova 2006-02-15 09:44:00
62 Morocco 2006-02-15 09:44:00
63 Mozambique 2006-02-15 09:44:00
64 Myanmar 2006-02-15 09:44:00
65 Nauru 2006-02-15 09:44:00
66 Nepal 2006-02-15 09:44:00
67 Netherlands 2006-02-15 09:44:00
68 New Zealand 2006-02-15 09:44:00
69 Nigeria 2006-02-15 09:44:00
70 North Korea 2006-02-15 09:44:00
71 Oman 2006-02-15 09:44:00
72 Pakistan 2006-02-15 09:44:00
73 Paraguay 2006-02-15 09:44:00
74 Peru 2006-02-15 09:44:00
75 Philippines 2006-02-15 09:44:00
76 Poland 2006-02-15 09:44:00
77 Puerto Rico 2006-02-15 09:44:00
78 Romania 2006-02-15 09:44:00
79 Runion 2006-02-15 09:44:00
80 Russian Federation 2006-02-15 09:44:00
81 Saint Vincent and the Grenadines 2006-02-15 09:44:00
82 Saudi Arabia 2006-02-15 09:44:00
83 Senegal 2006-02-15 09:44:00
84 Slovakia 2006-02-15 09:44:00
85 South Africa 2006-02-15 09:44:00
86 South Korea 2006-02-15 09:44:00
87 Spain 2006-02-15 09:44:00
88 Sri Lanka 2006-02-15 09:44:00
89 Sudan 2006-02-15 09:44:00
90 Sweden 2006-02-15 09:44:00
91 Switzerland 2006-02-15 09:44:00
92 Taiwan 2006-02-15 09:44:00
93 Tanzania 2006-02-15 09:44:00
94 Thailand 2006-02-15 09:44:00
95 Tonga 2006-02-15 09:44:00
96 Tunisia 2006-02-15 09:44:00
97 Turkey 2006-02-15 09:44:00
98 Turkmenistan 2006-02-15 09:44:00
99 Tuvalu 2006-02-15 09:44:00
100 Ukraine 2006-02-15 09:44:00
101 United Arab Emirates 2006-02-15 09:44:00
102 United Kingdom 2006-02-15 09:44:00
103 United States 2006-02-15 09:44:00
104 Venezuela 2006-02-15 09:44:00
105 Vietnam 2006-02-15 09:44:00
106 Virgin Islands, U.S. 2006-02-15 09:44:00
107 Yemen 2006-02-15 09:44:00
108 Yugoslavia 2006-02-15 09:44:00
109 Zambia 2006-02-15 09:44:00
\.
This source diff could not be displayed because it is too large. You can view the blob instead.
1 English 2006-02-15 10:02:19
2 Italian 2006-02-15 10:02:19
3 Japanese 2006-02-15 10:02:19
4 Mandarin 2006-02-15 10:02:19
5 French 2006-02-15 10:02:19
6 German 2006-02-15 10:02:19
\.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
1 Mike Hillyer 3 Mike.Hillyer@sakilastaff.com 1 t Mike 8cb2237d0679ca88db6464eac60da96345513964 2006-05-16 16:13:11.79328 \\x89504e470d0a5a0a
2 Jon Stephens 4 Jon.Stephens@sakilastaff.com 2 t Jon 8cb2237d0679ca88db6464eac60da96345513964 2006-05-16 16:13:11.79328 \N
\.
1 1 1 2006-02-15 09:57:12
2 2 2 2006-02-15 09:57:12
\.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment