Here’s a whimsical sculpture I made out of clay. I call it “the man and his son”.
Tag: Art-Tech-Intersection
Adding sound to Python code
Python isn’t necessarily for multimedia programming, so only recently I looked up ways to add audio in a Python script. Turns out there are several ways to do that. They’re all really simple. Methods to add sound: 1. import winsound fname = “soundfile.wav” winsound.PlaySound(fname, winsound.SND_FILENAME) 2. import pygame pygame.init() s = pygame.mixer.Sound(“soundfile.wav”) # Start playback […]
Playing with Clay
Hey there, so I got some fresh reusable and permanent clay materials from Michael’s. Goofing with the reusable one just to feel the texture, created this figure. I’ll call it “Penguin Man protecting his first-born” I kinda like him actually! More unique posts like this are quickly found from this link (because I tag them accordingly).
Abstract Art with Code (Art<->Tech). Volume III
VOLUME 3 If arts and tech had a baby, may it’d look like me 🙂 Anyway, I love mixing the two, interconnecting, and interpolating them…because I’m always curious. Results can be incredibly satisfying or surprising. These are not the best of my work in any form in coding, but wanted to share these short programs […]
Abstract Art with Code (Art<->Tech). Volume II
VOLUME 2 If arts and tech had a baby, may it’d look like me 🙂 Anyway, I love mixing the two, interconnecting, and interpolating them…because I’m always curious. Results can be incredibly satisfying or surprising. These are not the best of my work in any form in coding, but wanted to share these short programs […]
Abstract Art with Code (Art<->Tech). Volume I
VOLUME 1 If arts and tech had a baby, may it’d look like me 🙂 Anyway, I love mixing the two, interconnecting, and interpolating them…because I’m always curious. Results can be incredibly satisfying or surprising. These are not the best of my work in any form in coding, but wanted to share these short programs […]
Drawing Graphics using Python (Turtle)
In this blog, I show you how to use draw graphics in Python. Objective: I want to draw dots (circles, really if they’re larger than a pixel)…of different sizes and colors at various locations multiple times (I chose 100X for this demo). This is how the output looks like: Source Code: The complete source is below. […]
More Metamobius Prototypes
Welcome back. In a recent post, I talked about my most favorite geometric shape here. Continuing with that “obsession”, here are a handful of more prototypes of Metamobius shapes. The algorithm generates different shapes…I don’t know the limit yet (can be in thousands as far as I can tell), but I’ve selected a few that just […]
My Favorite Shape!
Howdy! Let me share with you a personal bit…my most favorite shape in the world (to-date, known to man so far) is Metamobius! Invented/discovered by Ted Gibbons of ON. There’s very little information on this on the Internet at the time of this accidental discovery, but I’m sure it’ll get more populated. Anyway, his algorithm […]
Text-to-speech, Interactive Shopping List (in Scratch)
Welcome! Today, we’re going to try a program with a little more complexity and twists in Scratch. In this program, I demonstrate the following tips/tricks: How to use a List control real-time How to get inputs from user and take action accordingly How to convert Text-to-speech How to read variables real-time from calculations and let […]