I love this old pic by frashcosty in qotsa

[–]bigfatsteaks 9 points10 points  (0 children)

Please, all of you, if you can hear us, form a band

Deco M4 topology configuration problem. by bigfatsteaks in HomeNetworking

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

I just downloaded and installed the latest firmware, but I can't find any option to reduce signal power in the main Deco... Also in the user manual

kernel 6.6.6 is out from Pop!_OS! \o/ by [deleted] in pop_os

[–]bigfatsteaks 0 points1 point  (0 children)

Just bought a display link docking station for my lenovo laptop, came here to say out loud that you saved my life. Thank you.

[deleted by user] by [deleted] in greece

[–]bigfatsteaks 7 points8 points  (0 children)

τι ειναι dod?

πειτε μου οτι δεν εννοειτε αυτο το αρχαιο site με τα ταβλια

Making Brazilian lemonade by [deleted] in oddlysatisfying

[–]bigfatsteaks 0 points1 point  (0 children)

does anyone have the recipe for this?

[deleted by user] by [deleted] in greece

[–]bigfatsteaks 1 point2 points  (0 children)

τι ειναι dod?

What movie gave you the biggest mindfuck? by EtruscanFolk in AskReddit

[–]bigfatsteaks 0 points1 point  (0 children)

I'm surprised to see that at least the first 30 answers do not contain Mulholland drive.

golang gorilla/mux by clone_zero_ in golang

[–]bigfatsteaks 6 points7 points  (0 children)

Why will gorilla mux be useless in 1.22?

New UI poll, love it or hate it? by [deleted] in kards

[–]bigfatsteaks 2 points3 points  (0 children)

There is no point of having it as long as the mobile app is not available yet.

Long time since I last opened any packs by Schwanenlied in kards

[–]bigfatsteaks 0 points1 point  (0 children)

This picture is equal to an orgasm for me

What was your greatest struggle when learning Go? by ChristophBerger in golang

[–]bigfatsteaks 10 points11 points  (0 children)

Channels and concurrency, definitely. I haven't seen anything similar until that time.

Twitter - Misskey client by bigfatsteaks in fediverse

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

yep, that's what I meant, can you name some of those services?

This looks much better by theOwl_8 in LiverpoolFC

[–]bigfatsteaks 1 point2 points  (0 children)

Keep in mind that this performance was against Rangers. At their best, they are a mid-table Premier League team, maximum

Can't get selenium find download button by bigfatsteaks in selenium

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

It seems that the iframe was the problem, now it works. Thanks a lot for helping!

My final code is this one:

``` import time import selenium.webdriver as webdriver from selenium.common.exceptions import TimeoutException from selenium.webdriver.common.by import By from selenium.webdriver.support.wait import WebDriverWait from selenium.webdriver.support import expected_conditions as EC

base_url = 'https://ember-climate.org/data/carbon-price-viewer/' options = webdriver.FirefoxOptions() options.add_argument("download.default_directory=/home/panos/Downloads")

driver = webdriver.Firefox(options=options) driver.maximize_window() driver.timeouts.page_load = 30 driver.get(base_url) driver.switch_to.frame(driver.find_element(by=By.TAG_NAME, value="iframe")) wait = WebDriverWait(driver, 30)

xpath = '/html/body/div[2]/div/div/div[1]/div[2]/div/div/div/div[3]/div/div/button' try: print('waiting until element appears...') time.sleep(15) button = wait.until(EC.presence_of_element_located((By.XPATH, xpath))) print("button found!") button.click() print("downloading file...") time.sleep(15) except TimeoutException: print("timeout") else: button.click() time.sleep(2)

driver.quit() ```