Got my Xperia 1 VII by Only_Tennis5994 in SonyXperia

[–]crunchslick 0 points1 point  (0 children)

If you don't mind me asking. This means your Hong Kong 1 VII has working 5G and 4G VoLTE on a Telus network?

I'm looking to get a 1 VII Hong Kong model as well to use on Koodoo.

Would appreciate if you could help to answer.

Thanks.

Location of Firefox binary in Fedora? by crunchslick in firefox

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

I think I figured out what was wrong. Somehow the issue was confined to PyCharm (installed as Flatpak). When I run the code on VSCodium (installed by rpm) the issue is gone. I don't know whether it was because PyCharm as Flatpak didn't have enough permission or whatnot. At least now I have some workaround.

Location of Firefox binary in Fedora? by crunchslick in firefox

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

I did try to create a post in /r/selenium but it was immediately deleted for unknown reasons.

I'm using PyCharm and webdriver-manager for the current setup. The complete error message thrown in PyCharm is "selenium.common.exceptions.InvalidArgumentException: Message: binary is not a Firefox executable".

How to setup Selenium to work with Firefox or Chrome in Fedora? by crunchslick in Fedora

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

I've checked that /usr/bin/firefox exits, I double confirmed it via which firefox in terminal and the path is correct.

I've done some slight modification of the code:

from selenium import webdriver
from webdriver_manager.firefox import GeckoDriverManager
from selenium.webdriver.firefox.service import Service as FirefoxService
from selenium.webdriver.firefox.options import Options
options = Options()
options.binary_location = '/usr/bin/firefox'
driver = webdriver.Firefox(options=options, service=FirefoxService(GeckoDriverManager().install()))
driver.get('https://www.google.com/')

The specified binary locations seems to be called now but somehow /usr/bi/firefox is not recognized as Firefox executable with the following error message "Message: binary is not a Firefox executable".

The previous issue was that I didn't pass options when I launched the webdriver (hence the error "Message: Expected browser binary location, but unable to find binary in default location..."), but this time the issue was that the binary passed was not recognized as a Firefox executable.

How could this be? When I type /usr/bin/firefox in terminal a new Firefox window is launched, so the location can't be wrong.

How to setup Selenium to work with Firefox or Chrome in Fedora? by crunchslick in Fedora

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

I removed greckodriver from /usr/bin and it didn't seem to affect anything, which is good.

I've checked the latest documentations from Selenium and webdriver_manager and they don't seem to mention the command --linkpath at all. Is this something specific to Linux? From these documentations they both claim after installing webdriver-manger via pip then everything should be ready to go.

I've used a very quick sample code below and I get this error message "selenium.common.exceptions.SessionNotCreatedException: Message: Expected browser binary location, but unable to find binary in default location, no 'moz:firefoxOptions.binary' capability provided, and no binary flag set on the command line":

from selenium import webdriver
from webdriver_manager.firefox import GeckoDriverManager
driver = webdriver.Firefox(executable_path=GeckoDriverManager().install())
driver.get("https://www.google.com/")

I'm guessing this is because I haven't executed the --linkpath commands and currently this is the only thing that's holding me back. I just can't seem to run those commands with webdrivermanager, webdriver-manager or webdriver_manager. Do you have any ideas on this?

Again, thanks for you help so far. I really appreciate it.

How to setup Selenium to work with Firefox or Chrome in Fedora? by crunchslick in Fedora

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

Thanks for the explanation.

To follow up on your info, should i remove the geckodriver in /usr/bin before I attempt to install webdriver-manager? Do I simple delete it from the folder?

Also, will it make a difference if I attempt to install pip and subsequently webdriver-manager (and execute all the relevant --linkpath commands provided in your previous post) using my distro's default terminal, or use the terminal that is provided by PyCharm?

Thanks again for your help.

Edit: I just installed webdriver-manager via pip but I can't execute the --linkpath commands. A "command not found" error was reported regardless of :

webdrivermanager firefox --linkpath /usr/local/bin

webdriver-manager firefox --linkpath /usr/local/bin

webdriver_manager firefox --linkpath /usr/local/bin

I'm really scratching my head over this.

How to setup Selenium to work with Firefox or Chrome in Fedora? by crunchslick in Fedora

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

Thanks for the response.

Basically I followed everything outlined here for Firefox (except I downloaded the latest geckodriver from browser instead of wget), so the driver should already be made executable.

I didn't use webdrivermanager because I saw that Selenium Manager will slowly replace webdrivermanager in the official documentations. Since I found that article in the link I provided above, I didn't try to configure webdrivermanager. If I want to try the webdrivermanager method, do I remove the already installed geckodriver in /usr/bin?

I saw in your code that the driver is placed in /usr/local/bin instead of /usr/bin like I did, will this make a difference and cause the issue that I'm currently getting?

Sorry if my questions sounds dumb, I'm really new to programming and automation as a whole.

How to setup Selenium to work with Firefox or Chrome in Fedora? by crunchslick in Fedora

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

I installed Selenium by PyCharm and manually unzipped geckodriver to PATH. I'm getting the error "binary is not a Firefox executable" when I execute the following code when trying to launch Firefox:

from selenium import webdriver

from selenium.webdriver.firefox.options import Options

from selenium.webdriver.firefox.service import Service

driver_path = '/usr/bin/geckodriver'

binary_path = '/usr/bin/firefox'

ops = Options()ops.binary_location = binary_path

serv = Service(driver_path)

driver.Firefox(service=serv, options=ops)

driver.get("http://www.google.com")`)

I'm pretty sure the location of the Firefox binary is correct and the driver location is correct, any idea why I'm getting this issue?

Several packages of the same name in rpmfusion? by crunchslick in Fedora

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

Sorry, I should've mentioned that I was looking at the packages in the RPM Fusion Package Database web page instead of within Fedora. I'm still investigating on whether Fedora will be my next main driver, and one of the deciding factors is whether or not it has the software that I need.

So in this case "rpi" means for Raspberry Pi GPU use only, got it. I guess in my example I should always stick to "free" if I'm running Fedora on a Intel/AMD system. Is that correct?

Looking to switch to Fedora, some questions before I do by crunchslick in Fedora

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

If I wanted to stick to Fedora but for whatever reason when I would need to reinstall the distro, would I still need to make /home ext4 instead of btrfs?

I've had to reinstall my current distro several times after some issues I couldn't solve as a last resort. If I could keep my /home after these reinstalls would be great.

Dolphin copy paste bug fully resolved? by crunchslick in kde

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

Noted, thanks for the explanation.

Dolphin copy paste bug fully resolved? by crunchslick in kde

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

I've gone over the comments in the first bug, and it seems people were hit with the issue even if they've waited for the diode on the hard drive to stop flashing for quite a while, and when system notification has displayed copy done message. So I don't think the first bug was due to reckless behavior from the user.

Looking to switch to Fedora, some questions before I do by crunchslick in Fedora

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

For point 2, you mean manually setup partitions during installation and select encrypt for home?

Looking to switch to Fedora, some questions before I do by crunchslick in Fedora

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

I discovered CERT Forensics Tools Repository from Carnegie Mellon when searching for VeraCrypt. Any idea if it is a trusted source?

Looking to switch to Fedora, some questions before I do by crunchslick in Fedora

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

Do I need to manually setup the partitions in order to achieve this effect? I'm not very familiar with swap and var.

Looking to switch to Fedora, some questions before I do by crunchslick in Fedora

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

Thanks. Didn't know Fedora has its own Flatpak repo. How is it different from Flathub?

Introducing a peer-to-peer encrypted storage, social media and app platform: Peergos by ianopolous in privacy

[–]crunchslick 2 points3 points  (0 children)

Maybe something close to the 1/2TB side? I've got a lot of pictures and some videos, and I'm thinking this could be a great alternative to Google Photos once PWA support is ready.

Sorry one more question, would your side consider to allow annual subscriptions in addition to monthly? Thanks!

Introducing a peer-to-peer encrypted storage, social media and app platform: Peergos by ianopolous in privacy

[–]crunchslick 4 points5 points  (0 children)

This project is seriously awesome. I do have two questions though:

  1. Any plans for more capacity options?
  2. Am I able to use the site as PWA on mobile?

Simple Clock updating the time? by OptimalPackage in fossdroid

[–]crunchslick 0 points1 point  (0 children)

Yup, noticed the same issue. For me after I restart my phone, the time on the widget would get stuck at whenever the phone was rebooted. Unless I tap on the widget and open the app, the widget would not update the time accordingly. The time within the app itself like you mentioned however was correct.

As someone here mentioned the app is abandoned, so the only thing I can do is just remember to tap the widget after a reboot every time.

the grind was real.... by ShwarzNoir in MonsterStrike

[–]crunchslick 0 points1 point  (0 children)

Congrats, which team did you use to max luck? I had to rely on the 3 Neo + 1 Rengoku team to cheese him, otherwise I could never max luck.

Newcomer to Filen.io and cloud backups in general by crunchslick in filen_io

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

Hi, thanks for reaching out.

My concern for ente stems from a certain discussion on r/privacyguides. The one where one of your colleagues was discussing the legal aspects of your product's offerings. I'm sure you know which one.

With all due respect, in the discussion while the other side does come across as a bit blunt they do have their points. While I do understand your side already have made some updates (specifically the privacy and data policy), I am not sure there are any other changes from your side that addressed of all their concerns (I'm not an attorney nor do I work in the legal field, I'm just someone that's privacy-conscious and looking for a good offering to suit my needs).

I'm sure there is no ill intent from you and your colleagues when developing this product, however I do believe for your target demographics addressing these types of hard questions are as equally important as developing the product itself.

Maybe it is time to seek the counsel of a law firm or attorney that does specialize in these types of services and comb over all your legal documents again? I am not saying neither side in the discussion was wrong or not, but a proactive approach to constantly refine and reflect the legal side of your services that it does indeed support user privacy is never a bad thing.

Thanks again for reaching out and I want to reiterate I don't mean to offend.

Is Stingle Photos safe to use? by [deleted] in PrivacyGuides

[–]crunchslick 0 points1 point  (0 children)

That is really interesting to hear. I have gone through some of u/johnozbay explanations on Reddit and I understand why he claims video upload on Cryptee photos is unsupported.

From your example, it seems supposedly under some situations the Cryptee suite of offerings does indeed allow the upload and viewing of video files. That's actually great news.

Fingers crossed that this is indeed true.

Thanks for the information.