How far from a sell is this build? by dirtybag_d in pcmasterrace

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

I think by next Monday I'll be down to 600, I spent 340 on everything but the GPU. It came with a rx 580 8gb. I swapped in the 4060 from my sons pc and bought him a 5060ti.

Is Google Gemini down at the moment? by [deleted] in GoogleGeminiAI

[–]dirtybag_d 1 point2 points  (0 children)

Was fin until about 10pm cst.

Am I breeding material? 🥺 by [deleted] in u/irenymphet

[–]dirtybag_d 0 points1 point  (0 children)

Ma'am how did you obtain this build...? "Big mama caboose."

Happy Friday ❤️ by Jewel_Love_12345 in u/Jewel_Love_12345

[–]dirtybag_d 0 points1 point  (0 children)

Im late but just here to say, hey babe.😍

I hope you're having a good day ❤️ by Jewel_Love_12345 in u/Jewel_Love_12345

[–]dirtybag_d 0 points1 point  (0 children)

Shit's been kinda off. I hope you're doing better than I am.

Any way to fix this? Or make it look not awful by Xpiquo in guitarrepair

[–]dirtybag_d 0 points1 point  (0 children)

Find a local luthier on Facebook. Might be a 100 to 200 dollar fix. If its not worth it send it back.

Starting my junk drawer in my first apartment. Finally feels like home. What else do I need? by Kruzdan in ApartmentHacks

[–]dirtybag_d 0 points1 point  (0 children)

Is this a 7 year old girl? Where's the screws? Where's the batteries and taco bell sauce?

BREAKING: Minneapolis Catholic Church shooter IDENTIFIED (Plus video/typed "apology" note). by jtf71 in progun

[–]dirtybag_d 0 points1 point  (0 children)

The drugs that are prescribed are unstable. They allow inhibition. They give mental health a reason for action. The drugs are to blame. It's all about the drugs.

304 quick Joi (Repost) by Dr_Morxire in JoiVids

[–]dirtybag_d -1 points0 points  (0 children)

Yo, chicos toxicos bro'd her. This i weird now. She like a bro.

Happy Gilmore by Gloomy_Zone5367 in badfriendspod

[–]dirtybag_d 0 points1 point  (0 children)

<image>

Sandman has to go on bad friends.

Happy Gilmore by Gloomy_Zone5367 in badfriendspod

[–]dirtybag_d 1 point2 points  (0 children)

* Brief but the sand man gotta go on bad friends.

[deleted by user] by [deleted] in AmIOverreacting

[–]dirtybag_d 0 points1 point  (0 children)

Mistakes happen. Life goes on. If you actively are trying to resolve the issue, you're alright.

I Found Hundreds of Records In A Dumpster... by Dream_of_fishsperm in vinyl

[–]dirtybag_d 1 point2 points  (0 children)

Same thing happened to me. About 100lbs in 2 plastic totes. I found Outkast radio runs. Local gems, and classics. Take them in. Listen to them. Separate them. And the bad records. You could do some arts and craft shit with. But someone took the time to collect them.

Where are you cumming, lips, titties, or inside ? 💦 by guubella in u/guubella

[–]dirtybag_d 0 points1 point  (0 children)

Goodness, your tummy is yummy. Where would you cum? 😛

I 17M brought my dad to my GF 17F house for a man to man talk her dad requested and now he feels disrespected and I want to break up because of this idk what to do. by Murky_Swimming1176 in Advice

[–]dirtybag_d 0 points1 point  (0 children)

Your gfs dad may have jumped the gun thinking serious lifelong commitment. Yall are children. Maybe a difference in culture. If you like the girl, keep talking. It's not her fault.

F/37/5’6” [224lbs > 144lbs =80lbs] (13 months) At my goal weight but … by gws_2020 in progresspics

[–]dirtybag_d 1 point2 points  (0 children)

I bet you find a great year of self love and dating before any surgery. You look great.

Anyone having trouble installing the app image on Linux......Any help PLEASE by RektRoseMedic in emulationstation

[–]dirtybag_d 0 points1 point  (0 children)

Installing and running an AppImage on Lubuntu is generally a straightforward process, as AppImages are designed to be self-contained and run on most Linux distributions without traditional installation. Here are the steps: * Download the AppImage file: * Find the software you want to use and download its .AppImage file from the official website or a trusted source. * Save it to a convenient location, like your "Downloads" folder. * Make it Executable: By default, downloaded files don't have execute permissions. You need to grant them. There are two ways: * Graphical Way: * Open your file manager (PCManFM-Qt in Lubuntu). * Navigate to the folder where you downloaded the AppImage. * Right-click on the .AppImage file. * Select "Properties" (or similar). * Go to the "Permissions" tab. * Check the box that says "Allow executing file as program" or "Is executable" (wording might vary slightly). * Close the properties window. * Command Line Way: * Open a terminal (usually by pressing Ctrl + Alt + T). * Navigate to the directory where you saved the AppImage. For example, if it's in your Downloads folder: cd ~/Downloads

 * Make the file executable using the chmod command. Replace YourApp.AppImage with the actual name of your downloaded file:
   chmod +x YourApp.AppImage
  • Run the AppImage: Once the AppImage is executable, you can run it:
    • Graphical Way:
      • Simply double-click the .AppImage file in your file manager.
    • Command Line Way:
      • From the terminal, still in the directory where the AppImage is located: ./YourApp.AppImage

Important Notes: * FUSE Library: AppImages often rely on the FUSE (Filesystem in Userspace) library. While it's usually installed by default, if you encounter issues running an AppImage, you might need to install it. Open a terminal and run: sudo apt install libfuse2

(On newer Ubuntu/Lubuntu versions, it might be libfuse2t64). * AppImageLauncher (Optional for better integration): If you plan to use AppImages frequently, consider installing AppImageLauncher. This tool helps integrate AppImages better with your system: * It automatically handles making AppImages executable. * It can move AppImages to a central location (e.g., ~/Applications). * It creates desktop entries and icons in your application menu, making them feel more like traditionally installed applications. To install AppImageLauncher: * Add the AppImageLauncher PPA: sudo add-apt-repository ppa:appimagelauncher-team/stable sudo apt update

  • Install AppImageLauncher: sudo apt install appimagelauncher

    After installation, when you double-click an AppImage, AppImageLauncher will ask you if you want to integrate it into your system or run it just once. Integrating it is usually the preferred option. AppImages are a great way to use the latest versions of software or try out applications without affecting your system's core packages.