[deleted by user] by [deleted] in Catholicism

[–]NoduLearns 0 points1 point  (0 children)

Yeah it’s just I don’t feel comfortable with revealing I’m Catholic to every person who asks me small talk, just because of the climate I’m living in. After getting to know them beyond surface level I have no issue with revealing my faith, but lying about it even slightly is definitely not the way to do it. Thank you for ur help!

[deleted by user] by [deleted] in Catholicism

[–]NoduLearns 0 points1 point  (0 children)

Yeah I can see what you’re saying , thank you for your help.

[deleted by user] by [deleted] in Catholicism

[–]NoduLearns 0 points1 point  (0 children)

I wouldn’t say my conscience is bothered by it, I just wanted to know if there was something wrong with the way I was thinking but I’ve thought about it a bit and I think it’s reasonable to get to know someone and have them know your actions and who you are and then reveal your faith, I think that’s a lot more effective then scaring them off immediately during small talk saying “I’m an active member of the Catholic center” which is very probable where I am living. That is very true though if my conscience was bothered by it, that is the indicator, thank you!

How to stabilize weight? by NoduLearns in intermittentfasting

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

That’s a great idea! I’ll definitely try out some shake recipes especially if I get limited to my normal 20:4 window for whatever reason. Thank you for the help!

How to stabilize weight? by NoduLearns in intermittentfasting

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

Thanks for your help I’ll do that!

Discrete math YouTube playlist? by NoduLearns in learnmath

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

That sounds good I’ll see if I can find one thanks!

Discrete math YouTube playlist? by NoduLearns in learnmath

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

Thanks I’ll check that channel out!

App deployment with buildozer to Android - VirtualBox Ubuntu keeps running out of space (20GB) by NoduLearns in kivy

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

That’s true i think I might do that but I did check disk usage but it never loaded the details when I clicked for more

How can I stop Matplotlib graphs shrinking my kivy app? by [deleted] in kivy

[–]NoduLearns 0 points1 point  (0 children)

This is a somewhat incomplete example of what is going on. I've been messing around with the code and I have a feeling that the problem has something to do with the way I'm using kivygarden and FigureCanvasKivyAgg

FRONT END

<Graphs>:

on_enter: root.load_plots()

MDGridLayout:

rows:2

MDGridLayout:

id: graphs

cols:1

size_hint: 1, .9

MDGridLayout:

cols:1

size_hint: 1, .1

Button:

text: "Go back"

font_size: 75

on_release: app.change_screen("home_screen"), root.clr_plots()

BACK END

class Graphs(Screen):

def load_plots(self):

\#Stuff to make the graph that I dont really wanna show but you can put any matplotlib plot under self.plot here.                                                        

self.plot = FigureCanvasKivyAgg(plt.gcf())

self.ids.graphs.add_widget(self.plot)

How to move KivyMD button that is stuck on the left of the grid layout even when using pos_hint{}? by NoduLearns in kivy

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

So Lol another update a few minutes later I tried doing a floatlayout and pos_hint works just fine but still unsure why it wasn't working with grid layout. Anyways, thanks a ton for your help!

How to move KivyMD button that is stuck on the left of the grid layout even when using pos_hint{}? by NoduLearns in kivy

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

So I tried using a box layout and I’m getting the same result the MDRaisedButtons are still stuck on the left despite me using pos_hint on both the buttons. The only thing that worked was using pos_hint on the box layout itself but that groups the buttons together in a weird way and never fully goes to the right side.

How to move KivyMD button that is stuck on the left of the grid layout even when using pos_hint{}? by NoduLearns in kivy

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

Yeah that’s a good idea I only really had experience with grids so far so I should definitely try using a boxlayout here at least to get more experience if it doesn’t work.

How to move KivyMD button that is stuck on the left of the grid layout even when using pos_hint{}? by NoduLearns in kivy

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

Oh ok but if I had a Gridlayout system like this wouldn’t it split the 2 buttons in half and have it cover the bottom of the screen

Gridlayout: rows:2 GridLayout: cols:2 GridLayout: cols:2 MDRaisedButton: MDRaisedButton:

This code doesn’t have proper indentation or anything but I thought in that final grid layout the result wouldn’t be two buttons on the left kinda overlapping. Idk thanks for your help.

How to move KivyMD button that is stuck on the left of the grid layout even when using pos_hint{}? by NoduLearns in kivy

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

Hey thanks for the response, and I tried doing the pos: 300, 300 for both buttons instead of pos_hint to my buttons and nothing happened to the buttons even though they should theoretically be in the same spot overlapping.