#iteration
Explore tagged Tumblr posts
Text
we need different janes in the world. what other types would you like to see?
check out my page if you like my work! 🖤
#fanart#jane doe#jane doe rtc#janedoe#rtc#rtcfanart#doodle#iteration#art#artist#procreate#small artist#jane does#jane rtc#ride the cyclone
94 notes
·
View notes
Photo
Seeker Saga Tarot project
It’s been so long... I once wanted to make a detailed video and a lot of posts about my progress through this piece, but it’s been almost 4 years now I think. I might never get to it, so I’m posting these now and leaving it as is.
I really did love working on this - it was a lot of fun and a very rewarding experience, but I doubt I’ll get to the 30+ hours of footage any time soon ;o;
Feel free to ask questions, I’ll do my best to answer them!
.
COMMISSIONS - KO-FI - CARRD - WEBSITE - BLUESKY - INSTAGRAM - YOUTUBE - LINKTREE
#kingdom hearts#kingdom hearts invi#sketches#thumbnails#concept art#tarot card design#queen of cups#foreteller invi#invi#kh invi#khux invi#khux#Kingdom Hearts Fanart#kingdom hearts union cross#kingdom hearts union cross invi#digital art#sketching#digital sketch#iteration
61 notes
·
View notes
Text
Uncle. . .
forseti never liked his uncle, while others find him annoying he found him absolutely underbearable.
If heimdall ever read his mind he's see how much he did, , ,
(Also forseti IS wearing clothes he just wears a cloak and you can't see here)
#god of war ragnarök valhalla#god of war#god of war ragnarok#god of war forseti#forseti#god of war fanart#Heimdall#gow heimdall#norse mythology#Fanart#Iteration#non canon#Au post#Au#Gow au#gow au#au
29 notes
·
View notes
Text
I am back. I think.
Time to start shit-posting and other things about my newfound insanity aka my very own RiseTMNT AU called "Double edged sword." In short "DES"
First of all, have this :
Is this the best opening ever? Well no. But ! I plan on putting writing prompts, answering questions for whoever is interested and also LOTS of weird little shit-posting with horribly done sketches lol
Should I start writing a fic for this thing? I might.
This is going to flop, I am betting two cents on it but I've gotta start somewhere anyways so shrugs
#rottmnt#artists on tumblr#artistsoninstagram#tmnt#rise tmnt#rise au#save rottmnt#samurai rabbit#usagi chronicles#rottmnt leo#leosagi#art#au art#comic art#original comic#tmnt iteration#tmnt original iteration#iteration#double egded sword#Des!Au#kai arts#des!au
220 notes
·
View notes
Text



The Way of TMNT Irma Langenstein
Irma has been April’s friend since grade school. She has a fairly a morbid and pragmatic outlook with a dry sense of humor. She cares little about conforming to society. Despite her prickly demeanor, Irma is fiercely loyal to her loved ones. Irma’s introversion will not save anyone from her verbally destroying them with her sharp tongue delivered in the most deadpan tone.
Irma and April go to the same academy for high school and room together in the dorms on the weekdays. Irma is initially the only one who knows April is investigating Dr. Kavitha’s death and leads on TCRI. Irma disagrees with April’s endeavor; concerned April will only hurt herself and Sunita by digging up the past. Regardless, Irma keeps April’s secret, covering for her whenever April sneaks out of their dorm room.
April's Friends << Simple Treasures Part 4 || Irma meets April >>
Masterpost
#teenage mutant ninja turtles#fan iteration#iteration#au#redesign#wottmnt#irma#irma langenstein#april#april o'neil#way of the teenager
7 notes
·
View notes
Photo






Daniel Dana
Freelance Concept Artist & Illustrator
artstation instagram
More from «Artstation» here
#iterations#noai#natural#drawing#artist#ILLUSTRATION#nature#keyframe#rocks#glow#space#lighting#natural wonder#iteration#art#mines#rock formation#design#daniel_dana_art#landscape#sketches#shape language#salt mines#cave#Terraforming#mushroom#caves#artstation#entrance#Concept Art
12 notes
·
View notes
Text

write about this • Dec. 2023
words chosen from predictive text. punctuation and linebreaks added by me.
support me on patreon! even a one-time donation helps a lot!
#p#composition#< kind of lol#iteration#behavior was recovered from the wreckage#if you squint you can see cat51 in this. like there are lines where im like. oh that came from a cat51 discussion lol
24 notes
·
View notes
Text
RAAHHHH finally can show you guys my shadow side iteration I made





Sorry if it not more mha redesign I WILL GET BACK TO IT BUT II NEED A BREAK 😭🙏
#yokai watch shadowside#yokaiwatch#yo kai watch#shadowside#yokai watch oc#artists on tumblr#art#digital art#doodle dump#art edit#edit#oc art#my art#oc#character#iteration#yokai watch iteration
7 notes
·
View notes
Text
21 notes
·
View notes
Text
Iterations - for loop
Iteration, aka repeating, is a solution for tasks that need to be done over and over again.
Instead of writing dozens of lines of code for the same purpose, we can simplify it and shorten it to just a couple of lines. This way the code is both easier to read for the other programmers (fellow people hehe) and faster to process for the computer.
Also, simpler code reduces errors rate.
Examples of iterations are loops.
Looping means repeating something until a particular condition is satisfied.
Python has 3 Basic Loops:
For Loop - used when we know number of iterations (repetitions) in advance.
While Loop - for situations where the number of iterations is unknown beforehand.
Nested Loop - using one looping statement inside another looping statement.
For loop is used to execute the same instruction over and over again, a specific number of times.
for i in range(5): print(“Hello!”) Output: Hello! Hello! Hello! Hello! Hello!
In the first line, we declared how many repetitions are needed. In the second line, we wrote what should be repeated a given number of times. In this case, we asked Python to print the string “Hello!” 5 times.
Basic structure of the for loop:
for i in range(5): print(“Hello!”)
for - a keyword that signals that “for loop” is starting.
i - internal variable name which is keeping the counter value. Stands for “iteration”. We can read the whole line as “for 5 iterations/repetitions, please do the following:” For every loop, the 'i' variable increases by 1 because it's the counter. 'i' doesn't have to be 'i', we can switch it to another letter or another word, that are python approved for this (for example, you can’t use name of defined function instead of 'i').
#Loop using "unicorn" as internal variable, instead of "i" for unicorn in range(10): print(unicorn) #still works!
in range() - represents the list of numbers we are looping through (number of time the iteration is running). Python starts the counter from 0. It means that range(5) - will give a sequence of 5 numbers: 0, 1, 2, 3, 4 range() function has 3 parameters(start, end, steps), default values for start is 0 and step is 1. When we write range(5), we only give one parameter, and the function still works, because Python reads it as range(0,5,1) and the sequence starts with 0, increases by 5 counts, with step between each number being 1, by default.
We can change the parameters: range(1,20,3) this would result in iterations that starts from 1, goes up by 3 steps with the upper limit of 20: 1, 4,7,10,13,16,19.
Example: #print every 2 numbers (evens): for i in range (2, 10, 2): print(x) output: 2 4 6 8 (!) output does not include 10 because 10 is the upper limit (result only includes number under 10)
: adding a colon sign in the end of the first line is mandatory, otherwise an error will occur. Finally in the next line, we start writing the instruction, that is supposed to be repeated. This part isn’t starting right away, it should be indented. Indentation is the blank gap at the beginning of lines. Normal indentation is 4 spaces/tab long. Python would recognize 2 spaces or 4 spaces as an indentation, but 4 spaces length is more agreed upon and is used more wildly.
tip: How to write an instruction to get output of a list that starts from 1 instead of 0, accompanied by a string:
for i in range(10): print(i+1, "I love you")
4 notes
·
View notes
Text

Welcome to the multiverse of stairwells in Carol's apartment complex! Well, not really, but one of our goals after I was promoted to art director was revisiting and polishing up some stuff from earlier episodes - especially episode 1, since it would be viewers' first impression of our world. One of these things was this stairwell Carol walks through to exit her apartment. The original background (not pictured) looked great and was completely serviceable, but we really wanted to push the world-building and disconnect between Carol and this communal space where people seemed to perpetually be partying. My job was to help figure out how we could SHOW that thorough colour - not just tell it, and as you can see, there was a LOT of discussion and potential solutions. Personally, I think part of an art director's job is being a liaison between their team of artists and everyone else: translating other stakeholders' words/abstract ideas into concrete, visual direction. Sometimes all this means is handing off a brief to an artist, but other times it requires more: actively listening to stakeholders, creating multiple (sometimes many!) solutions that meet their goals/vision, helping guide them to the solution they feel best meets that goal (not just telling them), and then whatever direction results from that dialogue can be handed off to the artist(s). Anyways, thanks for looking, and watch Carol and the End of the World on Netflix! Showrunner: Dan Guterman

#now playing#watch now#stairs#colour#color#interior#interiors#apartment#hallway#staircase#design#advice#leadership#supervisor#background#backgounds#environment#iteration#ideation#background paint#carol#carol and the end of the world#cateotw#adult animation#animation#netflix#netflix animation#cartoon#allisonperryart#allison perry
10 notes
·
View notes
Text
A Red vs Blue / RWBY crossover is possible, though a very lazy possibility. You could literally do any plot, and at the end, reveal that it was actually one of Epsilon's iterations the whole time. And when Church does his mandatory "WTF was that?" line, start again with another Rooster Teeth series!
#Red vs Blue#RWBY#Crossover#Idea#Epsilon#iteration#Rooster Teeth#here we go again#simulation#plot#greenlight volume 10#saverwby#support crwby
8 notes
·
View notes
Text
TRYING ART FIGHT THIS YEAR, WISH ME LUCK LMAO
#iteration#art fight#team werewolf#marden sallow#chay bacia#prisana saelim#ada macias#lora#YOU CANT FIND PRISANA OR ADA YET#BUT ILL ADD THEM SOON#MAKING REFS FOR THEM AS WE SPEAK!!!
11 notes
·
View notes
Text

mikey!!!
2 notes
·
View notes
Text


The Purple Dragons are a major antagonistic gang for the turtles in the Way of the Teenager.
When the Purple Dragons vandalize Second-Time-Around, the turtles and April go on the counterattack. This incident leads to the turtles first encounter with mutants like them.
Unfortunately, Bebop and Rocksteady are jerks.
----
Simple Treasures <<Part 3 || FIN || April's Friends >>
Masterpost
#teenage mutant ninja turtles#fan iteration#iteration#au#redesign#wottmnt#tmnt#raph#raphael#donnie#donatello#leonardo#leo#mikey#michelangelo#bebop#rocksteady#angel#april#april o'neil#way of the teenager
11 notes
·
View notes