Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

help

  1. 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"...
  2. 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...
  3. 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; }
  4. 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...
  5. 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.
  6. 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)...
  7. 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.
  8. 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.
  9. 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...
  10. 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...
  11. 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>...
  12. 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"...
  13. 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?
  14. 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 ==...
  15. 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...
  16. 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))...
  17. 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...
  18. 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...
  19. 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...
  20. 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...
Back
Top Bottom