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
    
  
  
    
  | <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>liveview</title> | |
| <style> | |
| * {padding: 0; margin: 0;} | |
| canvas {background: #444455; display: block; margin: 100px auto;} | |
| </style> | |
| </head> | 
  
    
      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.awt.Graphics; | |
| import java.awt.image.BufferedImage; | |
| import java.io.File; | |
| import javax.imageio.ImageIO; | |
| public class sprextend { | |
| /* | 
  
    
      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.awt.image.BufferedImage; | |
| import java.io.File; | |
| import javax.imageio.ImageIO; | |
| public class sprsheet { | |
| /* | |
| This is a sprite grid creator which makes a sprite grid of x * y tiles with | 
  
    
      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 argparse | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument("times", help="your time table") | |
| args = parser.parse_args() | |
| fin = open(args.times, 'r') | |
| outs = "START\tEND\tWORK\tSCHOOL\n" | |
| worksum = 0 |