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. 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...
  2. 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>...
  3. B

    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...
  4. 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)...
  5. 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.
  6. 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...
  7. C

    JavaScript How to alternate values from two variables?

    var 1 = 12345 var 2 = 67890 wanted output: 1627384950
  8. 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.
  9. 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...
  10. 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...
  11. Stefan7kk

    HTML & CSS How to move description below image?

    How to move description below image? https://www.ecrindefleur.com/products/aloe-vera
  12. JackReeve

    Java Help for my son.

    I apologise if this is in the wrong section, but I have an autistic son that’s trying to learn coding for his favourite game, minecraft. He’s tried learning Java but finds it stressful and annoying the way it is. However I remember him being quite good at scratch as he was able to make bits of...
  13. P

    Tech Start-Up

    Looking for outside the box, grand thinkers, who constantly question the boundaries of life and society, looking ideally for someone proficient in C/C++ and/or HTML BUT completely open to interviewing any applicant who has a passion for solving problems. If you’re interested in a quick...
  14. C

    Node.JS Leaderboard discord command

    Im new to coding and have no idea what im doing, if someone could help me make a discord leaderboard command, i would be very grateful, i searched for solutions and copied tutorials, however it didnt seem to work, im trying to make a leaderboard from a json file (example: lets say this is server...
  15. T

    Python Need help with project, Simple stuff just explain what's wrong to me

    Hi im learning python and I dont understand what is wrong with my code here: and
  16. JamesPy

    Python Need Help/Opinions

    Hey guys! I'm making a virtual assistant using python (and probably JS for UI when I can be bothered to). I've got alot of it made already, 4 different version to be exact, and I am planning on open sourcing it soon. Before I do this I have a checklist of what needs to be done before I open...
  17. Zyphon_22

    Python Running a python file inside a python file (ANSWERED)

    Hi for a project im working on i was wondering is there anyway you could run a python file inside a python file say for instance choice = input(">") if choice == "run" # run a external python file if anyone can tell me a way to run a python file inside one that would be helpful Thanks
  18. N

    All my login Data with passwords is on my fellow Students Macbook. Help.

    So basically all my login Data including Passwords from Google Chrome are now saved on my fellow Students Macbook. I have a Macbook as well. We obviously use the same University Wifi (with VPN) but I was never on his Notebook and he was not on mine. We worked on a Google Doc together for a Film...
  19. O

    Python HELP! Collision detector - TURTLE

    Hello y'all! I'm new here, so I hope my question will be clear enough! I'm trying to create a Breakout game using Python n Turtle. I created my lists of blocks and my main block to .clone() but wenn the ball reaches the top of the game, where the blocks are, it only erases the first block...
  20. MacaroniChez

    Python I'm trying to add a square root feature to a calculator I made, but I keep getting errors.

    In python, I made a very decent calculator that has addition, subtraction, multiplication, and division. Today, I decided that I'm gonna expand on it and add square roots. The first thing I did was Google for how to use square roots on python. It told me that I have to import in math. After...
Back
Top Bottom