penquin

joined 1 year ago
[–] penquin@lemm.ee 1 points 13 hours ago

I might do that. I have extra drives. One is 4TB, and my whole system is 250GB or so.

[–] penquin@lemm.ee 6 points 17 hours ago (2 children)

Tap for spoilerDick

[–] penquin@lemm.ee 2 points 19 hours ago

Greatly speeds up things. I love it. I've been faster at my projects. I had a project at work that would have taken my at least 1.5 months, and I built in 3 weeks.

[–] penquin@lemm.ee 1 points 22 hours ago

Very good to hear. It did make a huge difference for me, that's why I shared it right away. I was so happy with the results I couldn't wait to share with everyone.

[–] penquin@lemm.ee 1 points 22 hours ago (1 children)

They're freaking fantastic at general info. I almost never Google anything anymore, especially when it needs a long question from me to explain it well. I got a new gas stove and I needed to get rid of a message that was stuck on the screen. ChatGPT gave me the answer right away. Lol

[–] penquin@lemm.ee 1 points 22 hours ago (2 children)

So glad this helped. I use AI a lot for many things, especially those things that require a detailed explanation from me (which googling normally doesn't get right). It is like talking to a super duper googler who can search the whole web for you in seconds and put together a good answer. I've had Claude and chatGPT help me fix so many critical issues on my distro. They almost always get it right. I also use them to generate any reparative code that I need. I also make them do all css and HTML (no one has time to for that shit. Lol). They also help with producing logic if you're stuck on a part of your project. Even if they don't get it right, they give you a good explanation and and a better idea on what to do. One thing they all failed at 100% at a time is negative unit tests. For some reason, I've never been able to get them to give me one successful negative test.

[–] penquin@lemm.ee 28 points 1 day ago (3 children)

I'd assume what they already captured. Also, I don't think they'll have any other option. At least it would be better than losing all the funding and weapons from the US and end up losing their whole country. Trump could very well throw a temper tantrum if they didn't agree on his "best deal in the history of mankind" as he might call it.

[–] penquin@lemm.ee 1 points 1 day ago

Awesome. Thank you so much for the detailed explanation. I really appreciate it.

[–] penquin@lemm.ee 1 points 2 days ago (2 children)

I can make it back up data, too? I do snapshots on btrfs. Not sure if that's the same as their regular backup, is it? Damn, man. Why is it hard to make a backup? Lol
I might just look into clonezilla or something then.

[–] penquin@lemm.ee 3 points 2 days ago (4 children)

So you're telling me what Pika is doing is the same I'm doing by copying my home folder into an external drive? Ha! I do use timeshift. Does timeshift take a whole system backup that includes the whole system, its apps and their data? If so, which files/folder do I need to copy of timeshift so I can put them on one of the external drives so I can use them after a reinstall. Since it backs up on the same drive it's installed on and reinstalling would delete timeshift and its backup files.

[–] penquin@lemm.ee 9 points 2 days ago

Two types of people voted for this dude, evil, selfish assholes who know exactly what he is and want to line up their pockets. And misinformed poor folks who are fooled by some outlet like MSM or something similar.

[–] penquin@lemm.ee 12 points 2 days ago (3 children)

Not saying you meant it that way, I'm saying 71 million Americans did. The more I think about it the more fucked it looks. Ngl, I hate the Democrats as much as the next person, but fuck, man, never in a million year would I vote for a person like Trump. It's fucking insanity. How can anyone listen to this man talk and say "ah, this is going to be a good president"? Just how?

 

Hi all,
I have a smaller nvme for my root and home partitions, and I wanted to upgrade to a 1TB. I have several drives on my machine and have been backing up in different ways. One way is I just copied all of my home folder and pasted it on one of the drives. Another way is I copied that folder to my NAS. I also have Pika backup setup to do automatic backups daily to one of the drives. My question is, how do I go about the process of restoring my backup with Pika? Do I reinstall the whole system, install Pika, point it at its old backup folder and have it restore? If so, what does it actually restore? Does it originally back up apps, their data and whatever I have in my home folder, then it restores all of that to the new system? Or does it only back my config files and home folder? Sorry if this is an obvious and dumb question, but I really don't want to do things from scratch since I've had this same install for a long time and I've set it up the way I like it.
Running Endeavour OS with KDE plasma. Thanks in advance.
P. S for this who wonder why I didn't separate root and home partitions since I have many drives It's a long story and it would be off topic and I don't want to bore you all with it.

 

I have been raging about the font rendering on Linux for years. It just sucks. Font has jagged edges and it looks very weird. I dual-boot with windows and the font there is very nice. So, I asked Claude ai to help me and it did a great job and my font is now is actually better than windows. I wanted to share it with everyone in case you have the same issue with the font on Linux.

Here it is:

  1. First, install required packages:
sudo pacman -S freetype2 cairo fontconfig

2. Install better fonts:

sudo pacman -S ttf-dejavu ttf-liberation noto-fonts ttf-roboto ttf-roboto-mono ttf-droid ttf-opensans ttf-hack ttf-fira-code

I have also installed Segoe ui and Segoe UI Variable fonts and that is what I'm using now.

3. Create or edit the font configuration file:

sudo mkdir -p /etc/fonts/conf.d

sudo nano /etc/fonts/local.conf

4. Add this configuration to local.conf:

<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="font">
<edit name="antialias" mode="assign">
<bool>true</bool>
</edit>
<edit name="hinting" mode="assign">
<bool>true</bool>
</edit>
<edit name="hintstyle" mode="assign">
<const>hintslight</const>
</edit>
<edit name="rgba" mode="assign">
<const>rgb</const>
</edit>
<edit name="lcdfilter" mode="assign">
<const>lcddefault</const>
</edit>
<edit name="embeddedbitmap" mode="assign">
<bool>false</bool>
</edit>
<edit name="autohint" mode="assign">
<bool>true</bool>
</edit>
</match>
<!-- Increase contrast slightly for all fonts  This is not mandatory and can be commented out-->
<match target="font">
<edit name="weight" mode="assign">
<const>medium</const>
</edit>
</match>
</fontconfig>

5. Create a file for FreeType settings:

sudo nano/etc/profile.d/freetype2.sh

6. Add these export commands (I found it there already, but it was commented out. Just removed the "#"):

export FREETYPE_PROPERTIES="truetype:interpreter-version=40"

7. Enable subpixel rendering: (You might get a message that says "File exist", that's ok. It means it was already there)

sudo ln -s /etc/fonts/conf.avail/70-no-bitmaps.conf /etc/fonts/conf.d/

sudo ln -s /etc/fonts/conf.avail/10-sub-pixel-rgb.conf /etc/fonts/conf.d/

8. Clear and regenerate font cache:

fc-cache -fv

9. For better Java application fonts:

sudo pacman -S jre-openjdk fontconfig

10. Reboot


Additional optional steps: a. For better Firefox font rendering, in about:config: Set

gfx.font_rendering.cleartype_params.rendering_mode

to 5 (This doesn't exist in FF. You create it, set it to "number" and give it a value of 5)

Set

gfx.webrender.all

to true

b. If you use VSCode, add to settings.json:

{
"editor.fontFamily": "'Fira Code, 'Droid Sans Mono', 'monospace'",

"editor.fontLigatures": true
}

Truly hope this help someone. Share it with others if you think it will help them.

Thanks :)

50
submitted 1 week ago* (last edited 1 week ago) by penquin@lemm.ee to c/linux@lemmy.ml
 

Hi all, I've been using an RX 580 for about a year now. It's been ok, but I needed an upgrade for a little more FPS. Found this RX 6600~~XT~~ used and snagged it for $100. Are there any packages I'll need to install to make sure I get the best out of it? I know AMD support is baked into the kernel, but I remember having to install some Vulkan driver for my old GPU when I had some gaming issues. Any suggestions would be very much appreciated.

Distro is Endeavour OS with the latest KDE plasma on Wayland.
Thank you

 

Do you feel guilty when you read fiction some times? Do you feel like it's a frivolous pursuit? Sometimes, I do, because I'd think to myself "might as well watch a TV show", and I hardly ever watch TV shows because, to me, they're a waste of time. But damn it, some of these novels are so good and I can't stop once I started reading them.

 

The app hardly ever keeps my place in the feed when I exit it and come back to it after a while, and then I'd go hunting for where I was. My phone has 16GB of RAM, so that's plenty.

50
submitted 1 month ago* (last edited 1 month ago) by penquin@lemm.ee to c/books@lemmy.world
 

This may sound dumb, but I've never read for this man. I've always just heard about him on social media but never ventured to read his work. Opinions, please. Should I invest? Feeling like fiction lately. I've read so much non-fiction ~~through~~ throughout my life that I think I deserve a couple of fiction books to get busy with for a little while. Thanks in advance

EDIT: Thank you so much to all who answered. I have read and appreciated every single comment. I have decided to start with fairy tale since I ran into the book at Walmart. So giving that a shot to see. Thank you so much

 

Holy shit! This book is insane. I'm half way through it, and I can't even express how I feel about this book. Masterpiece? Doesn't give it justice. I've never done this in my life over a book (and I've read well over 500 books for the last 30 years), I got emotional during some parts of this book. I have ADHD and it's very hard for me to focus when reading, unless it's an extremely good book like this I guess. This probably sounds silly to some. The reason why I'm only just finding out about this book is because I'm new to the West. An immigrant if you will, and never heard of this book until a couple of weeks ago. If you haven't read this book; I highly recommend it. Alexandre Dumas is a genius.

 

Is it just me, or are you folks running Wayland with no issues? I've even forgotten I was on Wayland until I looked at the settings the other day. I have all AMD, btw. I have zero issues so far. Anyone else?

 

I read in both Arabic and English. Some books are very hard for me to grasp, so I find a translated copy and read it in Arabic. For example, I'm currently reading "the Count of Monte Cristo". It Has some old English that gets me confused a lot, even though I have a Kobo where I can just press and hold on a word to translate it, but still, the storyline as a whole got confusing, so I read it in Arabic. Much better. I'd love to hear from folks here :)

 

Hi all, I have a desktop and laptop with a touchscreen. Both running Plasma/Wayland. English is my second language and I search things in my language often. Maliit works just fine on the laptop, but it's basically a dud on the desktop. I can only enable and disable it. It never shows nor work at all on the desktop. Tried onboard, gnomes on screen keyboard, and that thing is useless, too. Anyway to make Maliit work or is there an alternative? I really need it for the desktop. Thanks.

 

What is this message on the lock screen? I get this at really random times and very rarely. Is this a bug? If so, I'll report it. If it's not a big, then what is it?

 

How does this firm (or whatever it is) know I torrented something? My VPN app took a shit in the middle of a download and I think it exposed my IP to some "anti-piracy" bullshit firm that contacted my ISP. ISP emailed to let me know and to "not do it again". How does this firm know about torrenting? Do they like watch these sites and hope someone's VPN slips like mine did today?

view more: next ›