Did you know that if you go to Google Docs and try to load a csv file with 11,920 rows and 92 columns, you’ll likely get a warning like this?
Python: How to Bulk Load Image Textures in Blender
I have an obsession with timelines, which honestly may be bordering on manic and unhealthy. A 3D timeline has been on my back-burner for months because while I have written a function that auto-creates materials in Python, I had not yet mastered the art of applying image textures to those materials.
That’s today’s project.
Continue reading “Python: How to Bulk Load Image Textures in Blender”
Python: How to Script a Bar Chart
Say you have a message filled with static, and you suspect there’s something off about it. The pixels appear to be random, but not quite. How, how, how might you determine if the image is indeed entirely randomized?
Python: How to Upgrade to pip 10.0.1
Have you ever tried to install a Python module and been stopped dead in your tracks by a rude error claiming that you’re version of pip is somehow insufficient?
How to Pick a Starter Coding Language
Six Programs for Starving Artists
Like most freelancers out there, I don’t have spare cash for subscription fees. Approximately 99.9% of my disposable income goes toward coffee, booze, and books. Side-note: If you haven’t read Stiff by Mary Roach, you should. Informative but also surprisingly lighthearted.
Back to the point. Graphic design, photo editing, 3D modeling, GIS packages—the serious stuff can swallow your wallet whole. Luckily, the internet is a magical place, full of open-source alternatives to help level the playing field. Here’s my top picks.
Blender: How to Scale Down Coordinates for a Map Scene
Getting coordinates to scale properly to Blender units has been extremely frustrating for me since I started attempting more 3D maps. So, finally, in a fit of rage this weekend, I wrote a function to do it for me.
It scales the latitude and longitude down along the Z (height) and X (width) axes, taking into account the size of a base map oriented along those axes. In my version, it places a sphere at each coordinate set, but that can be easily changed to other objects.
Continue reading “Blender: How to Scale Down Coordinates for a Map Scene”
VBA: How to Use VLookUp in a Macro
Alright, here’s something I’ve been meaning to learn for weeks. It’s probably going to be the most boring post of all time for anyone who isn’t an Excel nerd. In fact, if you aren’t an Excel nerd, just run. Run far, far away.
Blender: How to Loop an Image Sequence into Textures
Animated textures in Blender is a thing! Immediately after finding that out, I set out to script a grid crawler texture in Processing. Because no one in their right mind would want to draw that by hand.
A Bit Of Everything has a post with the logic for a static grid, but somehow getting an animated version ate 3 hours of my life. All in all, it took about 12 tries. What I love about Processing is that even bad guesses can have pleasing results.
Continue reading “Blender: How to Loop an Image Sequence into Textures”
Python: How to Automate Word Docs
Every time I start thinking that my job is bad, I try to remind myself that Stanley Kubrick had a secretary. The guy was notorious for driving actors into the ground. Making them do takes over and over and over. Can you imagine having to handle his administrative work?
If IMDB’s trivia page is to be believed, that poor soul had to spend weeks typing out the infamous ‘All work and no play makes Jack a dull boy’ novel from hell. On the off-chance I ever find myself similarly working for a maniac, I’m attempting to master the Python docx module, and I’ve been pleasantly surprised with how far you can get with just the basics.