Skip Navigation

User banner
Posts
43
Comments
46
Joined
2 yr. ago

CoMaps @sopuli.xyz

A Linux version planned ?

  • Thanks hendrik

    But you’d have to build the remote yourself

    maybe in the future, but I don't have the time for it now...
    \
    \ \

    have a look at Bluetooth or ESP-NOW. Wifi and Bluetooth and other protocols have encryption handled for you.

    So it their Bluetooth or WiFi remote pilot existing for that ?

  • I don't think this work's if you have multiple remote pilot tough...

  • I'm open to all solutions :) But it there some ready Bluetooth remote pilot existing ?

  • raspberrypi @lemmy.ml

    Secure use of remote control ?

    Raspberry Pi @programming.dev

    Secure use of remote control ?

    Web Development @programming.dev

    Does someone know an alternative to Mozilla MDN ?

  • I don't see python on your image :)

  • Python @programming.dev

    PUG ( web template engine ) for Python 🐍

    Thunderbird @lemmy.world

    How encrypt email title ? ( GnuPG )

    Python @programming.dev

    How encrypt email title ? ( GnuPG )

  • I finally manage to encrypt the body trough ptyhon-gnupg ( warning their documentation is still in alpha stage. )

    now, remain to encrypt the subject (ThunderBird compatible) if you have any clues I'm all ears

    When time permit I will publish my code in a pastbin.

    Wubba Lubba dub-dub**

  • indeed, but a lot of Linux distribution come with it :)
    \ otherwise it's installable.

  • instead of using a library I can directly use subprocess with gnupg but in both case it seem gnupg require to import the public key to the keyring !? I don't want that.

  • Python @programming.dev

    How encrypt email with a GnuPG public key ?

    Self Hosted - Self-hosting your services. @lemmy.ml

    How store a file with a timestamp in a decentralized manner?

    decentralized @lemmy.ml

    How store a file with a timestamp in a decentralized manner?

  • Thanks all for your input !

    So yes /sdcard was /storage/emulated/0 and it's a real sd-card.

    That was indeed formatted as FAT, I reformatted into EXT4 (from a desktop Linux) put the SD-card back into the phone and started the phone.

    Ive tried (in the phone)

     bash
        
    su
    chmod 777 /storage/emulated/0 #yes it's still mounted as emulated !
    stat /storage/emulated/0
    #...
    #Access: (0771)
    #....
    
      

    So I'm still blocked... any ideas ?

    Thanks.

  • Android @lemmy.world

    chown on a sdcard directory impossible...

  • I've found the most simple way (for my case) adb shell 'a command'

    example

     bash
        
    adb shell ls /
    
      
  • Thank you all for your input.. but it seem my question is still not fully answered...

    let me rephrase, I'm not looking to have a GUI to transfer files, but I would like to execute terminal command remotely (from my computer) to my android phone. Like SSH .

    So I've read that I can install a SSH server on my android phone.. (If you know some's (FLOSS), I'm all ears) Or if you know a better way than SSH I'm all ears too.

    Thanks.

  • I've found

     css
        
    #container > div:not(div.barfoo)
    
    
      

    seem to do the trick..

  • CSS @programming.dev

    CSS, select an element that have div:not(something) possible ?

    Android @lemmy.world

    How terminal in, on Android

    LibreWolf @lemmy.ml

    Mozilla - Devil Incarnate

    LibreWolf @lemmy.ml

    Is there a list of all the tweaks, changes between Firefox and LibreWolf ?

    Self-hosting @slrpnk.net

    Nginx how enable CORS for multi origins ?

    Self Hosted - Self-hosting your services. @lemmy.ml

    Nginx how enable CORS for multi origins ?

    Web Development @programming.dev

    Nginx how enable CORS for multi origins ?

  •  bash
        
    setfacl -m m:r aFile
    #re set the mask
    
    
      

    solve the problem, but the question is: why the F**** this is happening !?

  • Linux @lemmy.ml

    FACL, lost in it's behavior..

  • Update, this is only happening when I copy files from a ~SMB share... :'(
    \ Otherwise it's correct...

  • Linux @lemmy.ml

    FACL, Get effective: ---

  • Thank you all !

    Indeed setting execute perm on example, sub1, sub2, static

    The program/user have now access to the directory.

    In order words all the parents directory need at least execute in order to have access in the targeted directory...

    Now I gave 751 for static. Meaning than others (here nginx) cannot list the files within. But never the less it works
    \ the static files are appearing when requested (HTTP) but forbidding nginx to list the directory is changing something ? (performance/security)

    Thanks

  • I wanted to have a default server that catch ~wrong DNS query to the server

  • The full working code:

     nginx
        
    server {
        listen 443 ssl;
        server_name _;
        ssl_certificate /etc/nginx/ssl/catchall.crt;
        ssl_certificate_key /etc/nginx/ssl/catchall.key;
    
        error_page 404 /404_CatchAll.html;
    
        # Everything is a 404
        location / {
            return 404;
        }
    
        location /404_CatchAll.html {root /var/www/html/;}
    }
    
      
  • ok I've found something that ~works !

     nginx
        
        server {
            listen 443 ssl;
            server_name _;
            ssl_certificate /etc/nginx/ssl/catchall.crt;
            ssl_certificate_key /etc/nginx/ssl/catchall.key;
    
            error_page 404 /404.html; #at /var/www/html/
    
            location /404.html {internal;}
    
            return 404;
        }
    
    
      

    so i get the default 404 html from nginx. but not the one that I specified error_page 404 /404.html; any ideas ?

  • line 5 you mean ?

     nginx
        
    error_page 404 /404.html; #this one ?