nnnvGarden

Welcome to nnnvGarden🌱

Hi, I'm nonaneva and welcome to my digital garden!
If this is your first time here, you may want to know what this site is. Short version is: This site is where I write to collect, think and share about anything (mostly for myself).

This is my first time running a site like this so I will try to improve as I figure things out.

Also, I use "nnnv" as a personal prefix (it looks cool)

📅 Blog

I periodically write about my days, current thoughts or favorite artworks here in my blog. I will then later collect them temporarily in the Seeds Storage (Old) and properly in their own page later.

All blog entries can be found here in chronological order: nnnvBlog🌳

Newest blog entries:

LIST
FROM "Log"
SORT file.name DESC
LIMIT 3

I will populate this welcome page with some categories as a starting recommendation

Under Construction

👇 Please don't mind this I'm slowly building this up!

0. Uncategorized

1. About this garden and writings about writing:

2. Art stuffs:

📫 Contact

Please send any recommendation, comment about anything you'd like to see on this garden or other inquiries to my email nnnv@nonaneva.com

Gardening Logs

Recently Planted

// SETTINGS
const sortBy = "ctime";                // "ctime" = created | "mtime" = modified
const limit = 10;                      // number of files to show
const includeTypes = ["md", "canvas"]; // file types to include
const folder = "";                     // folder path ("" = whole vault, e.g. "Log/")

const allVaultFiles = Object.values(app.vault.getFiles())
  .filter(f => includeTypes.includes(f.extension))
  .filter(f => folder === "" || f.path.startsWith(folder))
  .sort((a, b) => b.stat[sortBy] - a.stat[sortBy])
  .slice(0, limit);

dv.table(
  ["Name", sortBy === "ctime" ? "Planted on" : "Last Tended"],
  allVaultFiles.map(f => [
    dv.fileLink(f.path),
    window.moment(f.stat[sortBy]).format("YYYY-MM-DD")
  ])
);

Recently Tended to

// SETTINGS
const sortBy = "mtime";                // "ctime" = created | "mtime" = modified
const limit = 10;                      // number of files to show
const includeTypes = ["md", "canvas"]; // file types to include
const folder = "";                     // folder path ("" = whole vault, e.g. "Log/")

const allVaultFiles = Object.values(app.vault.getFiles())
  .filter(f => includeTypes.includes(f.extension))
  .filter(f => folder === "" || f.path.startsWith(folder))
  .sort((a, b) => b.stat[sortBy] - a.stat[sortBy])
  .slice(0, limit);

dv.table(
  ["Name", sortBy === "ctime" ? "Planted on" : "Last Tended"],
  allVaultFiles.map(f => [
    dv.fileLink(f.path),
    window.moment(f.stat[sortBy]).format("YYYY-MM-DD")
  ])
);

🎨 Art Project

I'm doing an original art project!
This is my first OC: Aprica - Remains of the World Tree