👉 Saving notes about the persons in your life.
💬 Found a bug? Request a feature? Please tell us!
🌟 You like the package? Please give it a star!
There are so many people that we meet in our lives. Each of them has unique wishes, ideas, preferences, aversions. By recalling these facts, you can solidify your relationships.
Truly, it is impractical if not impossible to learn everything by heart. This package helps: Save notes about persons in your life. Recall the notes when you have to. You may encrypt the notes to keep secrets.
Imagine: A friend tells you a big wish. A couple of months later, it's his birthday. Do you remember his big wish? Ideally, you took a note and now just have to look it up.
Install and attach the package via:
r
install.packages("personfiles")
library("personfiles")
First, we need to create a folder for our person files via:
r
folder()
Optionally, we can specify the arguments password
(to encrypt our folder) and folder_dir
(to set the directory for the folder), for example:
r
folder(password = "secret", folder_dir = ".")
We found out, that John Doe likes chess. Let's create the first person file in our folder which is saved in the directory folder_dir
and which is encrypted by the password "secret"
:
r
person(name = "John Doe", note = "Likes chess.", password = "secret",
folder_dir = folder_dir)
For our next chess match against John Doe, let's remember his favorite opening move:
r
person(name = "John Doe", note = "Always plays 1.e4.", password = "secret",
folder_dir = folder_dir)
When the match day has come, we can recall this note via:
r
person(name = "John Doe", password = "secret", folder_dir = folder_dir)
We meet John's wife Jane:
r
person(name = "Jane Doe", note = "Married to John Doe.",
password = "secret", folder_dir = folder_dir)
To print all our person files, call:
r
person(name = "all", password = "secret", folder_dir = folder_dir)
Today, John played 1.d4, so let's delete "Always plays 1.e4." in John Doe's file, which is the second note:
r
person(name = "John Doe", delete = 2, password = "secret",
folder_dir = folder_dir)
We can delete a file, for example for Jane, via:
r
person(name = "Jane Doe", delete = "all", password = "secret",
folder_dir = folder_dir)
Batch file: It should be as easy as possible to create and recall notes. Therefore, a functionality is planned that builds a batch file with which person files can be accessed directly from the desktop.
Shiny app: To make it even more easy, maybe a Shiny app is a good idea?
Connections: Building networks of the persons in your folder.
Categories: Possibility to classify notes by categories.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.