Top new questions this week:
|
So this is my first ever attempt so it’s obviously bad. There has to be a better way to do this. A big thing I haven’t implemented is trying to guarantee the structure of the input(i.e making sure …
|
I made a function that turns all child from a JSON file to parents (or brothers?). It adds the parent name to the key, so there are no duplicates. It works ok, but I would like to ask if there are …
|
The following code tries to emulates a real employee/company relationship. I would like to recieve feedback on: Any bad coding practices or code smells Design in terms of practicality, effeciency, …
|
I would be grateful if anyone can give me inputs on this code that I’ve written. Is there any way to better optimize the memory used? May I ask for any improvement that adds different levels of …
|
Edited: incorporated some feedback and added a lot of features I’ve written a basic Doubly Linked List Class where every insertion into the class should be sorted into ascending order. The project …
|
My code for a banking-api in PHP and Laravel was deemed “not fit for production”. Can you help me enhance and refurbish my code? Objective The task is to build an internal API for a fake …
|
In the following I reimplement the Walker-Vose Alias method for sampling from nonuniform, discrete probability distributions. I am well aware that there is en.cppreference.com/w/cpp/numeric/…
|
Greatest hits from previous weeks:
|
I have this kind of file structure MALE:FooBar:32 FEMALE:BarFoo:23 Where I would want to identify the gender and age of person, …
|
This is not much of a question as more of an practice/experience project and feedback request. First off, this was a project I worked on when I started getting into Java last summer and had an …
|
For homework, I have to code a program in Python that effectively simulates a bank ATM. …
|
I have programmed for 2 months, and I began writing a Chess game. I am a beginner programmer in Python, so please assess my code. …
|
Here is a very basic Snake game in C, which I just want to make better. The game is working perfectly but it is very annoying because when playing it, it is always blinking. I hope that somebody could …
|
Challenge Description: If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23. Find the sum of all the multiples of …
|
I’m working on a website on ASP.NET MVC4 and EF5. I want to ensure that only modified values are updated in the database. I’m using a unit of work pattern and repositories for data work. Here’s the …
|
Can you answer these questions?
|
The following is a daytime client written in C that uses Tor to connect to a given daytime server. It assumes a Tor daemon is running on the system and that Tor can be reached via a specified UNIX …
|
I have 3 classes to create a simple checkers move validator. The entry point is checkers.py and is mostly complete with a few things hard-coded. For example, the auto-generated board (if none is given)…
|
I am new to swing and GUIS in general. I am not sure how to structure projects with gui so help me fix mistakes I have done in this project Main: …
|