Welcome to Code Forum!

Join a community that supports you and your coding journey from day one. We strive to be a friendly, supportive community that empowers everyone to be better developers. By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

help

  1. fdk

    PHP Problem with game development

    Hi all, I'm a super new coder and I've set myself a project of building a small text-based game played in the browser to learn skills. I've built some basic features of my game and one of these is a gym, which I've been struggling with for a few days now without success. Essentially, as you...
  2. C

    C++ with clang

    Hi all,is it possible if somebody could tell me how to get make clang work with c++,i've installed clang and im just confused with youtube videos,everything appreciated :)
  3. I

    need help

    i want to know what this code doing (i know coding but not this) Get-NetAdapter | ForEach-Object { $interfaceAlias = $_.InterfaceAlias; Set-DnsClientServerAddress -InterfaceAlias $interfaceAlias -ServerAddresses ("8.8.8.8", "8.8.4.4"); $hostsPath="$env:SystemRoot\System32\drivers\etc\hosts"...
  4. F

    JavaScript Coding starter here: What are your ideas/knowledge/advises to improve my basic Dijkstra Algorithm game !?

    You can already play in browser and its pretty basic but i lack inspiration and knowledge to improve it. To make it more interactive, more fun and interesting. What are your ideas/thoughts? Next step for me is to implement an I/O of the priorty queue and their weights for the User so he inputs...
  5. 4zariah

    justify-content: space-around; Not Working!!

    Here's my code. I'm using Caret on Chromebook Os. Please help if you can! .tc-container { width: 90%; margin: auto; display: flex; align-items: center; justify-content: space-around; }
  6. B

    More than one fas fa-bar

    I have tried adding a fas fa-bar, the one I added on the navigation bar is set up to appear at a smaller resolution however, more than one fas fa-bar icon has appeared and I can't figure out why please help. I have included the css and html code thanks in advance! /* Reset some default styles...
  7. Cooldude100

    Python I need devs for my project.

    Hello, my name is Grayson. I am looking for devs to help me create a payment Api for a website called Fruit surf. They will get half of the revenue from the website as long as they are a dev. Please help me. Also they must use python and know pyscript.
  8. Cooldude100

    Python Py-script chatgpt payment api

    I am having troubles with trying to figure out how to use a payment Api. So, I asked ChatGPT to help me. Here is the code: import jsonfrom http.server import BaseHTTPRequestHandler, HTTPServerclass PaymentHandler(BaseHTTPRequestHandler): def _send_response(self, status_code, data)...
  9. Cooldude100

    How to change my html name

    So, my html name is fruit surf (It is not public yet). I was wondering how I change the weird filename explaining where the website is on my computer to https and how to change the domain name to .fruit. And I don't mean the title tag. Please help with this.
  10. Cooldude100

    How do I implement a python widget into an html website?

    Hello, my name is Grayson. I am a beginner coder. I was wondering if there was a command that could make a widget in my html website that was a python script. Just wondering.
  11. Cooldude100

    Invalid syntax on html?

    Hello, my name is Grayson. I am a beginner coder who is twelve years old. I took this code from a website: <!DOCTYPE Html> <html> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html> And it put out this error: File "C:\Users\grays\OneDrive\Desktop\Test.html", line 1...
  12. K

    JavaScript Can't get past size five...

    First of all, this is just what I started for fun and when I started I knew nothing about html, css, javascript, mysql, or php. So that's where you should expect my level of code and understanding to be so treat me accordingly. I have an issue with a game I started writing because I was at a...
  13. 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>...
  14. 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"...
  15. 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?
  16. 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 ==...
  17. 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...
  18. 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))...
  19. 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...
  20. 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...
Back
Top Bottom