All Projects → thewhitetulip → Tasks

thewhitetulip / Tasks

Licence: mit
A simplistic todo list manager written in Go

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Tasks

Minimal Notes
Minimal Notes web app build with Vue.js
Stars: ✭ 102 (-79.76%)
Mutual labels:  todo, webapp
Todo.txt Cli
☑️ A simple and extensible shell script for managing your todo.txt file.
Stars: ✭ 4,725 (+837.5%)
Mutual labels:  todo
Mvc
A simple MVC application in plain JavaScript.
Stars: ✭ 406 (-19.44%)
Mutual labels:  todo
Monitorr
"Monitorr” is a self-hosted PHP web app that monitors the status of local and remote network services, websites, and applications.
Stars: ✭ 449 (-10.91%)
Mutual labels:  webapp
Sandbox
Development sandbox for front end projects and tutorials.
Stars: ✭ 408 (-19.05%)
Mutual labels:  webapp
Filestash
🦄 A modern web client for SFTP, S3, FTP, WebDAV, Git, Minio, LDAP, CalDAV, CardDAV, Mysql, Backblaze, ...
Stars: ✭ 5,231 (+937.9%)
Mutual labels:  webapp
Ytmdl Web V2
Web version of ytmdl. Allows downloading songs with metadata embedded from various sources like itunes, gaana, LastFM etc.
Stars: ✭ 398 (-21.03%)
Mutual labels:  webapp
Pomoday V2
A keyboard only task management web app
Stars: ✭ 495 (-1.79%)
Mutual labels:  todo
Responsiveframework
Easily make Flutter apps responsive. Automatically adapt UI to different screen sizes. Responsiveness made simple. Demo: https://gallery.codelessly.com/flutterwebsites/minimal/
Stars: ✭ 476 (-5.56%)
Mutual labels:  webapp
Nestjs Bff
A full-stack TypeScript solution, and starter project. Includes an API, CLI, and example client webapp. Features include production grade logging, authorization, authentication, MongoDB migrations, and end-to-end testing.
Stars: ✭ 450 (-10.71%)
Mutual labels:  webapp
Openvpn Web Ui
Web interface (with golang backend) for monitoring and administration of OpenVPN server
Stars: ✭ 444 (-11.9%)
Mutual labels:  webapp
Bastillion Ec2
A web-based SSH console to execute commands and manage multiple EC2 instances simultaneously running on Amazon Web Services (AWS).
Stars: ✭ 410 (-18.65%)
Mutual labels:  webapp
Webglstudio.js
A full open source 3D graphics editor in the browser, with scene editor, coding pad, graph editor, virtual file system, and many features more.
Stars: ✭ 4,508 (+794.44%)
Mutual labels:  webapp
Backlog
Simple desktop app for storing lists of items (todo, tasks, backlog items)
Stars: ✭ 407 (-19.25%)
Mutual labels:  todo
Iprotate burp extension
Extension for Burp Suite which uses AWS API Gateway to rotate your IP on every request.
Stars: ✭ 484 (-3.97%)
Mutual labels:  webapp
Udash Core
Scala framework for building beautiful and maintainable web applications.
Stars: ✭ 405 (-19.64%)
Mutual labels:  webapp
Dstask
Single binary terminal-based TODO manager with git-based sync + markdown notes per task
Stars: ✭ 431 (-14.48%)
Mutual labels:  todo
Haskell Code Explorer
Web application for exploring and understanding Haskell codebases
Stars: ✭ 454 (-9.92%)
Mutual labels:  webapp
Androiduix
Make a high-performance mobile web app / SPA with Android UI
Stars: ✭ 501 (-0.6%)
Mutual labels:  webapp
Rssbox
📰 I consume the world via RSS feeds, and this is my attempt to keep it that way.
Stars: ✭ 492 (-2.38%)
Mutual labels:  webapp

Tasks

Tasks is a simplistic Go webapp to manage tasks, I built this tool to manage tasks which I wanted to do, there are many good kanban style boards, but I felt they were a bit too heavyweight for my taste. Also I wanted to learn the Go webapp development.

How to use?

Via script: bash install.sh

This will generate the binary and set up the database. If you want, you can copy the binary and the public folder into a folder of your choice.

Manually:

  1. go get github.com/thewhitetulip/Tasks
  2. change dir to the respective folder and create the db file: cat schema.sql | sqlite3 tasks.db
  3. run go build
  4. ./Tasks
  5. open localhost:8081

You can change the port in the config file

Features

  1. Add, update, delete task.
  2. Search tasks, the query is highlighted in the search results page.
  3. Github flavoured markdown, which enables us for using a task list, advanced syntax highlighting and much more.
  4. Supports file upload, randomizes the file name, stores the user given filename in a db and works on the randomized file name for security reasons.
  5. Priorities are assigned, High = 3, medium = 2 and low = 1, sorting is done on priority descending and created date ascending.
  6. Categories are supported, you can add tasks to different categories.
  7. Ability to hide a task from the timeline.
  8. For a task list, shows 6 out of 8 tasks completed.
  9. Single click install, just run the install.sh file.
Book

I am learning writing webapps with Go as I build this application, I took to writing an introductory book about building webapps in Go because I faced a lot of problems while learning how to write webapps in Go, it, the book strives to teach by practical examples. You are welcome to contribute to the book.

Screenshots

The Home Page

Home Page

Add Task dialog

Add Task

Navigation drawer

Navigation Drawer

License

The MIT License (MIT)

Copyright (c) 2015 Suraj Patil

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].