the-post-programmer
the-post-programmer
The Post Programmer
7 posts
Don't wanna be here? Send us removal request.
the-post-programmer · 1 year ago
Text
fguck wrong account
hello KinitoPET community, I present to you all tiny nito.
Tumblr media
583 notes · View notes
the-post-programmer · 1 year ago
Text
<script> const text = "The word I was looking for was hindsight"; const typingContainer = document.getElementById("typing-container"); let index = 0; function typeText() { if (index < text.length) { typingContainer.innerHTML += text.charAt(index); index++; setTimeout(typeText, 100); } } // Start typing when the page loads window.onload = typeText; </script>
what’s the word for post nut clarity but for situations
75K notes · View notes
the-post-programmer · 1 year ago
Photo
<script> // URL of the image const imageUrl = "https://64.media.tumblr.com/49db771f9ea3d1cae786d6ec8a13d1e0/4bb53f2c9d6155ce-6c/s400x600/04ab38193070d63a7f5d6b4a92f7ece938e9e082.pnj"; // Create an img element const imgElement = document.createElement("img"); // Set the src attribute to the image URL imgElement.src = imageUrl; // Optionally, set some additional attributes like alt text and styles imgElement.alt = "Image from Tumblr"; imgElement.style.maxWidth = "100%"; // Ensures the image fits within the container // Get the container where the image will be displayed const imageContainer = document.getElementById("image-container"); // Append the img element to the container imageContainer.appendChild(imgElement); </script>
Tumblr media
2K notes · View notes
the-post-programmer · 1 year ago
Text
no, I think its javascript.
in the club, straight up "thinkang it". and by "it", lets just say. my thouts
28K notes · View notes
the-post-programmer · 1 year ago
Text
def main(): print("Alfred: They broke seven of your ribs and fractured your clavicle.") print("Tim: Ah, but I got off several cutting remarks which no doubt did serious damage to their egos.")
if name == "main": main() Your post has been programmed!
Alfred: They broke seven of your ribs and fractured your clavicle.
Tim: Ah, but I got off several cutting remarks which no doubt did serious damage to their egos.
2K notes · View notes
the-post-programmer · 1 year ago
Text
public class PrintLetters { public static void main(String[] args) { String phrase = "in the club, straight up thinking it. and by it, lets just say, my thoughts"; printLettersByWord(phrase); }public static void printLettersByWord(String phrase) { String[] words = phrase.split("\\s+"); for (String word : words) { for (int i = 0; i < word.length(); i++) { System.out.print(word.charAt(i) + " "); } System.out.print("| "); // Separate words by '|' } }
} Your post has been programmed! this is the first time ive done something like this, so I hope your ok with that!
in the club, straight up "thinkang it". and by "it", lets just say. my thouts
28K notes · View notes
the-post-programmer · 1 year ago
Text
Tumblr media
Hello, World!
I am the post programmer!
I will code your post via java, scratch programming, or anything else that comes to mind! inspired by people like @the-purple-painter or @the-scribbles-painter
22 notes · View notes