penquin

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

Skeuomorphic, IMHO, is the best thing that happened to the world of software. I don't ever understand why the whole industry shifted to the ugly flat shit design.

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

I'm trying to delve into building an app myself, but I'm struggling to get started. It's waaaay more complicated than I thought.

[–] penquin@lemm.ee 1 points 1 day 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 1 day ago (2 children)

Tap for spoilerDick

[–] penquin@lemm.ee 2 points 1 day 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 1 day 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 1 day 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 1 day 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 1 points 2 days 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 3 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 3 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.

 

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.

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've been searching the web for a long while now and I can't find anything. Maybe it's just my rusty English (second language of course). I have an app called "dynamic wallpapers" that creates two wallpapers into one where one is light and the other is dark. The light one is automatically selected by my system when I have the light theme on, and the dark one is also automatically selected when I have the dark theme on (I hope this makes sense). I use the gnome desktop on Linux if that helps. So, I'm looking for wallpapers that are exactly the same, but one is dimmer than the other for both themes. For example, a picture of a mountain with the sun above it, and another with the same mountain and everything, but it's night time and the moon is there instead of the sun. Or just like the windows 11 default wallpaper, the light one and dark one. I really hope I'm making sense. Please ask me for more details if I'm not making sense. Does anyone know of any website that has such wallpapers? Please let me know. I'd very much appreciate any help. Thank you.

0
submitted 5 months ago* (last edited 5 months ago) by penquin@lemm.ee to c/asklemmy@lemmy.ml
 

Like the title says, are there any EVs that just have a Bluetooth radio and that's it? Like a normal car, not a smartphone on wheels? If not, do you all think that this will actually happen at some point? This is the main reason why I can't (and will never) buy an EV. I like to have actual buttons everywhere on my car. I think those massive tablets on these cars with all the touch buttons are very dangerous. I like an "entertainment system" that only connects to my phone with either a headphone jack ~~of~~ or Bluetooth. It's a car, not a PC.

 

cross-posted from: https://lemm.ee/post/32128978

Switching from Endeavour OS to Nobara

Hi all, I've been having issues with my favorite games on EndeavourOS Linux. Also, on top of that, an update the other day deleted my whole plasma desktop and left me with a skeleton of SDDM. I got it fixed, but some things are still wonky. I'm honestly getting tired of maintaining it and I just want something that just works for my video games and some coding. Nobara sounded awesome after some research. I do have a couple of questions for you all before switching:

  1. Is Nobara atomic? Immutable? Or whatever those distros are called.

  2. I have my /root, /home separate each in their own drive, plus a 3rd one for my steam and other games. Since I'm coming from Arch and I'll only be formatting my root drive, what folders/files will I need to remove from my /home directory after switching to Nobara so I don't have issues?

  3. Since I separate drives for everything, I'll be doing a manual partitioning when I install Nobara, and will be choosing btrfs for my /root so I can do snapshots with timeshift. My question is, does Nobara set up the subvolumes automatically for me when I do manual partitioning, or do I need to set them up myself?

  4. How hard is it to set up snapshots in grub?

  5. Or does Nobara have a back up tool already that already does snapshots?

Thank you.

 

Hi all, I'm switching motherboards. No dGPU. Going from an Intel MB to an AMD one. I have my root partition on an nvme and the home one on a 2.5" sata. Do I need to reinstall, or can I just move the drives from the old MB to the new one without a problem? Figured since both Intel and AMD drivers are both baked into the kernel out of the box, wouldn't it just work and I'll only need to remove the Intel stuff? I'm running good ole endeavourOS with KDE Plasma if that makes any difference. Any insight is much appreciated

view more: next ›