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!

new to coding

  1. Cariam009

    Could someone help?

    I got an homework that tells me to write a program with c that is supposed to(1. Semester): 1. scan 5 integers 2. find out the maximum and minimum sum possible if i only sum 4 of these 5 integers up. 3. this should be done in a singular loop and i dont need to print out the choosen 4 numbers. I...
  2. S

    JavaScript querySelector works, but not querSelectorAll

    I want to replace all .emoji elements, with a random weather emoji. I have written the following code to randomize an emoji: let weatherEmojis = [ "⚡️","☀️","⛅️","☁️","💧","💦","☔️","💨","❄️" ]; var weatherEmoji = weatherEmojis[Math.floor(Math.random() * weatherEmojis.length)]; And the...
  3. 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...
  4. pedro_asacc

    Is there a beginner programmer willing to do an interview to my user finding of my potential coding platform?

    Interviews to beginner programmers. I am just searching for a beginner programmer who can do a quick interview through Zoom of no more than 30 minutes for me to better understand my potential user's struggles and passions to, based on that, improve my company's idea. I actually have tried to...
  5. SilentHealer584

    Python How can i use this to translate entire words at a time?

    I got some code here(can anyone help solve this problem?): while True: n = raw_input("Ltr:") if n.strip() == 'a': print("01100001") repeat='while True' if n.strip() == 'b': print("01100010") repeat='while True' #it goes on for every letter of the...
  6. T

    CSS CSS free help

    I just took a course that showed me all about CSS and I was really glad that I took this course. I wish to share this course with you if you are interested reply to this post and I will send you the direct link to this course
  7. N

    HTML I'm new to HTML, this code doesn' t work? I put the image in the same folder as my .html program. Any idea why it won' t work?

    <!DOCTYPE html> <html> <head> <title>Nanonauten in actie</title> </head> <body> <script> var canvas = document.createElement ('canvas'); canvas.width = 800; canvas.height = 600; document.body.appendChild(canvas); var c = canvas.getContext('2d'); var image = new Image(); image.src =...
  8. Andre

    JavaScript Random maze maker project im trying to do

    https://studio.code.org/projects/applab/SNg1ZJQ_rOl7XJGu5VmYANpQWVtRlYyG-sbkfkLxOCE its on code.org and yeah the random colors is just for fun but the lines are not supposed to go diagonal or all be touching each other in a 4x4 grid there is 1320 total images (they make up the maze) in the maze...
Back
Top Bottom