Tags
Abstract Android Apache apt-get Art bash C++ calendar CentOS circuit CSS electronics emulator Excel ffmpeg FTP HTC http ImageMagick images ip javascript jquery LED linux math memory mvc MySQL nodejs PHP phpize PHP RAD Sharpy plaintext PostgreSQL Python resize root rotate security socketio ubuntu ui Windows yumCategories
Meta
Tag Archives: Art
Python Abstract Snow Art using PyGame
# # Abstract Random Snow Art # Copyright 2009 Travis Crowder # travis.crowder@spechal.com # Published under the MIT License # import pygame, sys, random from pygame.color import THECOLORS pygame.init() screen = pygame.display.set_mode([640,480]) screen.fill([0,0,0]) for i in range(1, 2500): top = … Continue reading
Python Abstract Box Art using PyGame
# # Abstract Random Box Art # Copyright 2009 Travis Crowder # travis.crowder@spechal.com # Published under the MIT License # import pygame, sys, random from pygame.color import THECOLORS pygame.init() screen = pygame.display.set_mode([640,480]) screen.fill([0,0,0]) for i in range(1, 100): width = … Continue reading
