Bastian Fredriksson

Results 26 comments of Bastian Fredriksson

I'm facing this issue on Ubuntu 22 using wifite2 2.6.0 from the Ubuntu repository. When running with -vvv I get the following: ``` [?] Executing: reaver --interface wlp0s20f3mon --bssid 28:9E:FC:45:C2:27...

The current code in ``CustomPublisherMBData.java`` encodes multiple lines as: ``` Key=Value 1 Value2 ``` I replaced the code with the built in ``Properties.store`` method: ```java public void setCustomPublisherData(final CustomPublisherContainer publisher)...

Unfortunately, ``StringUtils.stripAccents`` does not guarantee that the output is ASCII printable, as demonstrated by the following unit test: ```java @Test public void testTextNormalisation() { assertTrue(StringUtils.isAsciiPrintable(StringUtils.stripAccents("Test CA"))); assertTrue(StringUtils.isAsciiPrintable(StringUtils.stripAccents("malmö.se"))); assertTrue(StringUtils.isAsciiPrintable(StringUtils.stripAccents("Га́рри Ки́мович Каспа́ров")));...

I'm working on a custom publisher which hopefully can improve on the SCP publisher now bundled with ejbca-ce. When (and if) it gets relesase-ready, I'll provide it as a plugin...

ChatGPT aside, to integrate OpenAssistant with other systems, it would be very useful with an API to submit and retrieve responses. If I understand this issue correctly,such an API is...

I had the same issue after: ```shell fisher remove IlanCosman/tide fisher install IlanCosman/tide@v5 ``` Apparently I was using an older version of `fish` provided by the Ubuntu 22 PPA. I...

Thanks for the quick and detailed response! 💛 TL;DR It works, but now when I'm thinking about it, would it be possible to invoke `fisher list` instead? I patched my...

> Developers would still need to wait, since there is no fisher list plugin either. I'm not sure what you mean by this, since I can run `fisher list` on...

Since I have an old Python 3.10, I got an older version from pip (version 1.0.4). I tried to set it up inside a container with the latest version and...

I got it working in Ubuntu 22 using a virtual environment. ```shell sudo add-apt-repository ppa:deadsnakes/ppa sudo apt install python3.12 python3.12-venv mkdir ~/.venvs python3.12 -m venv ~/.venvs/what-to-eat ~/.venvs/what-to-eat/bin/pip install what-to-eat ln...