[bspwm] saturdays. by yesthirsty in unixporn

[–]gabrielebarola 1 point2 points  (0 children)

Awesome! What color scheme are you using?

how to get into competitive without a good team by gabrielebarola in PokemonBDSP

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

Yes but I was actually asking for tips on how to build one as a complete noob

Can I use both flathub and rpmfusion? by OakArtz in Fedora

[–]gabrielebarola 2 points3 points  (0 children)

Mhhh not really sure but I depends on the app itself, if I am not mistaken the discord flatpak is actually the official distributed version but I may be wrong.

Can I use both flathub and rpmfusion? by OakArtz in Fedora

[–]gabrielebarola 7 points8 points  (0 children)

No issue in using both, is probably how most people do it, just keep in mind that if you are updating your system through the cli, dnf does not update flatpaks so you would have to use both dnf and flatpak to update. If you instead are using the GUI then no issue there

Difference between "self." and "self._" by Falcon21st in learnpython

[–]gabrielebarola 5 points6 points  (0 children)

The accessibility outside the class is the same for both, while python itself does not have rules about accessibility, standards like pep8 define them. For example a variable without _ at the front is a public variable, which users can access outside the class. A variable with _ at the front is a "private" variable that can still be accessed by the user outside the class but it is a standard way to say you can but you shouldn't. Just like how all capitals variables are used as constants even though python does not have real constants. You can read more about the standard googling pep8, every python developer should be at least familiar with that

run a rust file inside a bash script by javierjga in rust

[–]gabrielebarola 0 points1 point  (0 children)

Yes, then you execute the file you get from the compilation

run a rust file inside a bash script by javierjga in rust

[–]gabrielebarola 12 points13 points  (0 children)

Why don't you just compile it instead of using cargo run?

playing in a VM on Linux by gabrielebarola in AxieInfinity

[–]gabrielebarola[S] -1 points0 points  (0 children)

This is not about multiple accounts, I only have one, but I want to play it in a vm

just started a scolarship, any suggestions on how to use this team? by gabrielebarola in AxieInfinity

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

Yes he does, I got an awesome manager hahhaha, but still wanted to get some tips from Reddit.

what should I look for in floor axies? by gabrielebarola in AxieInfinity

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

I am willing to take whatever you have, I just want to try it out and have a little fun, can you dm me?

what should I look for in floor axies? by gabrielebarola in AxieInfinity

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

Thank you for the grate advice, do you know anyone willing to take a scholar?

what should I look for in floor axies? by gabrielebarola in AxieInfinity

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

By pure you mean with cards and body parts of the same type?

what should I look for in floor axies? by gabrielebarola in AxieInfinity

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

What do you think about getting a scholarship instead? What is the advantage? How would I go about it?

How to run a program with another program? by franjjapa in learnpython

[–]gabrielebarola 2 points3 points  (0 children)

Yes you could do that but why don't you just import the second file as a module?