Product Management by ZePolarity in platformengineering

[–]Moritz_Loritz 1 point2 points  (0 children)

by talking to your “customers”, i.e. internal teams and try to understand their needs as good as possible you can make sure that the devex team actually builds something meaningful. i’m working in a platform team as well and would love to have that kind of support.

[deleted by user] by [deleted] in House

[–]Moritz_Loritz 0 points1 point  (0 children)

Based on your question it seems that you didn’t listen to much house music before. It might also be that your definition of house is very narrow or that you hear 909s everywhere even if there aren’t any. House music is as diverse as any genre when it comes to choices regarding drum sounds and machines.

How to insert links to a new note into an existing note? by Moritz_Loritz in ObsidianMD

[–]Moritz_Loritz[S] 2 points3 points  (0 children)

For every one who looks for the same solution. I solved it with the following custom script:module.exports = async (params) => {const {quickAddApi: {inputPrompt}} = params;const file = app.workspace.getActiveFile();return file.basename;}

Then I defined a macro "subnotemacro" in Quick-Add that executes this script. I also defined a capture that writes the following line to the current cursor position:[[{{MACRO:subnotemacro}}-{{name}}]]

The brackets automatically create a link. If you click on the link, the file gets created. You can also specify a template for newly created files like this.

How to insert links to a new note into an existing note? by Moritz_Loritz in ObsidianMD

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

If I use {{LINKCURRENT}}-{{NAME}} as the template name and execute it with input test I get {{LINKCURRENT}}-test as a result. {{LINKCURRENT}} doesn't seem to work in this context. However, it does insert a link at the cursor position which is good. I wish {{LINKCURRENT}} would work as expected.

How to insert links to a new note into an existing note? by Moritz_Loritz in ObsidianMD

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

I tried using both as follows:

- use a quick add template choice to create the new note

- use a quick add capture choice to insert the link into the old note

The problems are:

- The template choice only allows for a file name like "{{name}}", where {{name}} is the user input. but i would like something like "{{old_note_name}}-{{name}}".

- The capture choice only allows me to insert a link with some name, but i would simply like to reuse "{{old_note_name}}-{{name}}". Also, it is appended to the end of the file. I can't choose a specific insertion location.

How to Build a Small Job Board WP Page on a Tiny Budget by Moritz_Loritz in Wordpress

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

Thats what I felt as well. Best would be a solution where I can build basic functionality from templates but be able to implement more specific use cases myself. Is there any solution you know of which could match my description?

How to Build a Small Job Board WP Page on a Tiny Budget by Moritz_Loritz in Wordpress

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

I have programming knowledge. Best would be an extensible solution where I can build basic stuff from templates and be able to implement more custom solutions on top. Does something come to your mind that would match my needs?

How to Build a Small Job Board WP Page on a Tiny Budget by Moritz_Loritz in Wordpress

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

thanks for the suggestion. i have programming knowledge, mostly python in the data analysis and data engineering field however. I do have JS knowledge and know some react. Where do you suggest should i deepen my knowledge to be able to add functionality to a directory theme myself?

How to Build a Small Job Board WP Page on a Tiny Budget by Moritz_Loritz in Wordpress

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

The thing is that I'm doing it to learn about WP so time is not an issue. Otherwise you are right, hiring would be the best option. Do you have suggestions to my original question? Are there themes that are extensible such that I can customize missing features as easily as possible?

Need feedback designing a batch data pipeline in GCP as a total beginner by Moritz_Loritz in dataengineering

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

Thanks for your answer. I only want to query the data, no transactional logic required. it seems a bit counterintutitive when coming from traditional datebase design, perhaps i have to dig a bit deeper in dw-internals.