Native call recording in 2024?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBL
    BlindFrog
    Now 100%

    What's native call recording? Like call recording with the default phone app?

    I use ACR Phone by "NLL APPS" in the play store. They have you download their app store to download their ACR Helper app to run in the background, which allows the recording. But the quality of the other end's sound is based on your in-call volume. So after the call starts, I have to ensure the volume is turned all the way up. It doesn't have to be on speaker.

    I haven't needed to root, or else I'd have trouble getting on certain mobile games that check my phone for root.

    1
  • Is sex toy a good alternative?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBL
    BlindFrog
    Now 100%

    I used to be unable to hold my right hand still in the air without slight tremors, and I noticed how it went away some months after I quit playing this one mmo with excessive clicking. Phlebotomy is so much easier with a calm hand. Maybe the toy would help if it's hands-free?

    Adding this fun read because I know hands do get numb from holding strongly vibrating things for excessive periods of time: https://www.cdc.gov/niosh/docs/83-110/default.html

    Moreso in your jerking hand, or both? Not that I have any qualifications to answer further -- better to check with your doctor how serious it is.

    4
  • What's your default pocket loadout?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBL
    BlindFrog
    Now 100%

    I swear there existed a Tumblr post back in 2012 or earlier about remembering something like EGG: wallet, phone, keys. I just can't find it anymore v.v

    3
  • What would make you happy?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBL
    BlindFrog
    Now 100%

    A job that: I'd love, is at a desk, pays well, is project based, asks me to set my own goals, holds me accountable, makes me feel like I'm contributing something positive for other people.

    Right now, I would feel more fulfilled in life with something like that.

    3
  • Do you ever get frustrated at your own creation?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBL
    BlindFrog
    Now 100%

    Fam, the TLDR I'm hearing isn't "wish my folks made healthier life choices and hadn't conceived me in such a specifically shameful manner that affects my life", but "I wish I was never born, DAE feel this way?"

    My answer is that, this seems deeper than what lemmy can offer, it's worth talking to a therapist about, and I hope you can find a way forward for you.

    13
  • New to manga. I've finished Death Note, Berserk, Assassination Classroom, and Attack on Titan. What should I read next?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBL
    BlindFrog
    Now 100%

    Tomodachi Game, the whole way, with "how will our protagonist(s) overcome it this time?" and "THERE'S A PLOT TWIST COMING, BUT I still don't know what it IIIIISSS" and no one is safe.

    I think it just finished this month? Binge to your heart's content.

    1
  • How to decide what kind of controller one should purchase?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBL
    BlindFrog
    Now 100%

    Second this, just get some thumbstick covers. I have the 8bitdo pro, and I'm getting tired of the joysticks peeling off onto the rest of the controller after a game.

    I haven't had drift on them yet, but if/when I need to replace Old Reliable, I'm looking for hall effect joysticks.

    Edit: damn, just found out the pro2 has hall effect joysticks

    1
  • So technical question...
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBL
    BlindFrog
    Now 100%

    I can see future archeologists (god forbid, Ai archeologists) digging up old posts like this and going, "tf, this was upvoted? Interjecting with too much tangential information? The tone came off rude though?" and not get the reference if they weren't versed in linux community culture already

    6
  • Mint (noob) default apps with wine
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBL
    BlindFrog
    Now 100%

    TLDR, scroll down to the script. Make a .sh file, allow it to run as a program, set it as your default program to open whatever filetype

    Navigate to the appropriate/your favorite folder to store portable applications. Make the below script as a new file called WhateverYouWant.sh
    Fellow newbies, the .sh is important.
    Then set this .sh file's permissions to allow executing this file as a Program; may differ by distro.

    #!/bin/bash

    # Script to set a windows application (that runs through WINE) as the default to open PDF files:

    # PURPOSE: To convert Linux-style filename to Windows-style
    # to pass as an argument to wine when starting PDF XChange Viewer
    Filename="z:"${1//\//\\}

    # Assuming you use the default installation folder for PDF
    # XChange Viewer in Wine
    App='eval wine "C:\Program Files\Filepath\To\Your\PDFXEdit.exe" "'$Filename'"'
    $App

    # Adapted originally from:
    # http://sodeve.net/foxit-reader-on-ubuntu-linux-through-wine/
    # Archive.org'd at: \https://web.archive.org/web/20160918205551/http://sodeve.net/2007/12/foxit-reader-on-ubuntu-linux-through-wine/
    # Additional credit in 2024:
    # https://forums.linuxmint.com/viewtopic.php?t=153092
    # https://web.archive.org/web/20150213210206/http://crunchbang.org/forums/viewtopic.php?pid=173574#p173574
    # https://web.archive.org/web/20150213210203/http://www.fsavard.com/flow/2009/03/pdf-annotation-under-linux-with-wine-and-pdf-xchange-viewer/

    You can also check the appropriate windows-formatted filepath with Winetricks, using its built in windows File Explorer, finding your .exe, and copying the path starting from "C:".
    [Edit: the default install folder in the script would normally be C:\Program Files, my bad. I downloaded the portable version and shoved it wherever, so my filepath looks like "C:\users\Froggy\Documents\PDFXchange test01\PDFXEdit.exe"]

    Mint Cinnamon 21:

    • right click your shell script file, Properties > Permissions > check on "Allow executing file as program".
    • Then find a PDF file (or whatever filetype), right click, Open With > 'Other Application...' > browse for this .sh file you just made.
    • After selecting this .sh file, be sure to select "Set as default" before clicking OK.

    I could not tell you for the life of me why this didn't work with a .desktop file on Mint 21.

    I spent the past few hours down the wrong rabbit holes with .desktop and exec=wine 'filepaths' and just about died of asphyxiation from absolutely nothing happening. I've been wanting to do the same thing too for a while, but decided that right before bedtime was the perfect time to look it up.
    [Edit: I figured out spacing in the script. Also moved the Mint specific instructions down the comment for flow clarity]

    7
  • Help me understand littering
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBL
    BlindFrog
    Now 88%

    "I never learned or thought about how long my trash will actually insist on existing and polluting my environment. I'm completely ignorant of how incredibly slowly plastic decomposes and how toxic it is for plastic to leach into the lowest parts of the food chain and concentrate on its way up."

    "AFAIK, because the earth will take care of it somehow - everything turns into dirt when you leave it in the dirt long enough, right?"

    "I'm just sooo ignorant, plastic will just break back up into little plastic fibers and the ocean can recycle it for us, like tree bark or w/e, right?"

    That's my best, but still invalid, justification. What do I win ::: spoiler spoiler /sarcasm (I hope this spoiler works bc it's not working on boost) :::

    7
  • Help me understand littering
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBL
    BlindFrog
    Now 75%

    I once convinced one of my aunts that leaving your cart out gives companies another excuse to raise prices again
    (not that I actually think that's true; i just didn't want to feel like an butthole for leaving our cart out)

    2
  • If I'm an adult who wants to experience splashing around and wading round the pool, but whose swimming capabilities extend as far as doggy paddling to safety and floating on my back - what can I even do to have fun at the pool? What do *you* do at the pool? Bonus round: kind of out of my budget to pay for swimming classes, and available friends & family are nil. :c But I borrowed a life jacket from a coworker, and could buy cheap floaties or a pool noodle.

    100
    36

    SOLVED, with a huge thank you to !Donovar@lemmy.world https://lemmy.world/comment/6271130 Hiyo Librecalc pros. Hoping someone has an idea how to automate or minimize the steps for this. Or where should I start? I'm trying to automate transcribing a list from: Closet_01 Cartridge123 Cartridge234 Garagenook_01 Cartridge456 Toolbox567 Toolbox789 Garagenook_02 Cartridge890 Into an array/table like: Cartridge123, Closet_01 Cartridge234, Closet_01 Cartridge456, Garagenook_01 Toolbox567, Garagenook_01 Toolbox789, Garagenook_01 Cartridge890, Garagenook_02 I get it; I should just carry around a barcode list of all my shelf names and take turns between scanning the list, tabbing over on my phone, scanning a box, then tabbing back again. But... what if I want to be *lazier* and just scan things in an order and automate the rest later? Is there a faster way than copy-pasting my way down? I got as far as making an adjacent column with a formula to check for "*_*", then copying the location if "*_*" was found.

    5
    0

    Short term: I'm trying to automate transcribing a list from: A 123 234 B 456 567 789 C 345 Into an array/table 123, A 234, A 456, B 567, B 789, B 345, C Long term answer I'm looking for: where's a lemmy community I can ask questions like this (like about using formulas in Librecalc/Onlyoffice suite/maybe VBA with them too) in the future? Or, if not yet established on lemmy, recommended librecalc/Onlyoffice forums? Thank you for your time.

    89
    22
    https://lemmy.world/post/7719870

    Hope this is one of the next best places to post and be able to return to. Going to the spotify/meta hosted community forum isn't working out for me due to login issues on multiple browsers and difficulty finding a report like my problem. Typing in just "Jam not working" on their website didn't even bring slightly relevant results. So, each time I click a link a friend shares with me to join their Jam (formerly known as Group Session), the spotify app opens. If opened earlier and not on my homepage, it switches to the homepage. If the app was closed before, it opens to my homepage. After either scenario, nothing happens. If I'm playing spotify music already, the app opens to my homepage, and the music keeps playing. If I initiated a Jam, then click my friend's invite link, it opens to the homepage, the music I had continues playing, it shows I'm still in my own Jam, and nothing else happens. No matter how long I wait for something to happen after the homepage shows up, my friend's jam never comes up on my screen. In case this is relevant: * Running android 13 * Spotify version 8.8.80.599 * VPN sometimes on, sometimes off, but same bug occurs either way. About a week ago, spotify would only open to show a message along the lines of "no internet connection", but it went away once VPN turned off. * Logging in through fb account without issue, even after uninstalling/reinstalling the spotify app * Subscribed with Premium Duo as main account manager (post edit: this fact was actually irrelevant) Thank you for taking your time to read this post. SOLVED: Spotify loathes VPNs, maybe? I haven't tested with a home VPN service. Consistently, I only get this problem when my phone is connected to VPN. The little key icon in the top-right appears when I'm connected one of my VPN services. I didn't pay close enough attention earlier. Also consistently, if I induce this error message, spotify jam only works after ensuring my VPN service is turned off (it could still be running, but as long as I'm not connected to vpn) AND I've swipe-closed spotify from my recent apps/task-switcher, then reopened the app.

    2
    0
    "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearBL
    Now
    5 71

    BlindFrog

    lemmy.world