Skip to content

H4mes/ip

 
 

Repository files navigation

Yarr: The Pirate Task Manager

Ahoy from
 _  _   __    ____  ____ 
( \/ ) /__\  (  _ \(  _ \
 \  / /(__)\  )   / )   /
 (__)(__)(__)(_)\_)(_)\_)

Have you ever felt:

  • Dangerously forgetful?
  • Bored of speaking plain English?
  • Tired of minimalist app interfaces?

If you answered yes to any of the above, then Yarr is perfect for you! Yarr can be your swashbuckling assistant on the high seas of productivity.

Getting Started with Yarr

To get acquainted with him:

  1. download the most recent release from here;
  2. run java -jar yarr.jar from your terminal
  3. add your tasks
  4. get chummy with your new favourite scallywag 🏴‍☠️

All this for the low, low price of FREE!

Features

Yarr continues to grow more capable each day and is able to:

  • Handle To-dos
  • Handle Deadlines and Events
  • Be operated with a GUI interface
  • Accomodate flexible command formats

Customisability

For enthusiastic programmers, Yarr is highly customisable with easily extended packages and classes. Here's a snippet of the Task class for example:

public class Task {  
    protected String description;  
    protected boolean isDone;  
  
    public Task(String description) {  
        this.description = description;  
        this.isDone = false;  
    }  
  
    public String toString() {  
        return (isDone ? "[X] " + description : "[ ] " + description); //mark done task with X  
    }  
  
	public void markAsDone() {  
        isDone = true;  
    }
}

What are you waiting for? Download Yarr now and join our other happy users!

The One Piece Productivity! The One Piece Productivity is real! – Edward Newgate

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 96.4%
  • CSS 1.4%
  • Shell 1.3%
  • Batchfile 0.9%