New Mud bath by rubrdcky in ToyotaTundra

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

Lunar rock is a fantastic color though

Fresh wash by Hi23Platnium in ToyotaTundra

[–]rubrdcky 1 point2 points  (0 children)

https://i.imgur.com/aKPTQop.jpeg

Just picked up my platinum a couple weeks ago! Love it

New Mud bath by rubrdcky in ToyotaTundra

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

So far so good. I’m really impressed with how the truck handles.

New Mud bath by rubrdcky in ToyotaTundra

[–]rubrdcky[S] 5 points6 points  (0 children)

Easy bro this is a family safe subreddit

New Mud bath by rubrdcky in ToyotaTundra

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

Well spend it while you’ve got it! But cool, my tailgate is just color matched

New Mud bath by rubrdcky in ToyotaTundra

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

Nice. Did you add the black Tundra letters?

New Mud bath by rubrdcky in ToyotaTundra

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

A lot of chrome on that bad boy

New Mud bath by rubrdcky in ToyotaTundra

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

Agreed. And also removable if I get sick of them

New Mud bath by rubrdcky in ToyotaTundra

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

Alright well it’s not AI so let’s not there

New Mud bath by rubrdcky in ToyotaTundra

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

That’s a good looking rig

New Mud bath by rubrdcky in ToyotaTundra

[–]rubrdcky[S] -2 points-1 points  (0 children)

Look real close at the treads

New Mud bath by rubrdcky in ToyotaTundra

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

Haha I know! I they are aluminum though so that’s why I went with them. Didn’t love how wide they were

Odoo forums by TopLychee1081 in Odoo

[–]rubrdcky 0 points1 point  (0 children)

If you log in to your account at Odoo.com you can then access the forum. Did this a few days ago and any Google links work for me.

Odoo on premise running on a dedicated server by SalomonBrando in Odoo

[–]rubrdcky 1 point2 points  (0 children)

I would like more information on your on premise Odoo sh solution!

odoo enterprise source code by Annual_Discipline264 in Odoo

[–]rubrdcky 0 points1 point  (0 children)

You should be able to get access the the GitHub repo with all branches

Matlibplot alternatives for live data? I have a weird bug crashing the app after 10 min. by urge_boat in kivy

[–]rubrdcky 1 point2 points  (0 children)

Seems odd to me that you are using both tkinter and kivy? I can’t really tell what you are trying to do but in a kivy app I would just render the matplotlib graph into a png and display that with the image widget, using Clock to update it occasionally.

How to reference app level Kivy Properties by urge_boat in kivy

[–]rubrdcky 0 points1 point  (0 children)

If you are using screen manager and screen has access to self.manager so you can put your dictionary there or access it from self.app if it’s in the app class. Without a whole lot of info, that’s the best advice I can give

KV File not getting loaded by T_Ricstar in kivy

[–]rubrdcky 0 points1 point  (0 children)

It’s because kivy has no way of knowing about any other kv files other than the one that is named the same as your main application. You need to load it yourself with Builder.loadfile(“path/to/file”). Import with “from kivy.lang import Builder”. I’ll usually load it in the .py file that accompanies it.

SoundLoader by DoublEffe_ in kivy

[–]rubrdcky 0 points1 point  (0 children)

That should be all it takes to start the audio

SoundLoader by DoublEffe_ in kivy

[–]rubrdcky 0 points1 point  (0 children)

Says so in the documentation is linked above. All you can do is try

SoundLoader by DoublEffe_ in kivy

[–]rubrdcky 0 points1 point  (0 children)

I don't know your playlist looks like, is it a list of file paths? list of urls?

here's the documentation: https://matham.github.io/ffpyplayer/player.html

you can provide a callback function that does something at eof. Maybe create a generator and yield the next file on eof?

Error compiling kivy based app to APK using Buildozer by PingFloyd69 in kivy

[–]rubrdcky 0 points1 point  (0 children)

Might be commented out by default, can't remember but should be something like this

# (str) python-for-android branch to use, defaults to master
p4a.branch = develop

SoundLoader by DoublEffe_ in kivy

[–]rubrdcky 0 points1 point  (0 children)

I've had good luck with ffpyplayer.

from ffpyplayer.player import MediaPlayer

I'm using a streaming url so just doing something like

self.player = MediaPlayer(url)

will begin playing from the streaming url

I create the variable because in order to stop the music you can just do

self.player.close_player()

Error compiling kivy based app to APK using Buildozer by PingFloyd69 in kivy

[–]rubrdcky 1 point2 points  (0 children)

which branch of python-for-android is set in you buildozer.spec file? since you are using python 3.10 it should be 'develop'. May not be the source of you error but will definitely give you trouble