Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)SA
Posts
3
Comments
10
Joined
2 mo. ago
Android @lemmy.world
sartaj @lemmy.world

Quick Share has disappeared.

I am an Android 9 and my friend is on Android 10. some days ago Quick Share tile disappeared from his phone and yesterday evening it was gone from my phone too. I saw quick share in Google settings yesterday morning in my phone. I also checked the Google settings in his phone but it was not there. is Google removing quick share from our phones because it was not very reliable?

  • It is number of people necessary for instance to be functional as intended. I am trying to run an instance where only people verified using legal Documents should be able to post, comment, vote. That is to increase transparency and keep spammers away. I Intend it to be a political website I will read about GoToSocial and Pleroma

  • Fediverse @lemmy.world
    sartaj @lemmy.world

    Cost of running a mastodon instance

    how much does running a mastodon instance of 1000 users costs? Disabling Images and allowing only text is one of my condition. So if I do that, will that change cost? I am thinking of a VPS so that i can have greater control over instance functionality

    How much Storage and RAM will be required roughly?

    Linux @lemmy.ml
    sartaj @lemmy.world

    move files older than 30 days from one computer to another using rsync

    I have a laptop and a phone in which termux is installed. I want to move files from my phone to my computer using rsync if all files are older than 30 days. I think I should use find command with -exec rsync.

     undefined
        
    find . -mtime +30 -exec rsync something 
     
    
      

    but the problem is my phone's IP address is always changing so how do I transfer file? I have to run this script in my laptop

    solution

    i wrote a script which move files and runs in my laptop

    1. i can't use hostname because I am on android 9 and don't want to install anything else.
    2. most of the time I am offline so using any internet service is not a good idea ( my devices are connected in themselves )

    here is my script

     undefined
        
    #!/usr/bin/bash
    
    #checking if script not already running and exit if already running
    [ "${FLOCKER}" != "$0" ] && exec env FLOCKER="$0" flock -en "$0" "$0" "$@" || :
    
    set -e
    
    TARGET_MAC="d2:1c:3c:3d:6a:a7"
    RSYNC_LOG="$HOME/log/rsync_log.txt"  # Rclone log file
    
    
    function get_ip() {
      # need to edit