All Projects β†’ iridakos β†’ Stup

iridakos / Stup

Licence: mit
Daily notes in the terminal 🐧

Programming Languages

shell
77523 projects
bash
514 projects

Projects that are alternatives of or similar to Stup

Nb
CLI and local web plain text note‑taking, bookmarking, and archiving with linking, tagging, filtering, search, Git versioning & syncing, Pandoc conversion, + more, in a single portable script.
Stars: ✭ 3,846 (+1031.18%)
Mutual labels:  productivity, note-taking, cli, notes
Jrnl
Collect your thoughts and notes without leaving the command line.
Stars: ✭ 5,126 (+1407.65%)
Mutual labels:  productivity, note-taking, cli, notes
Namecheck
Check your name idea availability with CLI
Stars: ✭ 19 (-94.41%)
Mutual labels:  productivity, cli, tools
Notes
πŸ“ Simple delightful note taking, with more unix and less lock-in.
Stars: ✭ 939 (+176.18%)
Mutual labels:  productivity, note-taking, notes
Nnn
nΒ³ The unorthodox terminal file manager
Stars: ✭ 13,138 (+3764.12%)
Mutual labels:  productivity, cli, terminal
Posce
A note-taking toolkit for your command line.
Stars: ✭ 103 (-69.71%)
Mutual labels:  note-taking, cli, notes
Protolock
Protocol Buffer companion tool. Track your .proto files and prevent changes to messages and services which impact API compatibility.
Stars: ✭ 394 (+15.88%)
Mutual labels:  productivity, cli, tools
Termy
A terminal with autocomplete
Stars: ✭ 112 (-67.06%)
Mutual labels:  productivity, cli, terminal
Archivy
Archivy is a self-hosted knowledge repository that allows you to safely preserve useful content that contributes to your own personal, searchable and extendable wiki.
Stars: ✭ 2,746 (+707.65%)
Mutual labels:  productivity, note-taking, cli
3llo
3llo - Trello interactive CLI aplication
Stars: ✭ 245 (-27.94%)
Mutual labels:  productivity, cli, terminal
Eureka
πŸ’‘ CLI tool to input and store your ideas without leaving the terminal
Stars: ✭ 316 (-7.06%)
Mutual labels:  productivity, cli, terminal
Piano Rs
A multiplayer piano using UDP sockets that can be played using computer keyboard, in the terminal
Stars: ✭ 180 (-47.06%)
Mutual labels:  cli, terminal, notes
Tooling
Advancing Node.js as a framework for writing great tools
Stars: ✭ 98 (-71.18%)
Mutual labels:  cli, terminal, tools
flawesome
Productivity Tool
Stars: ✭ 56 (-83.53%)
Mutual labels:  productivity, notes, note-taking
Awesome Startup Tools List
List of all tools (apps, services) that startups should use.
Stars: ✭ 188 (-44.71%)
Mutual labels:  productivity, note-taking, tools
lunatask
All-in-one encrypted to-do list, notebook, habit and mood tracker, pomodoro timer, and journaling app
Stars: ✭ 35 (-89.71%)
Mutual labels:  productivity, notes, note-taking
Deer
✏️A modern, fast, beautiful note taking app, built on Electron and React
Stars: ✭ 267 (-21.47%)
Mutual labels:  productivity, note-taking, notes
Travis Watch
Stream live travis test results of the current commit to your terminal!
Stars: ✭ 294 (-13.53%)
Mutual labels:  cli, terminal
Tmuxp
πŸ’» tmux session manager. built on libtmux
Stars: ✭ 3,269 (+861.47%)
Mutual labels:  cli, terminal
Ghb0t
A GitHub Bot to automatically delete your fork's branches after a pull request has been merged.
Stars: ✭ 295 (-13.24%)
Mutual labels:  cli, tools

stup

A CLI tool to easily save, access and organize daily notes.

Version badge

All Contributors

The name derives from the Standup meetings since its initial purpose was to cover my need for keeping my Standup notes in a convenient way.

stup Gif demo

How it works

Notes are organized in categories.

When a new note is added, stup creates a markdown file and places it under the category's directory in a sub-directory with a path based on the date.

CATEGORIES_ROOT_DIRECTORY/CATEGORY/YEAR/MONTH/YYYY-MM-DD.md

# For example, the notes of a category named "programming" April 18th, 2020 are saved under
CATEGORIES_ROOT_DIRECTORY/programming/2020/04/2020-04-18.md

This allows users to retrieve any notes added on a specific date or in a specific period for a specific or for all categories.

# Fetch notes for all categories
$ stup show @ 2020-04-18

# Fetch notes for a specific category for previous week
$ stup log previous-week -c programming

# Fetch notes for all categories for a specific period
$ stup log --from 2020-04-01 --to 2020-04-15

Installation

For the moment, the installation is manual until this issue is resolved.

So you have to clone the repository and place the executable stup script in a directory included in your $PATH variable.

git clone https://github.com/iridakos/stup

cd stup

# Given that `~/.local/bin` is included in your $PATH variable
cp ./stup ~/.local/bin

Compatibility

The script has been tested in:

  • Ubuntu 18.04
  • Ubuntu 19.10
  • Debian 9

but it should be running without problems in other Linux Distros as well.

If you face any problems though, feel free to open an issue reporting your Distro and its version.

Configuration

Before you start using stup you have to configure it with:

stup --configure

Follow the wizard to define:

  • to which directory stup will be saving your notes
  • what is the name of the default category *
  • what is the editor you want to use to manually edit your notes when using the edit command
  • what is the pager you want to use for long outputs (log and usage)

It also asks you if you want to edit the file and change the defaults in case you omit some arguments.

* You can use stup with just a default category but in case you want to add your notes structured for example per project or per any type of section you want, you have the option to create and use multiple categories (see below).

Usage

Add notes

To add a new note use the add command.

$ stup add @ yesterday -n "A note" -n "Another note"

The full version of the command:

stup add @|--at|[email protected] <when> -n|--note "<note text>" -c|--category "<category-name>"

where:

  • <when>: specifies in which date the notes should be added. Its value can be:
    • any of the words: today, tomorrow, yesterday in which case you can omit the @|--at|[email protected] option
    • a date string in the form: YYYY-MM-DD, for example: 2020-04-12
    • if you omit this option, stup by default will save the notes in the current date
  • <note-text>: the text of the note, for example: "Reviewed PR related to..."
  • -c or --category: is the category option (optional). If omitted, notes will be saved to your default category
    • <category-name>: the name of the category in which the notes will be added

Examples

Add a note for current date (all of the following commands are equivalent)
# Implying today (if you don't define the date, the add action defaults to current date)
$ stup add -n "A new note"

# Explicit with date alias 'today' omitting the `@` option
$ stup add today -n "A new note"

# Explicit with date alias 'today'
$ stup add @ today -n "A new note"

# Explicit without the 'today' alias (suppose the date is April 17th, 2020)
$ stup add @ 2020-04-17 -n "A new note"
Add a note for yesterday

All of the following commands are equivalent.

# Explicit with date alias 'yesterday'
$ stup add @ yesterday -n "A new note"

# Explicit with date alias ommiting the `@` option
$ stup add yesterday -n "A new note"

# Explicit without alias (suppose the date is April 17th, 2020)
$ stup add @ 2020-04-16 -n "A new note"
Add a note for tomorrow

All of the following commands are equivalent.

# Explicit with date alias 'tomorrow'
$ stup add @ tomorrow -n "A new note"

# Explicit with date alias omitting the `@` option
$ stup add tomorrow -n "A new note"

# Explicit without alias (suppose the date is April 17th, 2020)
$ stup add @ 2020-04-18 -n "A new note"
Add two notes at once
$ stup add today -n "Reviewed PR ..." -n "Merged to master..."
Add to a non-default category
# Add a note to a category named 'blocking'
$ stup add -c "blocking" -n "Can't continue unless"

Show notes

To view your notes on a given date, use the show command.

$ stup show

The full version of the command is:

$ stup show @ <when> -c|--category "<category-name>"

where:

  • @ or --at or [email protected]: is the date option
    • <when>: specifies which date's notes should be shown. Its value can be:
      • any of the words: today, tomorrow, yesterday in which case you can omit the @ option
      • a date string in the form: YYYY-MM-DD, example: 2020-04-12
    • if you omit this option, stup by default will show you your yesterday's notes
  • <category-name>: the name of the category whose notes will be shown. You may omit this option if you want to see notes from all the categories.

If you don't specify a category and you have more than one, the default behaviour is to show notes only from the categories that have notes the specified day. If you prefer though to show the "empty" categories as well, you may use the --include-empty.

Notes:

  • the default action of stup is to show you your notes so you may write the command without the show directive (see the examples).

  • if you request to view your notes on a date that you haven't added anything, stup will ask if you want to see the notes of the latest date on which something was added before the one you specified.

    For example, if it is Monday and you didn't add any notes during the weekend, when you type stup yesterday you'll be prompted to see the notes added on Friday.

Examples

Show yesterday's notes

All of the following commands are equivalent.

# Imply "show" as action and "yesterday" alias as date
$ stup

# Imply "yesterday" as date
$ stup show

# Explicit date set to "yesterday" date alias
$ stup yesterday

# Explicit date (given that current date is April 17th, 2020)
$ stup @ 2020-04-16
Show today's notes

All of the following commands are equivalent.

# Imply "show" as action
$ stup today

# Show today's notes for the category "meetings"
$ stup today -c "meetings"

# Show today's notes for the category "meetings" by explicitly setting action to "show"
$ stup show today -c "meetings"
Show notes on a past date
# Show notes on April's Fool Day
$ stup show @ 2020-04-01
Show notes of a specific category
# Show today's notes added in category "pull-requests"
$ stup show today -n "pull-requests"

Log notes

To list your notes for a given period, use the log command.

$ stup log previous-week

The full version of the command:

$ stup log --from <from-date> --to <to-date> -c <category-name>

# or using an alias

$ stup log <week|previous-week|month|previous-month|year|previous-year>

where:

  • <from-date>: is a date alias (today, yesterday, tomorrow) or a specific date using the format YYYY-MM-DD, for example: 2020-04-18
    • this is optional and if omitted the notes to be displayed won't have be added after a specific date
  • <to-date>: is also a date alias (today, yesterday, tomorrow) or a specific date using the format YYYY-MM-DD, for example: 2020-04-18
    • this is also optional and if omitted the notes to be displayed won't have be added before a specific date
  • -c or --category: is the category option (optional). If omitted, you will view the notes of all categories
    • <category-name>: the name of the category whose notes you want to see

In the second version of the command, you can use the temporal aliases that will be translated to proper from/to dates.

In both cases, you may skip the log literal given that you set either an alias or one of the from and to flags.

Examples

Log of this week's notes
$ stup log week

# or

$ stup week
Log of previous week's notes
$ stup log previous-week

# or

$ stup previous-week
Log of notes added in a specific period
$ stup log --from 2020-01-15 --to 2020-02-01

# or

$ stup --from 2020-01-15 --to 2020-02-01
Log of notes added in a specific period in the category "blocking"
$ stup log --from 2020-01-15 --to 2020-02-01 -c blocking

# or

$ stup --from 2020-01-15 --to 2020-02-01 -c blocking
Log of notes added after a specific date in the category "blocking"
$ stup log --from 2020-01-15 -c blocking

# or

$ stup --from 2020-01-15 -c blocking

Search notes

To search your notes, use the search command.

$ stup search 'jira' previous-week

The full version of the command:

$ stup search <search-text> --from <from-date> --to <to-date> -c <category-name>

# or using an alias

$ stup search <search-text> <week|previous-week|month|previous-month|year|previous-year> -c <category-name>

where:

  • <search-text>: the text you want to find in notes
  • <from-date>: is a date alias (today, yesterday, tomorrow) or a specific date using the format YYYY-MM-DD, for example: 2020-04-18
    • this is optional and if omitted the notes to be searched won't have to be added after a specific date
  • <to-date>: is also a date alias (today, yesterday, tomorrow) or a specific date using the format YYYY-MM-DD, for example: 2020-04-18
    • this is also optional and if omitted the notes to be searched won't have to be added before a specific date
  • -c or --category: is the category option (optional). If omitted, you will search the notes of all categories
    • <category-name>: the name of the category whose notes you want to see

In the second version of the command, you can use the temporal aliases that will be translated to proper from/to dates.

Examples

Search this week's notes
$ stup search "jira" week

# or

$ stup week search "jira"
Search in previous week's notes
$ stup search "reviewed" previous-week

# or

$ stup previous-week search "linux"
Search notes added in a specific period
$ stup search "cli" --from 2020-01-15 --to 2020-02-01

# or

$ stup --from 2020-01-15 --to 2020-02-01 search "cli"
Search notes added in a specific period in the category "blocking"
$ stup search "SSD" --from 2020-01-15 --to 2020-02-01 -c blocking

# or

$ stup --from 2020-01-15 --to 2020-02-01 -c blocking search "SSD"
Search notes added after a specific date in the category "blocking"
$ stup --from 2020-01-15 -c blocking search "SSD"

# or

$ stup --from 2020-01-15 -c blocking search "SSD"

Edit notes

To manually edit notes added in a specific date use the edit command.

$ stup edit yesterday

The full version of the command as below:

stup edit @|--at|[email protected] <when> -c|--category "<category-name>"

where:

  • <when>: specifies in which date the notes should be added. Its value can be:
    • any of the words: today, tomorrow, yesterday in which case you can omit the @|--at|[email protected] option
    • a date string in the form: YYYY-MM-DD, for example: 2020-04-12
    • if you omit this option, stup by default will edit the notes in the current date
  • -c or --category: is the category option (optional). If omitted, you will edit the notes of your default category
    • <category-name>: the name of the category in which the notes will be added

Note: If there are no notes for a specific date and category, you will be asked if you want to create and edit the file anyway.

Examples

Editing yesterday's notes
# Omitting category option, implying the default one
$ stup edit yesterday

# Editing yesterday's notes for the category with name "blocking"
$ stup edit @ yesterday -c "blocking"
Editing notes on specific date
# Omitting category option, implying the default one
$ stup edit @ 2020-03-24

# Editing notes saved on March 24th, 2020 for the category with name "blocking"
$ stup edit @ 2020-03-24 -c "blocking"

Copy notes

To copy notes from one date to another use the copy command.

$ stup copy --from today --to tomorrow

The full version of the command:

stup copy --from <copy-from-date> --to <copy-to-date>  -c|--category "<category-name>"

where:

  • <copy-from-date>: is a date alias (today, yesterday, tomorrow) or a specific date using the format YYYY-MM-DD, for example: 2020-04-18
    • this is optional and if omitted defaults to yesterday
  • <copy-to-date>: is also a date alias (today, yesterday, tomorrow) or a specific date using the format YYYY-MM-DD, for example: 2020-04-18
    • this is optional and if omitted defaults to today
  • -c or --category: is the category option (optional). If omitted, notes will be copied between the default category of the two dates specified
    • <category-name>: the name of the category to which the notes will be copied

stup will prompt you for each line to be copied:

stup copy


- Worked on some PRs


>>> Copy this note [y,n,q,a]?:

Examples

Copy notes from yesterday to today, in the default category
$ stup copy
Copy notes from a specific date, to a specific date
$ stup copy --from 2020-01-15 --to 2020-02-01
Copy notes from yesterday to tomorrow in the category "blocking"
$ stup copy --to tomorrow -c blocking

Add a new category

To add a new category to save notes into use the following command.

$ stup add-category --category-name "<category-name>" --category-description "<category-description>"

where:

  • <category-name>: the name of the category to be created. This is going to be a directory so make sure it's a valid directory name.

  • <category-description>: the description of this category. Even though this is optionally set, it is highly recommended to be defined. Whenever stup shows your notes, the title of each category will default to the category name if the category doesn't have a description.

    # Without a description for category with name mobile
    $ stup yesterday
    
    Displaying notes for Friday, April 16th 2020.
    
    >>> mobile
    
    - A note
    - Another note
    - ...
    

    vs

    # With mobile's category description set to "Mobile related notes"
    
    $ stup yesterday
    
    Displaying notes for Friday, April 16th 2020.
    
    >>> Mobile related notes
    
    - A note
    - Another note
    - ...
    
    

Set a category's description

To set a new description or change the existing description of a category use the following command.

$ stup set-category-description --category-name "<category-name>" --category-description "<category-description>"

where:

  • <category-name>: the name of the category whose description will be set. If you omit this options, you will change the description of your default category.
  • <category-description>: the description to set

List your categories

To see all your categories use the list-categories command as shown below:

$ stup list-categories

# or the equivalent

$ stup --list-categories

Change the order of categories

To change the order of your categories (affecting the order with which the notes are shown) use the order-categories command as shown below:

$ stup order-categories

# or the equivalent

$ stup --order-categories

This command opens the categories registry file in your editor and you can change the order by moving the category names up and down.

Future work

New features that are on the top of my list for stup:

You can find more information about what is planned to be implemented browsing the GitHub repository's issues labeled as new feature

Contributing

  1. Create an issue describing the purpose of the pull request unless there is one already
  2. Fork the repository ( https://github.com/iridakos/stup/fork )
  3. Create your feature branch (git checkout -b my-new-feature)
  4. Commit your changes (git commit -am 'Add some feature')
  5. Push to the branch (git push origin my-new-feature)
  6. Create a new Pull Request

License

This tool is open source under the MIT License terms.

[Back To Top]

Contributors ✨

Thanks goes to these wonderful people (emoji key):


Bohdan PotmΔ›kleč

πŸ’» πŸ› πŸ€” πŸ’¬

Brendan Hagan

πŸ’¬ πŸ’» πŸ€”

Giannis Poulis

πŸ€” πŸ’»

Nikhil Mutalik

πŸ“–

sylvandb

πŸ‘€

This project follows the all-contributors specification. Contributions of any kind welcome!

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].