#iteration
Explore tagged Tumblr posts
desaturatedhelll · 1 month ago
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! 🖤
Tumblr media
94 notes · View notes
visionj-journal · 5 months ago
Photo
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
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
61 notes · View notes
warmhoneylover · 2 months ago
Text
Uncle. . .
Tumblr media Tumblr media Tumblr media
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)
29 notes · View notes
ashykneecaps6 · 2 years ago
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 :
Tumblr media Tumblr media
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
220 notes · View notes
artisahobby · 3 months ago
Text
Tumblr media Tumblr media Tumblr media
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
7 notes · View notes
artstationable · 7 months ago
Photo
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
Daniel Dana
Freelance Concept Artist & Illustrator
artstation instagram
More from «Artstation» here
12 notes · View notes
softinvasions · 2 years ago
Text
Tumblr media
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!
24 notes · View notes
gafie1ds-crisis · 11 months ago
Text
RAAHHHH finally can show you guys my shadow side iteration I made
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
Sorry if it not more mha redesign I WILL GET BACK TO IT BUT II NEED A BREAK 😭🙏
7 notes · View notes
nerdymemes · 2 years ago
Text
Tumblr media
21 notes · View notes
helloworldletscode · 8 months ago
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
allisonperryart · 1 year ago
Text
Tumblr media
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
Tumblr media
10 notes · View notes
bobauthorman · 1 year ago
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!
8 notes · View notes
whimsicalwhespir · 2 years ago
Text
Tumblr media
TRYING ART FIGHT THIS YEAR, WISH ME LUCK LMAO
11 notes · View notes
2bitz-star · 1 year ago
Text
Tumblr media
mikey!!!
2 notes · View notes
artisahobby · 3 months ago
Text
Tumblr media Tumblr media
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
11 notes · View notes