Hey all!
A huge thanks to @zef for creating SilverBullet. Your app changed how I take notes, how I recollect things, and how I plan everything!
I have been a long time user of Obsidian and Logseq. I loved Obsidian because it was easily customisable. Logseq's bidirectional links were useful, but not a fan of its outline model.
I accidentally discovered SilverBullet from reddit. After testing countless apps (Affine, Standard Notes, Cryptee, Anytype, etc) I found out SilverBullet is the one!
A huge shoutout to @Mr.Red for his plugins. Your plugins made my onboarding experience wholesome. Especially, Floating Calendar. Thank you!
A big thanks to @ahzay for Page Encryption Plug: Silverbullet Crypt. It is part of my note system now.
Thanks to @jagwarrx for the action button.
For those who prefer a command button that can take you to today's journal (or whichever date), here is one
-- command: Go to Today
command.define {
name = "goto-today",
description = "Go to Today",
run = function()
local date = os.date("*t")
local monthNames = {
"January","February","March","April","May","June",
"July","August","September","October","November","December"
}
local year = tostring(date.year)
local month = string.format("%02d", date.month)
local day = string.format("%02d", date.day)
local monthname = monthNames[date.month]
local path =
"Journal/" .. year .. "/" .. month .. "-" .. monthname .. "/" ..
year .. "-" .. month .. "-" .. day
editor.navigate(path)
end
}
Then you can embed this anywhere,
${widgets.commandButton("Today's entry", "goto-today")}
HOWEVER, I do feel that SilverBullet is NOT getting the recognition it deserves. It needs a lot of tutorials, and @zef alone can not do it. I will try creating proper guides and example configurations so that newcomers feel right at home.
A little about me: I am a selfhosting guy. Been trying to help the community for some time. I have a website where I publish easy-to-adopt compose files and architecture. You can expect a dedicated SilverBullet section soon enough.
Thank you all.

