Yikes is a cli-application to simplify the process to maintaining a list of tasks to complete.

yikes

Yikes is a cli-application to simplify the process to maintaining a list of tasks to complete. It also has commands to help store random notes and retrive them for later use

Run locally

git clone https://github.com/shreyaparadkar/yikes.git
# or clone your own fork

cd yikes
go install yikes

Commands List

  • yikes [-h help] - Get information about different commands

    yikes -h
  • yikes add [todo action] - Add items to the todo list

    yikes add "Task description"
  • yikes list [-i incomplete] [-c complete] - Check the items present todo list

    yikes list 
    
    #to view only incomplete tasks
    yikes list -i
    
    #to view only complete tasks
    yikes list -c
  • yikes done [task no] [-a all] - Check off tasks from the list

    yikes done 1
    
    #to mark all tasks as done
    yikes done -a
  • yikes undone [task no] [-a all] - Undo a checked off task

    yikes undone 1
    
    #to mark all tasks as undone
    yikes undone -a
  • yikes delete [-a all] - Remove tasks from the list

    yikes delete 1
    
    #to delete all tasks
    yikes delete -a
  • yikes notes [-t title] [-d desc] [-c create] [-r remove] [-g get] [-o open] - Create and manage notes

    #get a list of all availabe notes
    yikes notes -g
    
    #create a new note with no content
    yikes notes -c -t="Title of the note"
    
    #create a new note with content
    yikes notes -c -t="Title of the note" -d="Description of the note"
    
    #create a new note and open notepad to edit it
    yikes notes -c -t="Title of the note" -o 
    
    #open and edit a created note
    yikes notes -t="Title of the note" -o 
    
    #delete a note
    yikes notes -r -t="Title of the note"
Similar Resources

List of serverless functions for AWS S3. Easy deploy with Vercel CLI

List of serverless functions for AWS S3. Easy deploy with Vercel CLI

Jan 22, 2022

cli tools for list all pages in logseq repo, marked with public or private

logseq-pages A cli tool for list all pages in logseq repo, marked with public or private. When I using logseq to build my knowledge base and publish p

Dec 12, 2022

cTRL is a server for remote execution of pending tasks and commands in real time, supporting a queue with continuous thread limiting and throttling.

Документация на русском: https://github.com/eltaline/ctrl/blob/master/README-RUS.md cTRL is a server written in Go language that uses a modified versi

Mar 3, 2022

Chore is a elegant and simple tool for executing common tasks on remote servers.

Chore is a elegant and simple tool for executing common tasks on remote servers.

Chore is a tool for executing common tasks you run on your remote servers. You can easily setup tasks for deployment, commands, and more.

May 20, 2022

Grit is an experimental personal task manager that represents tasks as nodes of a multitree

Grit is an experimental personal task manager that represents tasks as nodes of a multitree

Grit is an experimental personal task manager that represents tasks as nodes of a multitree, a class of directed acyclic graphs. The structure en

Jan 2, 2023

27 solved tasks on Golang (level 1)

golang-tasks-lvl1 Решение задач level# 1 (Golang) Запуск программы go run main.go Описание Проект состоит из файла main.go, директории с решением зада

Dec 3, 2021

cTRL: a server for remote execution of pending tasks and commands in real time

Документация на русском: https://github.com/eltaline/ctrl/blob/master/README-RUS.md cTRL is a server written in Go language that uses a modified versi

Mar 3, 2022

Todo-cmd: an app you can add your tasks , edit or delete them

TODO CMD APP! 🧙‍♂️ Table of contents General info Update Requirements set-up usage General info todo-cmd is an app you can add your tasks , edit or d

Dec 13, 2021

only for creates task and get all tasks from the db.

Todo Rest API This API only creates a task and get all tasks. Table of Contents: Getting Started Requirements Building with Docker API Endpoints and D

Dec 27, 2021
Related tags
Go library to simplify CLI workflow

This is a simple Go library to manage commands for your CLI tool. Easy to use and now you can focus on Business Logic instead of building the command

Dec 22, 2022
Simple to do list API with Gin and Gorm (with Postgres)Simple to do list API with Gin and Gorm (with Postgres)

go-todo Simple to do list API with Gin and Gorm (with Postgres) Docker Clone this repository and run: docker-compose up You can then hit the followin

Aug 29, 2022
A simple shopping list that keeps track of a users shopping list using charm.sh tools

Terminal Shopping List This repo is a practise project for learning practical Go. I have chosen to use a toolset called Charm as it provides a rich se

Jan 13, 2022
Gitlab Command to simplify some Gitlab Workflow

GitLabCommand - glc - README How to use ? ensure glc.yaml is configured with the valid token and url gitlab_token: <your valid token> gitlab_url: ht

Oct 14, 2021
Tnbassist - A CLI tool for thenewboston blockchain to perform various mundane tasks like taking daily accounts backup

TNB Assist is a CLI (Command Line Interface) tool for thenewboston blockchain to perform various mundane tasks like taking daily accounts backup, computing statistics, etc easier.

Feb 14, 2022
🧨 Interactive Process Killer CLI made with Go!
🧨 Interactive Process Killer CLI made with Go!

proc-manager is an interactive CLI to kill processes made with Go, currently supports Linux, Mac OS X, Solaris, and Windows.

Dec 2, 2022
Simple and complete API for building command line applications in Go

Simple and complete API for building command line applications in Go Module cli provides a simple, fast and complete API for building command line app

Nov 23, 2022
Brigodier is a command parser & dispatcher, designed and developed for command lines such as for Discord bots or Minecraft chat commands. It is a complete port from Mojang's "brigadier" into Go.

brigodier Brigodier is a command parser & dispatcher, designed and developed to provide a simple and flexible command framework. It can be used in man

Dec 15, 2022
Viper: a complete configuration solution for Go applications including 12-Factor apps
Viper: a complete configuration solution for Go applications including 12-Factor apps

Viper v2 feedback Viper is heading towards v2 and we would love to hear what you would like to see in it. Share your thoughts here: https://forms.gle/

Dec 6, 2021
Gobby-cli - CLI application to debug gobby applications

go(bby) Interactive debugging tool for gobby applications Usage Coming soon™ Ins

Feb 8, 2022