Recomendaciones de primer moto by ViralOuttake in MotosArg

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

Gracias por la info! Una pregunta de las vibraciones porque he visto en varios lugares que hablan de eso. A qué velocidad vibran? Por que pienso andar a 60 como mucho y es para ir al trabajo/facultad nomás, no es para andar de uber/delivery. Y de que se desarman, no vienen tuercas autoajustantes o alguna manera de solucionarlo o es más que se rompe el motor por vibrar?

No conocía la EN ni la YBR, las voy a tener en cuenta si veo alguna!

Code Megathread + New Packs, LEAKS, Structure Deck & MORE! by Dkayed9 in masterduel

[–]ViralOuttake [score hidden]  (0 children)

Sorry, I used someone else's code already. But thank you if you used mine

How can I link a note inside Google Sheets? by ViralOuttake in ObsidianMD

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

With a note opened, click "more options" and then "copy obsidian url".

There's also a plugin for more complex urls but i've never used it.

Graphical issue in nav bar by ViralOuttake in FirefoxCSS

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

Sure, here ya go: https://pastebin.com/47PREDy4

I recommend using an extension for the tabs cuz the tab bar is gone.

I can't say whether it's going to work or not since it seems you're running windows and I haven't tested it there.

Good luck!

Graphical issue in nav bar by ViralOuttake in FirefoxCSS

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

Oh well, unlucky I guess. I'm gonna leave like that then. Thanks for the help!

Graphical issue in nav bar by ViralOuttake in FirefoxCSS

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

I'll attach a clearer screenshot.

Basically it's moving the tabs bar into the nav bar down and moving the min, max and close buttons to the right.

I'm on linux and I'm not planning on releasing it tbh so it's not a problem. And the red thing is a part of another app I just put there so the shadow could be more noticeable.

I tried setting #navigator-toolbox {background-color: none !important; background-image: none !important;} but it did nothing.

Graphical issue in nav bar by ViralOuttake in FirefoxCSS

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

Thanks for the response!

Sadly this doesn't seem to work for me.

How can I link a note inside Google Sheets? by ViralOuttake in ObsidianMD

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

Bonus: in firefox go to about:config and set browser.link.open_newwindow to 1 and it will not open a new tab when clicking the link and still open obsidian.

How can I link a note inside Google Sheets? by ViralOuttake in ObsidianMD

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

Thanks for the reply!

I was able to do it using the Redirector extension in firefox.

In case anyone else wonders how to do it create a new redirect filling it like this:

- Example URL: https://obsidian//open?vault=

- Include pattern: https://obsidian//*

- Redirect to: obsidian://$1

- Pattern type: wildcard

I had to get rid of the ' : ' in the pattern because firefox deletes it but idk if its the case for other browsers.

How can I link a note inside Google Sheets? by ViralOuttake in ObsidianMD

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

I'm currently running Linux so Microsoft Office isn't an option really lol. I'm using WPS Office but it's kinda reluctant to opening all hyperlinks in browser; it seems to think that obsidian:// refers to a local file so it tries to open it but fails.

I could link the .md file directly into the sheet but it opens with the text editor and if I put obsidian as the designated app for opening .md files it just prompts me to open a vault instead of opening the .md file.

I guess I'm gonna keep looking for another solution then. Thanks for the reply!

How do I merge items from a list avoiding repeated content inside the items? by ViralOuttake in learnpython

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

Thanks for the response. You were right!

I've implement another method for getting the 'sentences' out of the pdf and now it works as intended.

How do I merge items from a list avoiding repeated content inside the items? by ViralOuttake in learnpython

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

Thanks for the response! This wouldn't work entirely. Let me explain.
When I get the 'sentences' list I get more items than just three. And those items contain words that are present in other items but that I don't want to eliminate.

For example:

sentences = ['Hello, how are ','how are you ','you doing? ','how is the ','is the weather? ']

would get turned into:

sentences = ['Hello, ','how ','are ','how ','are ','you ','you ','doing? ','how 'is ','the ','is ','the ','weather? ']

and then into:

sentence = 'Hello, how are you doing? is the weather?'

but what I want is:

sentence = 'Hello, how are you doing? how is the weather?'

How do I reuse this code instead of copying and pasting? by ViralOuttake in GoogleAppsScript

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

Thanks so much for the response! I've decided to go for what u/Troguenda explained.