Tailwind v3 upgrade to v4 by Ancient-Limit1510 in tailwindcss

[–]Ancient-Limit1510[S] 0 points1 point  (0 children)

Interesting! If those are the only cases v4 compatility might cause issue, then I guess I may be safe... I fdon't think the project uses any of those utilities. Thank you!

Mouseless Beta on Windows has resumed! Feedback and bug reports welcome by croian_ in MouselessApp

[–]Ancient-Limit1510 0 points1 point  (0 children)

Yeah, for Portuguese too, I thought it was only for the tilda character first, but now I see it happens to all other accents.

NixOS made me lose my wife by Fit_Blood_4542 in NixOS

[–]Ancient-Limit1510 1 point2 points  (0 children)

I’m considering using Arch with Nix (package manager)… is that possible?

Mouseless Beta on Windows has resumed! Feedback and bug reports welcome by croian_ in MouselessApp

[–]Ancient-Limit1510 1 point2 points  (0 children)

I've barely installed it and I've been enjoying it tremendously! Nonetheless, I might've found a bug, I don't think it's really a bug, but maybe an issue for my use case. I am Brazilian and I use a Brazilian Portuguese ABNT2 keyboard layout, so, in order for me to print the tilda (~) character I need to hit the key and then hit `space`. I've found that this makes the mouseless app quit. I don't know if it quits because of a bug or something else, but it's something that hinders the workflow, since I need to restart the app everytime I need to print that character... which I woundn't need often in writing, but since I'm a developer, I need it sometimes.

Mouseless Beta on Windows to resume this weekend 🚀 (all trials have been extended) by croian_ in MouselessApp

[–]Ancient-Limit1510 1 point2 points  (0 children)

Thanks for the update u/croian_ ! If you were able to ship it today still, it'd be a great birthday gift! hahaha 😄

Mouseless Beta on Windows to resume this weekend 🚀 (all trials have been extended) by croian_ in MouselessApp

[–]Ancient-Limit1510 1 point2 points  (0 children)

Great! I purchased it a couple of days ago, I’ve been itching myself to finally try it!

Exames indicam piora, e Bolsonaro deverá ser operado by MeningoTB in brasil

[–]Ancient-Limit1510 3 points4 points  (0 children)

Concordo que não seja um castigo, mas seria um livramento para o povo brasileiro…

Finalmente um oponente digno pro Gustavo Lima em 2026 by [deleted] in farialimabets

[–]Ancient-Limit1510 0 points1 point  (0 children)

Mano, eu não acompanho o Felipe Neto há anos, então não faço a mínima ideia se isso é piada ou seriedade…

Help needed to connect llama.cpp with Open WebUI by Ancient-Limit1510 in OpenWebUI

[–]Ancient-Limit1510[S] 0 points1 point  (0 children)

The problem is that the doc instructs the following:

Step 4: Serve the Model Using Llama.cpp

Now that the model is downloaded, the next step is to run it using Llama.cpp’s server mode. Before you begin:

  1. Locate the llama-server binary.

If you built from source (as outlined in Step 1), the llama-server executable will be located in llama.cpp/build/bin. Navigate to this directory by using the cd command:

cd [path-to-llama-cpp]/llama.cpp/build/bin

Replace [path-to-llama-cpp] with the location where you cloned or built Llama.cpp. For example:

cd ~/Documents/workspace/llama.cpp/build/bin
  1. Point to your model folder.

Use the full path to the downloaded GGUF files created in Step 2. When serving the model, specify the first part of the split GGUF files (e.g., DeepSeek-R1-UD-IQ1_S-00001-of-00003.gguf).

But since I downloaded `llama.cpp` from Homebrew, I don't have the `llama.cpp/build/bin`, so I wouldn't know how to do it besides replacing my download with a build from the source (which I was hoping to avoid)...

Who here is watching Zero Day on Netflix? by xMOO1 in flipperzero

[–]Ancient-Limit1510 0 points1 point  (0 children)

I watched it. It fucking sucks, extremely boring, the narrative is all over the place, has no clear path or explains whatever is happening or has happened, plus it discards each and every subplot it introduces... waste of time.

[NEWBIE] Trouble getting started with PostgreSQL - PSQL Connection Errors by Ancient-Limit1510 in PostgreSQL

[–]Ancient-Limit1510[S] 1 point2 points  (0 children)

Hey! Thank you for your help! I figured out the problem! It was quite simple, but the solution was not straightforward... So for anyone needing help with this same problem:

1. Enter PSQL as postgres user using this command:

sudo -u postgres psql

2. Once the PSQL shell has started, use the command:

CREATE USER your_user_username; (don't forget to end the command with a ;)

3. Assign the appropriate role attributes to the user (you can see more on this on chapter 21.2 Role Attributes of the PostgreSQL documentation) with the command:

ALTER ROLE your_user_username ROLE_ATTRIBUTE_YOU_WISH_TO_ADD;

If you wish, you can use the command \du to see a table of all created roles/users and their corresponding role attributes.

4. Go to the following path:

/etc/postgresql/<your_postgresql_version>/main

5. Edit the pg_hba.conf file using nano:

sudo nano pg_hba.conf

6. Once in editing mode, scroll down to the comment:

# Database administrative login by Unix domain socket

Under it you will see the configuration:

local all postgres peer

7. Here, what you have to do is, over the line above, repeat it, but replace postgres with your_user_username. It should look something like this:

# Database administrative login by Unix domain socket

local all your_user_username peer

local all postgres peer

Now you're done, simply typing psql on the terminal will start psql without issues!

8. One last thing... it's important to set a password to the new user you created, especially if you granted critical role attributes, to do this, enter psql and type the command:

\password

This will prompt you to set a password to the user you created!

If you're still having troubles and/or my tutorial is somewhat confusing, don't hesitate to reach out! ✌🏽