robertoszek

Results 24 comments of robertoszek

While a custom timer and a more fleshed out integration would be nice and appreciated, in my case I just put the URL directly as the background source in the...

> That's nice ! Very smart usage of their public api. Could you document this by mentioning it in the docs ? Sure, I opened a pull request in the...

@Tavisco You can set custom CSS and play around with the [background properties](https://developer.mozilla.org/en-US/docs/Web/CSS/background) size and position until you're satisfied with it, I guess: ![image](https://user-images.githubusercontent.com/1080963/196266108-d29d2489-8aeb-4423-b916-e614ef77c7e9.png) ``` body { min-height: 100vh; background-image:...

Right! Geo-blocked content will be a problem, I've not ran into one thus far so I completely missed taking them into account 😅 I've implemented a hotfix on 1.1.1rc1, you...

Hmm yeah, I see how can be annoying when setting up multiple users for the first time. I'm trying to think what would be an elegant solution in this usecase,...

I also included this change in 1.0.3rc8, feel free to give it a try: ``` pip install -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple pleroma-bot==1.0.3rc8 ``` It should work as you expected before...

I like the idea of not waiting forever, but maybe the timeout is a bit too harsh. If the bot is ran in a modest machine (not a lot of...

Yeah, Twitter v2 API's response for the example tweet you provided ([1512123194785898503](https://nitter.eu/EU_Commission/status/1512123194785898503)) doesn't seem to include the link anywhere (even with all the expansions set): ``` { "data":[ { "conversation_id":"1512123194785898503",...

Welp, it seems video URLs are *still* not available on v2 as of yet: https://twittercommunity.com/t/how-to-get-video-from-media-key/152449/9 We'll migrate that part once it's ready.

Regarding the users endpoint: - `/users/show.json?screen_name={screen_name}` We can transition to `/v2/users/by/username/{screen_name}"` Where we can get the data we need: - bio_text -> description - profile_image_url_https -> profile_image_url - name However,...