Questions tagged [to-do-list]
For code that assists in activity tracking and management
101 questions
1
vote
1
answer
184
views
FreeCodeCamp todo list
I'm writing JS for the FreeCodeCamp todo list; the corresponding HTML and CSS for this can be found on their page. I have made one edit to the HTML - the button with type "submit" has been ...
1
vote
1
answer
127
views
React TODO list component
The code makes unnecessary API calls because there are two useEffect hooks that both fetch data. The first useEffect runs on mount and fetches data for page 1, while the second useEffect runs whenever ...
4
votes
3
answers
956
views
TODO application
The assignment was the following:
Users can add at a new Item/Card with Title and Description. Everytime an item is created, it is automatically placed in the TODO column
At any point in time items ...
2
votes
0
answers
111
views
To-do app with TypeScript backend (violations of TS best practices or unidiomatic code)
The working code in full is here.
It's a To-Do App with a TypeScript backend, written as practice for an upcoming 4-hour interview for a TypeScript backend role. My colleague and I would like to know, ...
2
votes
1
answer
202
views
Simple Rust Todo List with auto incrementing ID
I have recently started learning Rust and thought I'd start out with the classic Todo List application.
The application simply loops forever asking the user to type a number to do specific actions, ...
6
votes
2
answers
246
views
Sort todo.txt items by due date in Python 3
I am using the following format for my task management: https://github.com/todotxt/todo.txt
Do some stuff +uni due:2022-12-31
Write some paper +uni due:2023-01-10
...
2
votes
0
answers
107
views
To-do list application
I use a lot of for loops and I think it slows the code down a lot but I have no idea how else this code could be written. Its for a to-do list app and each ...
2
votes
1
answer
86
views
Refactored Todolist created using TS
After getting the code review I refactored the code and the updated version is below.
I tried implementing the suggestions but because I am still learning I might refactor again after learning how to ...
2
votes
1
answer
196
views
Created a todo list in TS
I am learning Typescript and created a straightforward to-do list project to practice some basic concepts.
I am able to
Edit the todo
Delete the todo
Mark the todo as completed
I want to how can I ...
1
vote
0
answers
75
views
A Command Line To-Do List (CLI) application written in NodeJS
I wrote this code for myself so I can manage my personal to-do list easier. Considering, I spend most of my time in the terminal, it made sense.
I have worked on the project as a way of practising my ...
4
votes
1
answer
79
views
Task manager with dependencies (revisited)
This is a new version of the todo(1) utility I published some time ago.
Now I use julian days rather than time_t to hold time; and the topological sorting is ...
2
votes
0
answers
82
views
To-do application in React
I am new to react and I tried to implement a TODO application using react state and props. I need somebody to just review the code and suggest improvements in the code. Currently I have not added any ...
3
votes
1
answer
155
views
Simple Vanilla JS Todo app
I'm a Kotlin engineer looking to get into web dev. I thought it'd be fun to make a Todo app w/o help from the internet. Just looking for some critiques and feedback, as I'm new-ish to the language.
...
9
votes
2
answers
759
views
Task manager with dependencies
todo(1) is a program that lists the next tasks in decreasing order of urgency (most urgent tasks first).
"Next" tasks are those which are not blocked by a task it depends that is still not ...
2
votes
1
answer
129
views
Todo App with JavaScript
I am learning JavaScript and this is a simple todo application I made which uses local storage. It is currently running at: https://koraytugay.github.io/vanillatodo/#. The code is as follows. I am ...