Skip to main content

Questions tagged [beginner]

Add this tag to your question to indicate that you are new to the language of your code. This will often be taken into consideration by reviewers when assessing your code.

-3 votes
0 answers
26 views

Solving genetic algorithm [closed]

The code is running now but the answer is not stable to decrease, it is oscillating. I do not want to change the mutation rate and selection operator since it will be changed after this for further ...
shalax's user avatar
  • 1
-3 votes
0 answers
30 views

Weight Calculator in Java [closed]

Assignment Tasks: Create a new Java project and create two java files named WeightCalculator.java and Planet.java. Paste the following into WeightCalculator.java. You will need to finish both ...
Simon's user avatar
  • 1
2 votes
1 answer
58 views

Excel sheet manipulation program

I'm very new to programming, and I'm hoping I can get feedback on the code I wrote - anything is helpful - what to split into different files (right now 1 large file), perhaps a way to break up the <...
Owlhunter1's user avatar
0 votes
0 answers
57 views

Bird struct and other type of birds

I am learning Go and trying to write a Bird design in Go. Here is the code. How can I improve it? bird/bird.go ...
coder's user avatar
  • 2,449
-2 votes
0 answers
30 views

Heap or stack initialized object [closed]

tl;dr; What is a proper way to initialize object on stack or on heap? I want to make a profiling tool that can track time for iterative purposes and for single measurements - so that I can use same ...
Danilo's user avatar
  • 191
8 votes
2 answers
1k views

C# Linked List implementation

I am trying to learn C# and created this project to improve. I will be using C# professionally so a harsh critique is welcome. ...
Doruk's user avatar
  • 293
0 votes
0 answers
16 views

2D chunk loading/world generation in Godot (GDScript)

I'm a beginner with both Godot and gamedev concepts. I've made games before, but feature-wise, they were pretty simple in comparison. One of the main concerns that I have now with my code is that ...
inexperienced-potat's user avatar
2 votes
0 answers
23 views

Tic Tac Toe CLI in Clojure

I wrote a command line tic tac toe game in Clojure. I've broken this post into three sections: Feedback Requests, Gameplay, and Code Feedback Requests I'm looking for feedback on: How "idiomatic&...
cgoates's user avatar
  • 175
3 votes
2 answers
117 views

First tic tac toe game. want to see if valid or needs improvement

Just finished my first java class that taught me all the way up to oop and abstract classes. Decided to start some projects over the summer. Started with tic tac toe since it sounded fairly easy to do....
bruh's user avatar
  • 31
1 vote
0 answers
42 views

Plain JavaScript Rock, Paper, Scissors

As part of "The Odin Project" web-dev curriculum, I created a simple "Rock, Paper, Scissors" game. I am hoping to receive feedback on how readable the code is and if the ...
mellow_meh's user avatar
6 votes
3 answers
623 views

Simple calendar in Java

I set out trying to use as many methods as possible in order to use them in future projects, but I don't feel like I did a great job in regards to that. Also i wanted to use as many basic java ...
KanagawaPunk's user avatar
7 votes
5 answers
3k views

Check if license plate number is formatted correctly

I'm just learning Python and am looking for some feedback on some of the code exercises I've completed and do work. In particular, what would make them more Pythonic, or more closely align with ...
Th1s0neGuy's user avatar
5 votes
1 answer
252 views

Simple Bank Management System

This is my 2nd C++ project, so I created a bank management system. This was particularly hard because I had to understand OOP. I still don't fully get it, but I'm sure I'll improve as I do more ...
Dalha Dalha's user avatar
11 votes
1 answer
888 views

a not-so optimized, not-so simple brainfuck source-to-source compiler to assembly (fasm) written in python that automatically compile using fasm

first time writing this source-to-source (i think) compiler, not an expert, not a pro, not an advanced person, just a beginner, I don't think this is cross platform. ...
user avatar
8 votes
1 answer
500 views

Battleship vs. computer with Python

I am still pretty new to Python. After spending time on Code Wars and copying a handful of projects from Al Sweigart's Big Book of Small Python Projects, I wanted to build something completely from ...
Jessica Monnier's user avatar