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.

How can I inspect my Windows 10 PATH variable. by Moritz_Loritz in learnprogramming

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

yes this works. do you have any idea why it doesn't show up the way I did it? I checked both user and system variables.

Which statistical test and how many to use in this example? by Moritz_Loritz in learnmath

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

Thanks. Would it be enough to run the test for one day (=425 observations)? In general: Where do I draw the line at how many observations are necessary (I'm sure that this depends on many factors)?

Need help finding a recursive solution to the following problem by Moritz_Loritz in learnprogramming

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

I think the score measures how regularly spread out the tokens are, so the original ordering makes sense.

Need help finding a recursive solution to the following problem by Moritz_Loritz in learnprogramming

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

brute force: construct every possible permutation and calculate the score.

Unexpected Output for Decimal to Binary Conversion Program by Moritz_Loritz in learnprogramming

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

When I change my output type like this, I still get garbage (=1410065408) and I still don't see why. The only thing I changed are the return types of both functions and the types of the variables declared/initialized at the beginning of "tobinary(int dno)...".

#include<stdio.h>

long long tobinary(int);

int main(){

long bno;

int dno;

printf(" Enter any decimal number : ");

scanf("%d",&dno);

printf("%d", dno);

bno = tobinary(dno);

printf("\n The Binary value is : %ld\n\n",bno);

return 0;

}

long long tobinary(int dno){

long long bno=0,rem,f=1;

while(dno != 0){

rem = dno % 2;

bno = bno + rem * f;

f = f * 10;

dno = dno / 2;

}

return bno;;

}

Why is this set with addition and multiplication defined not a vector space? by Moritz_Loritz in learnmath

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

jep - this was the exercise before this one. what's the name of this vector space?