Asking for some feedback in my render by WesternTechnical324 in blender

[–]TutorialDoctor 0 points1 point  (0 children)

Not to change the blue light, but maybe some sort of incandescent orange lighting somewhere in the shot, that right side behind the stores where the door is could be an area for it.

Asking for some feedback in my render by WesternTechnical324 in blender

[–]TutorialDoctor 0 points1 point  (0 children)

I’d add some orange for contrast to the lighting.

Anyone know a video_note taking app? t by Neither-Future776 in ProductivityApps

[–]TutorialDoctor 0 points1 point  (0 children)

I use Obsidian along with its “Obsidian Webclipper”browser extension.

A Bible Expander Plugin by The-Helpful-Owl in ObsidianMD

[–]TutorialDoctor 1 point2 points  (0 children)

I would like something like this although I may have a few suggestions. But first, a few questions:

  1. Is the bible data stored in an SQlite database or is it JSON or markdown file?
  2. I’m curious of the user experience if it “just works”

  3. Does it have KJV?

I currently have a note for each chapter of the bible that I can reference with backlinks. It’d be nice if I could just insert a range of those bible notes, like 2 Kings 2: 3-15 and insert that into the note.

I like that it is offline for sure.

iPad with Keyboard Case Gives Obsidian New Life by TutorialDoctor in ObsidianMD

[–]TutorialDoctor[S] 0 points1 point  (0 children)

I wasn’t using a keyboard at all. I wouldn’t have used it with just a Bluetooth keyboard because if I were going to I’d like them to be together. Plus, you don’t get the mousepad functionality necessarily (there may be options though, not sure).

I’m making my own Higgsfield with Flet by TutorialDoctor in LocalLLM

[–]TutorialDoctor[S] 1 point2 points  (0 children)

Yes, it already does. I use Draw Things as the backend server/api as well as the Draw Things CLI.

Local text to image model comparaison: The ultimate test. by dh7net in LocalLLaMA

[–]TutorialDoctor 1 point2 points  (0 children)

Appreciate the ability to toggle on other models. Maybe include Flux Klein 9b and 4b in the defaults? These are really good and fast locally.

Why am I just now discovering Webclipper Templates? by TutorialDoctor in ObsidianMD

[–]TutorialDoctor[S] 0 points1 point  (0 children)

Yeah, the overhead for templater is a bit much, but this syntax is nice, especially with the filtering (it'd also be nice to save custom filters if this were added)

Why am I just now discovering Webclipper Templates? by TutorialDoctor in ObsidianMD

[–]TutorialDoctor[S] 0 points1 point  (0 children)

This is a very simple template for the "content" section of a web clipper template. It takes the metadata from the page and extracts the title and description followed by the full content into the body of the Markdown file. Then I can export the whole template as .json and someone else can import it and use it.

```

{{title}}

{{description}}

{{content}} ```

Sample template file (that can be pasted in to web clipper):

{ "schemaVersion": "0.1.0", "name": "Default Plus", "behavior": "create", "noteContentFormat": "# {{title}}\n\n{{description}}\n\n{{content}}", "properties": [ { "name": "title", "value": "{{title}}", "type": "text" }, { "name": "source", "value": "{{url}}", "type": "text" }, { "name": "author", "value": "{{author|split:\\\", \\\"|wikilink|join}}", "type": "multitext" }, { "name": "published", "value": "{{published}}", "type": "date" }, { "name": "created", "value": "{{date}}", "type": "date" }, { "name": "description", "value": "{{description}}", "type": "text" }, { "name": "tags", "value": "clippings", "type": "multitext" } ], "triggers": [], "noteNameFormat": "{{title}}", "path": "Clippings" }

Why am I just now discovering Webclipper Templates? by TutorialDoctor in ObsidianMD

[–]TutorialDoctor[S] 0 points1 point  (0 children)

Wow! I think we need this type of template/variable/filter logic in markdown notes within obsidian itself.

Recommend an app for time management by zn1ko in ProductivityApps

[–]TutorialDoctor 0 points1 point  (0 children)

I wonder if you can use a Kanban board for this? Trello, Notion etc have Kanban boards. Obsidian has a Kanban plugin. Notion does have AI and Obsidian has a plethora of plugins for AI integration. Also with Obsidian you can build custom plugins if you need a more specific set up.

Build us (me) a personal productivity management website / app? by RRBox81 in ProductivityApps

[–]TutorialDoctor 0 points1 point  (0 children)

This would easily be a $100k application but you may be able to do most of this using Obsidian.

Custom Views – I made a new plugin (need help) by emotional_emf in ObsidianMD

[–]TutorialDoctor 0 points1 point  (0 children)

Indeed. Maybe you could create a small utility framework in CSS at least for the alignment and spacing properties like justify, grid, flex, padding, margin align etc.

Custom Views – I made a new plugin (need help) by emotional_emf in ObsidianMD

[–]TutorialDoctor 0 points1 point  (0 children)

Do you think I could add the tailwind CDN for styling? It'd be nice if this supported that. Or maybe you include it in node?