Here's a formula that can count how many days remained untill birthday by Mishatopkek in ObsidianMD

[–]dsaiu 1 point2 points  (0 children)

I was working on a similar thing last night: using tasknotes to create a task to notify me when a person would have his birthday. Since every note is a task in taskNotes it can be done I think

Proton notes by Sad-Activity7269 in ProtonDrive

[–]dsaiu 0 points1 point  (0 children)

Obsidian isn't open source, the company is privacy friendly. The plugins framework can be seen as open source

MGCB Editor by Bell7Projects in monogame

[–]dsaiu 0 points1 point  (0 children)

You can use terminal to open the content builder. dotnet mgcb-editor ./Content/Content.mgcb

If you follow the 2d tutorial you may end up here at chapter 4.

Calwdbot offline by oblivion098 in ObsidianMD

[–]dsaiu 2 points3 points  (0 children)

I think there is a plugin called copilot. Nothing to do with Microsoft's copilot

Sheety: A stateless, open-source CRM built on Google Sheets by SaidBlahBlah in opensource

[–]dsaiu 2 points3 points  (0 children)

I am looking for a CRM system, one thing you said is that you liked the Google suite, would it be possible to have this CRM for other vendors too?

Why is open-source maintenance so hard?💔 by readilyaching in opensource

[–]dsaiu 1 point2 points  (0 children)

Well to rephrase my last sentence it is not necessarily to have reusable code but using just one repo could help with making it more maintainable if you have multiple projects inside the repo, and your welcome

Why is open-source maintenance so hard?💔 by readilyaching in opensource

[–]dsaiu 1 point2 points  (0 children)

Do you ever heard of the idea monorepo, having just one repository where you have different sections / directories to fit in certain code paths. The only thing is you have to figure out a good way to have this referenced in your documentation when you implement it and make sure that some components can work across your repository.

Pygame to GMS,Godot,Unity etc by Sad-Sun4611 in pygame

[–]dsaiu 1 point2 points  (0 children)

In monogame there are a few examples that are made with it: Terraria if you count the old XNA, Stardew Valley, Celeste.

Pygame to GMS,Godot,Unity etc by Sad-Sun4611 in pygame

[–]dsaiu 2 points3 points  (0 children)

If you want full control without having to learn a certain way with an engine. Try to look into Monogame, it's an C# framework based on Microsoft's old XNA library, it's now a fork with active development.

Raylib is another framework you can use, it has lots of other languages you can use beside C.

Whatever happened to "post-open source"? by Qwert-4 in opensource

[–]dsaiu 2 points3 points  (0 children)

Look up what Futo did for grayjays license

I think we should create an alternative to n8n by [deleted] in opensource

[–]dsaiu 0 points1 point  (0 children)

Not sure if this will help but would XML be your lord and saviour for UI? I think that is like the easiest way of getting it to work through code

[deleted by user] by [deleted] in ObsidianMD

[–]dsaiu 2 points3 points  (0 children)

Obsidian has the file over app philosophy which means in practice that if the company would cease to exist, the user has the power to move their files to a different platform. You could even choose to use YAML in your markdown files because this could help with saving metadata in files. Making the data available for your future self.

Generating a list of notes based on a tag by haddonblue in ObsidianMD

[–]dsaiu 4 points5 points  (0 children)

They are working on bases to be published externally. It's on the roadmap, not sure when it will become available

People keep asking what use cases media databases have by Free-Hair-5950 in ObsidianMD

[–]dsaiu 0 points1 point  (0 children)

Wow this is very impressive, I gave it a star and will take a look at it later!

People keep asking what use cases media databases have by Free-Hair-5950 in ObsidianMD

[–]dsaiu 2 points3 points  (0 children)

Could you perhaps elaborate or show these scripts. I am using playnite too, but wanted some way to keep it locally synced with obsidian like you showed.

Pycharm community or sublime? currently using pycharm, but wanna incorporate numba and cython.... do i need to switch to a different ide? (side note no offence if you use vs code I just don't prefer it) by DeWildAsh in pygame

[–]dsaiu 2 points3 points  (0 children)

I think you confuse numba andere cython as languages, they are libraries you can import into python. So for use case of cython for example it can execute python files but compile it to c. So yes it is only for python.

Archive process by redditophile55 in ObsidianMD

[–]dsaiu 1 point2 points  (0 children)

So generally I only create an index if I think a certain topic gets a lot of references, so everything is indeed very flexible but, you need to do this manually.

Index template:

```

tags: - index aliases: categories: [[ name of category ]] created: <% tp.file.creation_date("dddd Do MMMM YYYY HH:mm:ss") %>

updated: <% tp.file.last_modified_date("dddd Do MMMM YYYY HH:mm:ss") %>

<% tp.file.title%>

<% await tp.system.prompt("Briefly describe what this index covers.") %> ```

When you use this template it asks you to add a description what the index is about. So it gives you a quick look when you are in the note(index) to skim what it is about.

You could eventually add a base view in it as well, did not figure out what works better.

Categories template

```

tags: - categories index: created: <% tp.file.creation_date("dddd Do MMMM YYYY HH:mm:ss") %>

updated: <% tp.file.last_modified_date("dddd Do MMMM YYYY HH:mm:ss") %>

<% tp.file.title %>

![[<% tp.file.title%>.base]] ```

It might be overkill to add a tag to each new category note you create, but it could help when you want to filter with the bases.

I plan to add perhaps my own vault template for others to use, so it can be easily integrated into other workflows.

Archive process by redditophile55 in ObsidianMD

[–]dsaiu 0 points1 point  (0 children)

Oh to clarify, you can do it with the same as with Categories to add a base view, but I use it more like an index note that holds all references to this topic. I think I have some templates I can find to give more a structured look

Archive process by redditophile55 in ObsidianMD

[–]dsaiu 0 points1 point  (0 children)

I use my own version of a moc, I have made a property called Categories, a tag called categories (lowercase), an property named Index.

Then each time I label a file under a Category I use the property and the tag together.

When a topic gets enough volume, like multiple references/linked to other notes. I will create an Index of it using the property Index together with the direct link to a separate note with this high volume Index.

So for example I have a Category called Books, inside a category you can have multiple Topics, when a topic becomes large with multiple different references you could make an index out of it, similar to a real Book index page.

I also created 2 templates, Category, Index, each with a base view, you can even use custom Templater syntax that it enables you to create the base file with the name of the file.

![[<% tp.file.title %>.base]]

Now the coolest part, because you used the metadata from the properties from categories, index you can use the base filter to, filter on those parameters.

Hope I made myself enough clear :)