help

  1. Ron12345

    HTML & CSS Help Hover animation stop after 1 click one of the tabs

    html: <!DOCTYPE html> <html> <head> <title>Guide Collection</title> <p>Guide Collection</p> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <div class="games"> <div class="tabs"> <button id="dst" onclick="openDST()">DST</button>...
  2. F

    Error but I have no idea where

    I have been working at this thing for like a year and it just has not been working. It is supposed to download files, acting as a button. Could someone correct it please? <!DOCTYPE html> <html> <Head> <title> button </title> </head> <a href="file path"...
  3. User8574

    Python 'Function needs at least three arguments' Pygame screen.blit error

    screen.blit(player_score_surf, (200,200)) I get an error that screen.blit requires three arguments. I tried adding centre as the third as the point of which is at 200,200, but that still doesn't work. How do I fix it?
  4. MiktheFrik

    Python Removing a character from a string using user input

    Assignment def deleter(): string = input("Please enter a string: ") final_string = "" for i in range(0, len(string)): char_remove = input("Please enter character to remove from string (type 'quit' to quit) ") # the character i want to remove if(char_remove ==...
  5. P

    HTML & CSS Can someone help me?

    I'm new in this.I'm learning coding from youtube so i need help.I'm not sure how to explain the problem but i will try.I want to make portofolio,but my page doesn't want to scroll down,like there is just one section.So I want to put 'about me 'section after the 'hero' section but the hero...
  6. lollospadalaser

    Lua

    i have an easy question, i don't understand why this works: local fact fact= function (n) if n == 0 then return 1 else return n*fact(n-1) end end print(fact(4)) and this one not: local fact = function (n) if n == 0 then return 1 else return n*fact(n-1) end end print(fact(4))...
  7. R

    C++ how to exit for loop?

    im pretty new to coding, ive been searching around and nothing i can find will help, im using arduino and trying to use a push button to start and stop a song. it responds to it starting but wont stop midway or anything till done. #include "pitches.h" int buzzerPin = 6; int btn = 2; int...
  8. A

    Starting a Scheduling Application

    Hello; I have recently gotten motivation to create a web-based scheduling application for my friend's business. I need to have it be able to log a list of clients including their specifics (i.e. gender, name, email), and also have a scheduling feature for assistants to keep track of the...
  9. T

    Frustrated. Doing freecodecamp.org, finished most of it, but cannot for the life of me build something from scratch

    Hello everyone, I find coding very fascinating, so I took the first three courses on freecodecamp.org titled: Basic HTML and HTML5, Basic CSS, and Applied Visual Design. So, I thought that I could apply what I learned by making something in Visual Studio code; however, I just realized that I...
  10. TobiasDesigns

    HTML & CSS Looking on how to merge these two html codes. Every-time i try to merge them i mess up. Long question from very much beginner

    More info is on the bottom, im trying to merge 2 f2u templates together, specifically a snippet of one html onto another. And i am struggling tremendously, im sorry i have to put so many links, i really just cant share it all here :-: ive been looking for help and trying to fix it mysefl fir...
  11. J

    Python Need help

    new to coding so if my code could be more simple ill take suggestions, anyway I'm doing text based RPG just as fun and I'm stuck on a piece of code, so what I want it to do is say if you have chosen Mage as you player class you wont be able lockpick the door or smash a window but you can use a...
  12. A

    C++ my code keeps returning -1073741819 (0xc0000005), what is the problem?

    #include <cmath> #include <stack> #include<queue> #include <iostream> #include <regex> #include <vector> #include <thread> #include <bitset> #include <ctime> #include <string.h> #include <math.h> #include <bits/stdc++.h>...
  13. BorkedSystem32

    Feeling lost with programming skills

    Hey there, For months on end now I've been trying to get back into programming. I've toyed with my favorite languages, scoured the web for interesting projects to contribute to or start, and...nothing. I feel pretty lost with my programming skills and the fun just isn't there anymore. Really...
  14. Noob

    C How to write a program to find compound interest without using the pow function (in C)?

    Here's my code so far: #include <stdio.h> int main() { float principle, rate, time, CI; scanf("%f", &principle); scan("%f", &time) scanf("%f", &rate); CI = principle * ((1 + rate / 100) * (1 + rate / 100) * (1 + rate / 100)); printf("%.2f\n", CI)...
  15. L0L2G00D

    How do you make a welcoming post on your profile?

    This is a suggestion because you should leave this question here because surely I'm not the only one who doesn't know how to make a welcoming post.
  16. Premium__Zocker

    Lua Need help learning lua for example to fix lua error's on my gmod server

    Hello everybody. Im new to coding in general and i started to learn lua by watching CODE BLUE's tutorials on youtube. But i could need help from someone that has time and wants to help me with this. Just lua in generall but i have also an example lua error that i cannot fix bc i just dont know...
  17. C

    JavaScript How to alternate values from two variables?

    var 1 = 12345 var 2 = 67890 wanted output: 1627384950
  18. D

    With which languages should I be able to code, so I can code anything.

    If I wrote something that does not make any sence in the title, I want to apologize, I do not know much about coding and stuff like that, even though I have been dealing with this for years, and sorry for my bad english.
  19. J

    Python Need help for quartile code

    https://cdn.discordapp.com/attachments/640583239626391553/837043875750215730/unknown.png Basically i need the code to find the second quartile (Q2) with the information of the position of that quartile (PQ2) and the 5 numbers that make up the list. I'm still nerw to coding, I'd really appreciate...
  20. J

    Python Need help for code that finds quartiles

    https://cdn.discordapp.com/attachments/640583239626391553/837043875750215730/unknown.png Basically i need the code to find the second quartile (Q2) with the information of the position of that quartile (PQ2) and the 5 numbers that make up the list. I'm still nerw to coding, I'd really appreciate...
Top Bottom