This file contains hidden or 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
    
  
  
    
  | # You must use processing 3 if you want to run this example as it is | |
| # This example finds the largest surrounding square in 2D grid. | |
| # I think is easily optimizable from this point. | |
| # Octavio Ruiz @ Phesus '19 | |
| class Cell(object): | |
| x, y, type = 0, 0, 0 | |
| def __init__(self, x, y, type): | |
| self.x = x | |
| self.y = y | 
  
    
      This file contains hidden or 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
    
  
  
    
  | #include<stdio.h> | |
| #include<stdlib.h> | |
| #include<stdbool.h> | |
| #include<string.h> | |
| #define LIMITE_PRODUCTOS 10 | |
| #define LIMITE_VENTAS 10 | |
| #define LIMITE_VENDEDORES 10 | |
| // UDGVirtual | 
  
    
      This file contains hidden or 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
    
  
  
    
  | #include<stdio.h> | |
| #include<stdlib.h> | |
| #include<stdbool.h> | |
| #include<string.h> | |
| // UDGVirtual | |
| // Lista de cantantes - Actividad Integradora Unidad 3 | |
| // Octavio Ruiz - 16 de Noviembre de 2015 | |
| //Defino la estructura interna que contendrá información de un disco | 
  
    
      This file contains hidden or 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
    
  
  
    
  | $('#invoiceTable').invoiceTable({salestax:16}); | |
| $('#btn-print').on('click', function(){ | |
| $.ajax({ | |
| type: "POST", | |
| url: "/quotes/print", | |
| data: $('#formi').serialize() | |
| }) | |
| .done(function(data) { | |
| alert('Invoice Submitted!'); | 
  
    
      This file contains hidden or 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
    
  
  
    
  | import java.sql.*; | |
| import java.util.logging.Level; | |
| import java.util.logging.Logger; | |
| /** | |
| * Just for tests or very simple non-important utilities. Just for be clear, not intended for production. | |
| * Author: Octavio Ruiz | |
| * Date: 20 Ago 11 | |
| */ | |
| public class MyJDBCHelper { |