This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.cat-sprite, .cat-bike-accesories, .cat-bike, .cat-climb, .cat-kids-jacket, .cat-mens-jacket, .cat-shoes-mens, .cat-shoes-socks, .cat-tents, .cat-womens-jacket { background: url('/cat-s6b8c8d50ad.png') no-repeat; } | |
.cat-bike-accesories { background-position: 0 -100px; } | |
.cat-bike { background-position: 0 -350px; } | |
.cat-climb { background-position: 0 -50px; } | |
.cat-kids-jacket { background-position: 0 0; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Convert jpg files into pngs | |
for img in *.jpg | |
do | |
convert "$img" "$img.png"; | |
rm "$img"; | |
done | |
# renaming files from .jpn.png to .png |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.cat-back-sprite, .cat-back-ANOOR, .cat-back-ANT, .cat-back-ATHBLPD, .cat-back-BAMGN, .cat-back-BANBL, .cat-back-BK, .cat-back-BKA, .cat-back-BKPAI, .cat-back-BLCRU, .cat-back-BOLBL, .cat-back-BRI, .cat-back-BRITAN, .cat-back-BROBL, .cat-back-BUR, .cat-back-CAD, .cat-back-CAMBRORD, .cat-back-CH, .cat-back-CHE, .cat-back-CIL, .cat-back-DKBIPD, .cat-back-ES, .cat-back-FIOFGOFU, .cat-back-GLOGN, .cat-back-GN, .cat-back-HOS, .cat-back-LARBL, .cat-back-LM, .cat-back-LTGYGIN, .cat-back-M3DLNH, .cat-back-MATBLACRO, .cat-back-MATBLAIRI, .cat-back-NA, .cat-back-NAU, .cat-back-NIGWFIPER, .cat-back-ONECOL, .cat-back-PAP, .cat-back-PEA, .cat-back-PEO, .cat-back-PEPSN, .cat-back-PREPU, .cat-back-PREPURBL, .cat-back-RASMAN, .cat-back-RD, .cat-back-RDDEL, .cat-back-S153CM, .cat-back-SNO, .cat-back-TUROR, .cat-back-WHI, .cat-back-YEL, .cat-back-YL { background: url('/cat-back-s61bf7a1a14.png') no-repeat; } | |
.cat-back-ANOOR { background-position: 0 -1750px; } | |
.cat-back-ANT { background-position: 0 -1600px; } | |
.cat-back-ATHBL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; constants | |
section .data | |
lblZero: db 'Zero'; | |
lblOne: db 'One '; | |
lblNumLength: db 0x4; | |
lblErr: db 'There was an error.', 10; | |
lblErrLength: equ $ - lblErr; | |
lblInput: db 'Type a single digit number: ', 10; | |
lblInputLength: equ $ - lblInput; | |
tmp: db 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; constants | |
section .data | |
lblZero: db 'Zero'; | |
lblOne: db 'One '; | |
lblNumLength: db 0x4; | |
lblErr: db 'There was an error.', 10; | |
lblErrLength: equ $ - lblErr; | |
lblInput: db 'Type a single digit number: ', 10; | |
lblInputLength: equ $ - lblInput; | |
tmp: db 0; |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- phpMyAdmin SQL Dump | |
-- version 3.3.10.4 | |
-- http://www.phpmyadmin.net | |
-- | |
-- Host: mysql.leonardopicado.com | |
-- Generation Time: Dec 04, 2012 at 09:04 PM | |
-- Server version: 5.1.56 | |
-- PHP Version: 5.2.17 | |
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- phpMyAdmin SQL Dump | |
-- version 3.3.10.4 | |
-- http://www.phpmyadmin.net | |
-- | |
-- Host: mysql.leonardopicado.com | |
-- Generation Time: Dec 04, 2012 at 09:38 PM | |
-- Server version: 5.1.56 | |
-- PHP Version: 5.2.17 | |
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: Arbol.cpp | |
=================================================================== | |
--- Arbol.cpp (revision 30) | |
+++ Arbol.cpp (working copy) | |
@@ -2,6 +2,7 @@ | |
#include "Nodo.h" | |
#include <iostream> | |
+#include <cstddef> | |
//#include <assert.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pregunta No 4 (22 Puntos) | |
Muestre gráficamente (o en una tabla) TODO el proceso de ordenamiento de la siguiente lista | |
de números enteros: 12, 34, 3, 1, 55, 90, 100, 23, 2, 10 | |
Primero elija el método de ordenamiento que va a utilizar: ShellSort, MergeSort o QuickSort | |
Se usara ShellSort. | |
El arreglo tiene 10 elementos, por lo que el 'brinco' (gap) inicial sera de 5, | |
posteriormente de 2 y finalmente de 1. Se requiere de un total de 22 'vueltas' | |
para ordenar completamente el arreglo, aca se encuentra la salida, por cada vuelta | |
para el metodo: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> # Pregunta No 1 (24 Puntos) | |
> Se quiere representar la información que se maneja en el área de servicio al cliente de un | |
> banco. En el banco hay N cajeros, cada cajero puede atender M clientes, pero sólo uno a la | |
> vez. Cuando un cajero atiende a un cliente debe dejar el recibo de la transacción en un estante | |
> especial, de tal manera que el último recibo debe ser el más fácil de acceder después. Los | |
> clientes pueden tener varias cuentas en el banco, y se quiere llevar información de todas ellas. | |
> Se requiere acceder a la información de las cuentas lo más eficiente posible. Todas las cuentas | |
> tienen un número único de identificación, el banco distingue cuáles son de dólares y cuáles son | |
> en colones, por el número de la cuenta, por lo tanto no hay que guardar esta información. | |
> a) Defina las estructuras de datos usaría para representar la información descrita |