Posts
Showing posts from 2023
My buddy kaiser made this.
- Get link
- X
- Other Apps
By Technerdfromhell
TechNerdFromHELL™
- Get link
- X
- Other Apps
By Technerdfromhell
TechNerdFromHELL™
Your looking 4 someone what do you want? print("\033[93m /\_/\ \033[0m") # Yellow color for the ears print("\033[96m ( o.o )\033[0m") # Cyan color for the face print("\033[91m > ^ { \033[0m") # Red color for the paws or body import random def generate_one_time_pad(length): return bytes([random.randint(0, 255) for _ in range(length)]) # Function to encrypt the text file using XOR with the one-time pad key def encrypt_text_file(, key): with open(text_file, 'rb') as file: text_data = file.read() encrypted_data = bytes([text_data[i] ^ key[i] for i in range(len(text_data))]) return encrypted_data # Function to hide the encrypted data within the image def hide_text_file_in_image(image_file, encrypted_data, output_file): with open(image_file, 'rb') as file: image_data = bytearray(file.read()) for i in range(len(encrypted_data)): i...
kitty doing a cartwheel
- Get link
- X
- Other Apps
By Technerdfromhell
TechNerdFromHELL™
.kitty { width: 100px; height: 100px; background-image: url('kitty_sprite.png'); animation: cartwheel 1s steps(6) infinite; } @keyframes cartwheel { 0% { background-position: 0 0; } 100% { background-position: -600px 0; } } // Optional: Preload the kitty sprite image var img = new Image(); img.src = 'kitty_sprite.png'; // Add the kitty element to the page var kittyElement = document.createElement('div'); kittyElement.className = 'kitty'; document.body.appendChild(kittyElement); Cartwheel .kitty { width: 100px; height: 100px; background-image: url('kitty_sprite.png'); } .cartwheel-animation { animation: cartwheel 1s steps(6) forwards; } Cartwheel .kitty { width: 100px; height: 100px; background-image: url('kitty_sprite.png'); background-repeat: no-repeat; transition: transform 0.3s ease-in-out; } .cartwheel-animation { animation: cartwheel 1s steps(6) forwards; animation-timing-function: steps(6);...
Don't scan this
- Get link
- X
- Other Apps
By Technerdfromhell
TechNerdFromHELL™
Such bad ass self body artwork
- Get link
- X
- Other Apps
By Technerdfromhell
TechNerdFromHELL™
Today we're going to learn
- Get link
- X
- Other Apps
By Technerdfromhell
TechNerdFromHELL™
vvv
- Get link
- X
- Other Apps
By Technerdfromhell
TechNerdFromHELL™
Dear FirstName , We are looking forward to seeing you tomorrow at the Shangri-La Hotel, Toronto. Join us for a great evening of food, cocktails, live music and networking in a beautiful setting! Wednesday, November 18, 2015 6 – 9 p.m. Shangri-La Hotel, Toronto 188 University Avenue Toronto, ON Directions to the Shangri-La. Questions? Email us at events@computershare.com . Comments
Call title liability
- Get link
- X
- Other Apps
By Technerdfromhell
TechNerdFromHELL™
steps to make an ai laugh reference for self fun project laughingai thing
- Get link
- X
- Other Apps
By Technerdfromhell
TechNerdFromHELL™
Training an AI to laugh is a complex task that requires a lot of data and expertise in machine learning. Here is an example of how you could go about training an AI to laugh: Step 1: Collect and preprocess data The first step in training an AI to laugh is to collect a large dataset of laughter audio recordings. This dataset should include a variety of different types of laughter, such as chuckling, giggling, and belly laughter. The dataset should also include examples of laughter from different people and cultures. Once you have collected your dataset, you will need to preprocess it by cleaning, normalizing, and formatting it so that it is ready to be used for training. Step 2: Choose a model and architecture Next, you will need to choose a machine learning model and architecture that is appropriate for your task. There are many different types of models that can be used for audio processing, such as convolutional neural networks (CNNs) and recurrent neural networks (RNNs). You will ...
- Get link
- X
- Other Apps
By Technerdfromhell
TechNerdFromHELL™
Jumping Game const player = document.querySelector("#player"); const obstacle = document.querySelector("#obstacle"); document.addEventListener("keydown", (event) => { if (event.code === "Space") { player.style.bottom = "50px"; setTimeout(() => { player.style.bottom = "0"; }, 500); } }); setInterval(() => { let random = Math.random() * 400; obstacle.style.left = `${random}px`; }, 1000); #game { width: 400px; height: 400px; position: relative; background-color: #ddd; } #player { width: 50px; height: 50px; background-color: red; position: absolute; bottom: 0; left: 175px; } #obstacle { width: 50px; height: 50px; background-color: black; position: absolute; top: 300px; left: 0; }
template page for age verification example prd add in with js html cal need add
- Get link
- X
- Other Apps
By Technerdfromhell
TechNerdFromHELL™
Nicehash easy mining win chances and odds based on events
- Get link
- X
- Other Apps
By Technerdfromhell
TechNerdFromHELL™
testing 2
- Get link
- X
- Other Apps
By Technerdfromhell
TechNerdFromHELL™
My E-commerce Site Home Shop About Contact Search Featured Products Categories Copyright ©2022 My E-commerce Site (error => { console.error(error); }); }); // Function to send message data to server function postMessage(username, message) { return fetch("/api/messages", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ username: username, message: message }) }).then(response => { if (!response.ok) { throw new Error("Failed to post message"); } return response.json(); }); } // Function to add message to message list function addMessage(id, username, message) { const messageElem = document.createElement("div"); messageElem.classList.add("message"); messageElem.innerHTML = $...
working on a webbased game
- Get link
- X
- Other Apps
By Technerdfromhell
TechNerdFromHELL™
import pygame # Initialize pygame pygame.init() # Set screen size screen = pygame.display.set_mode((800, 600)) # Set title pygame.display.set_caption("3rd Person Shooter Mini Game") # Load player and enemy images player_image = pygame.image.load("player.png") enemy_image = pygame.image.load("enemy.png") # Set player and enemy starting positions player_x = 400 player_y = 500 enemy_x = 200 enemy_y = 200 # Set player and enemy health player_health = 100 enemy_health = 100 # Set player and enemy hitboxes player_hitbox = player_image.get_rect() player_hitbox.x = player_x player_hitbox.y = player_y enemy_hitbox = enemy_image.get_rect() enemy_hitbox.x = enemy_x enemy_hitbox.y = enemy_y # Set player speed player_speed = 5 # Set enemy speed enemy_speed = 2 # Set laser sound effect laser_sound = pygame.mixer.Sound("laser.wav") # Main game loop running = True while running: for event in pygame.event.get(): if event...
Swingrowers - Butterfly (Official Music Video) - ELECTRO SWING
- Get link
- X
- Other Apps
By Technerdfromhell
TechNerdFromHELL™
Creating a Successful YouTube Channel Step 1: Determine your niche and target audience Step 2: Create a brand and channel design Step 3: Plan and create content Step 4: Optimize your videos for SEO Step 5: Promote your channel Step 6: Engage with your audience Step 7: Measure and analyze your performance Step 8: Keep learning and improving Step 9: Collaborate with other YouTubers and influencers Step 10: Monetize your channel const steps = document.querySelectorAll("#steps h1"); steps.forEach((step) => { step.addEventListener("mouseenter", () => { step.style.color = "linear-gradient(to right, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, # 4b0082, #8b00ff)"; }); step.addEventListener("mouseleave", () => { step.style.color = "black"; }); }); CSS: ```css #steps { display: flex; flex-wrap: wrap; align-items...
【Clover】 Help Me (Music Video)
- Get link
- X
- Other Apps
By Technerdfromhell
TechNerdFromHELL™
rng moe.
- Get link
- X
- Other Apps
By Technerdfromhell
TechNerdFromHELL™
Basically what I am saying i i wrote this code Random Number Generator Random Number Generator Lower Limit Upper Limit This version of the generator can create one or many random integers or decimals. It can deal with very large numbers with up to 999 digits of precision. This version of the generator can create one or many random integers or decimals. It can deal with very large numbers with up to 999 digits of precision. Lower Limit Upper Limit Generate numbers Allow duplication in results? Yes No Sort the results? Ascend Descend No Type of result to generate? Integer Decimal Precision: digits
A good Guide on Creating Better YouTube content for beginners with a more in-depth and details
- Get link
- X
- Other Apps
By Technerdfromhell
TechNerdFromHELL™
Define your niche: To succeed on YouTube, it's essential to define your niche and create content that is tailored to a specific audience. This could be anything from beauty tutorials and product reviews for the fashion and beauty industry, to gaming content for the gaming community. By focusing on a specific niche, you can build a loyal following of viewers who are interested in your content. Invest in high-quality equipment: To create professional-looking videos, it's important to invest in high-quality equipment such as a DSLR camera with good low-light capabilities, a lapel microphone to ensure clear audio, and a lighting setup to make sure your videos are well-lit. Additionally, you can use software such as Adobe Premiere or Final Cut Pro for editing your videos. This will give your videos a polished, professional look and help them stand out from the competition. Script and plan your content: Before filming, it's a good idea to script and plan your content in advance...