Encrypted P2P Chat
  • Rick_C137 Rick_C137 Now 100%

    Are the File Sharing and Voice and Video Calls are E2EE ?

    1
  • cross-posted from: https://programming.dev/post/19958073 > Hi, > > I'm looking for a solution to archive files in a decentralized system. > that would meet those requirement: > > - [FLOSS](https://en.wikipedia.org/wiki/Free_and_open-source_software) > - date-stamp the upload of the file. > - immutable storage ~ [WORM](https://en.wikipedia.org/wiki/Write_once_read_many) > - anonymous (like TOR) > > I was considering IPFS but it does not date-stamp the upload :'( you can make a description-file but this is unreliable, as you can set any date.. > > I'm lost between hyphanet.org and Freenet.org ?!\ > are those the same project ? > > According to A.I: > > Hyphanet is focused on secure, private, and efficient communication and data sharing, with an **emphasis on enabling users to monetize their data** while maintaining control over their data sovereignty. > > is that true ? I can't found the information on their website...

    -1
    0

    Hi, I'm looking for a solution to archive files in a decentralized system. that would meet those requirement: - [FLOSS](https://en.wikipedia.org/wiki/Free_and_open-source_software) - date-stamp the upload of the file. - immutable storage ~ [WORM](https://en.wikipedia.org/wiki/Write_once_read_many) - anonymous (like TOR) I was considering IPFS but it does not date-stamp the upload :'( you can make a description-file but this is unreliable, as you can set any date.. I'm lost between hyphanet.org and Freenet.org ?!\ are those the same project ? According to A.I: > Hyphanet is focused on secure, private, and efficient communication and data sharing, with an **emphasis on enabling users to monetize their data** while maintaining control over their data sovereignty. is that true ? I can't found the information on their website...

    2
    1
    `chown` on a sdcard directory impossible...
  • Rick_C137 Rick_C137 Now 100%

    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)

    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.

    1
  • Hi, I would like to change the owner of a directory on the sdcard `/sdcard/aDirectory` I have a terminal installed on my Android 10 (LineageOS 17) `com.android.terminal` `sudo` is not present so I use `su` and it works. ```bash su #Terminal was granted Superuser rights cd /sdcard chown 10:10 aDirectory #I don't get any error message. stat aDirectory #Uid (0/root) ``` So the owner stay **root** no matter what I'm doing, any ideas ?

    20
    12
    How terminal in, on Android
  • Rick_C137 Rick_C137 Now 100%

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

    example

    adb shell ls /
    
    1
  • How terminal in, on Android
  • Rick_C137 Rick_C137 Now 100%

    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.

    1
  • CSS, select an element that have div:not(something) possible ? [ solved ]
  • Rick_C137 Rick_C137 Now 100%

    I've found

    #container > div:not(div.barfoo)
    

    seem to do the trick..

    9
  • Hi everyone, I have something like this ```html <div id="container"> <div> <div class="foobar"></div> </div> <div> <div class="foobar"></div> </div> <div> <div class="foobar"></div> <div class="barfoo"></div> </div> <div> <div class="foobar"></div> </div> <div> <div class="foobar"></div> </div> <div> ``` I would like to select all the `#container > div` (the childs of container) that do not have a `div.barfoo` in their childs. is it possible with CSS ? I'm at ```css #container> div :not(div.barfoo) {} ``` but this is not working, and will select anyway `#container > div > div` Any ideas ?

    13
    2

    Hi, I created another user on my custom rom Android (aka Multiple users) Unfortunately when doing so the system do not adapt the permission of the sdcard and some other directory, thus the new user can't access them :/ So I wanted to "remote" terminal into my android device from my computer. How are you achieving this ? ( without 3thparty apps please ! ) Thanks.

    14
    10

    long but Interesting ! \ https://digdeeper.club/articles/mozilla.xhtml

    -13
    6

    Hi everyone, Is there somewhere a list of all the changes made compared to Firefox ? edit: ~~Sorry if it's been already asked over here, but it seem that Lemmy do not provide a search within a Community 😮~~ no, actually we can, there isn't a shortcut to make such a search. and no ability to limit the search to the titles.. ![](https://programming.dev/pictrs/image/03ba5c79-1976-4a22-9760-a96e9e3dd532.jpeg) \*Wubba Lubba dub-dub\*

    18
    1

    cross-posted from: https://programming.dev/post/18360806 > Hi everyone, > > I would like to enable [Cross-Origin Resource Sharing](https://developer.mozilla.org/en-US/docs/Glossary/CORS) on my Nginx server. for few origins (cors requestor)/domains. > > I've found this article https://www.juannicolas.eu/how-to-set-up-nginx-cors-multiple-origins that is nice, but not complete and on my browser seem really hard to read due to the layout 🤮 > > So I've opened a CodeBerg git repository for the good soul that want to perfect this piece of code the allow the most of use to use CORS with Nginx. > > https://codeberg.org/R1ckSanchez_C137/BestOfxxx/src/branch/main/Nginx/CORS_MultiDomains.py > > If you don't want to create an account on codeberg feel free to post your code here ! > > ```nginx > server { > # Server > > map "$http_origin" $cors { # map in Nginx is somewhat like a switch case in a programming language. > default ''; #Seem to set $cors to '' empty string if none of the follwing rexeg match ? > "~^https:\/\/([\w-_\.]+\.)?example.com$" "$http_origin"; > #regex domain match > # ~ mean I suppose the string is RegEx ? > # Need to come with a RegEx expression that match https://anything.example.com[optional ports and Query string ?X=Y] > "~^https:\/\/([\w-_\.]+\.)?example2.com$" "$http_origin"; #regex domain match > } > > > location /static { > > # if preflight request, we will cache it > if ($request_method = 'OPTIONS') { > add_header 'Access-Control-Max-Age' 1728000; #20 days > add_header 'Content-Type' 'text/plain charset=UTF-8'; > add_header 'Content-Length' 0; > return 204; #https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/204 } > > if ($cors != "") { > add_header 'Access-Control-Allow-Origin' "$cors" always; # <-- Variable $cors > add_header 'Access-Control-Allow-Credentials' 'true' always; > add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS' always; > add_header 'Access-Control-Allow-Headers' 'Accept, Authorization, Cache-Control, Content-Type, DNT, If-Modified-Since, Keep-Alive, Origin, User-Agent, X-Requested-With' always;} > > # configuration lines... > > } > } > > } > ``` > >

    7
    0

    cross-posted from: https://programming.dev/post/18360806 > Hi everyone, > > I would like to enable [Cross-Origin Resource Sharing](https://developer.mozilla.org/en-US/docs/Glossary/CORS) on my Nginx server. for few origins (cors requestor)/domains. > > I've found this article https://www.juannicolas.eu/how-to-set-up-nginx-cors-multiple-origins that is nice, but not complete and on my browser seem really hard to read due to the layout 🤮 > > So I've opened a CodeBerg git repository for the good soul that want to perfect this piece of code the allow the most of use to use CORS with Nginx. > > https://codeberg.org/R1ckSanchez_C137/BestOfxxx/src/branch/main/Nginx/CORS_MultiDomains.py > > If you don't want to create an account on codeberg feel free to post your code here ! > > ```nginx > server { > # Server > > map "$http_origin" $cors { # map in Nginx is somewhat like a switch case in a programming language. > default ''; #Seem to set $cors to '' empty string if none of the follwing rexeg match ? > "~^https:\/\/([\w-_\.]+\.)?example.com$" "$http_origin"; > #regex domain match > # ~ mean I suppose the string is RegEx ? > # Need to come with a RegEx expression that match https://anything.example.com[optional ports and Query string ?X=Y] > "~^https:\/\/([\w-_\.]+\.)?example2.com$" "$http_origin"; #regex domain match > } > > > location /static { > > # if preflight request, we will cache it > if ($request_method = 'OPTIONS') { > add_header 'Access-Control-Max-Age' 1728000; #20 days > add_header 'Content-Type' 'text/plain charset=UTF-8'; > add_header 'Content-Length' 0; > return 204; #https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/204 } > > if ($cors != "") { > add_header 'Access-Control-Allow-Origin' "$cors" always; # <-- Variable $cors > add_header 'Access-Control-Allow-Credentials' 'true' always; > add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS' always; > add_header 'Access-Control-Allow-Headers' 'Accept, Authorization, Cache-Control, Content-Type, DNT, If-Modified-Since, Keep-Alive, Origin, User-Agent, X-Requested-With' always;} > > # configuration lines... > > } > } > > } > ``` > >

    12
    1

    Hi everyone, I would like to enable [Cross-Origin Resource Sharing](https://developer.mozilla.org/en-US/docs/Glossary/CORS) on my Nginx server. for few origins (cors requestor)/domains. I've found this article https://www.juannicolas.eu/how-to-set-up-nginx-cors-multiple-origins that is nice, but not complete and on my browser seem really hard to read due to the layout 🤮 So I've opened a CodeBerg git repository for the good soul that want to perfect this piece of code the allow the most of use to use CORS with Nginx. https://codeberg.org/R1ckSanchez_C137/BestOfxxx/src/branch/main/Nginx/CORS_MultiDomains.py \ and \ https://codeberg.org/R1ckSanchez_C137/BestOfxxx/issues \ If you don't want to create an account on codeberg feel free to post your code here ! ```nginx server { # Server map "$http_origin" $cors { # map in Nginx is somewhat like a switch case in a programming language. default ''; #Seem to set $cors to '' empty string if none of the follwing rexeg match ? "~^https:\/\/([\w-_\.]+\.)?example.com$" "$http_origin"; #regex domain match # ~ mean I suppose the string is RegEx ? # Need to come with a RegEx expression that match https://anything.example.com[optional ports and Query string ?X=Y] "~^https:\/\/([\w-_\.]+\.)?example2.com$" "$http_origin"; #regex domain match } location /static { # if preflight request, we will cache it if ($request_method = 'OPTIONS') { add_header 'Access-Control-Max-Age' 1728000; #20 days add_header 'Content-Type' 'text/plain charset=UTF-8'; add_header 'Content-Length' 0; return 204; #https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/204 } if ($cors != "") { add_header 'Access-Control-Allow-Origin' "$cors" always; # <-- Variable $cors add_header 'Access-Control-Allow-Credentials' 'true' always; add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS' always; add_header 'Access-Control-Allow-Headers' 'Accept, Authorization, Cache-Control, Content-Type, DNT, If-Modified-Since, Keep-Alive, Origin, User-Agent, X-Requested-With' always;} # configuration lines... } } } ```

    3
    0
    FACL, lost in it's behavior..
  • Rick_C137 Rick_C137 Now 100%
    setfacl -m m:r aFile
    #re set the mask
    

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

    2
  • Hi, I got `FileA` that have `640` a `getfacl FileA` give me ```txt # file: FileA # owner: me # group: me user::rw- user:aUser:r-- group::r-x #effective:r-- mask::r-- other::--- ``` So it's give me the expected... but when I do ```bash chmod 600 aFile getfacl aFile ``` ```txt ... user:aUser:r-- #effective:--- ... mask::--- ... ``` Why suddenly `aUser` lost his ability to read the file !?!?!

    -1
    2
    FACL, Get effective: ---
  • Rick_C137 Rick_C137 Now 100%

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

    1
  • Hi, I've set for a directory the following ```bash setfacl -dm u:aUser:r aDirectory #set new files to be readable by aUser cp ~/Desktop/aFile.txt /xx/xx/xx/aDirectory getfacl aFile.txt #the copied one ``` ```txt # file: aFile.txt # owner: me # group: me user::rwx user:aUser:r-- group::r-x mask::rwx other::rwx ``` So indeed we see the `aUser` got `r--` but ```bash stat aFile.txt ``` return ```txt (0777/-rwxrwxrwx) #!!!! ``` is that normal !!!!??? Thanks.

    4
    3
    Recursive execute(x) required to enable nginx to read a directory !?? [ SOLVED ]
  • Rick_C137 Rick_C137 Now 100%

    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

    1
  • Hi, I've noticed something quite odd, but I don't know if the problem come from Linux itself or nginx.. In order to grant nginx access to a directory let say your `static` see: https://stackoverflow.com/questions/16808813/nginx-serve-static-file-and-got-403-forbidden > These parent directories "/", "/root", "/root/downloads" should give the execute(x) permission to 'www-data' or 'nobody'. i.e. but it seem not only the direct parent need to be given XX5 but all the chain for example ```bash example └── sub1 └── sub2 └── static ``` it seem you need to set allow `others` to read and execute `5` all the parents example, sub1, sub2 Why is that !?? I've found it so akward and unsecure ! is there a workaround ? Thanks.

    19
    4
    nginx, Default server do not works ! [solved]
  • Rick_C137 Rick_C137 Now 100%

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

    Solution

    I don't know how to link to my previous lemmy post, so here it is again

    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/;}
    }
    
    1
  • nginx, Default server do not works ! [solved]
  • Rick_C137 Rick_C137 Now 100%

    The full working code:

    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/;}
    }
    
    1
  • nginx, Default server do not works ! [solved]
  • Rick_C137 Rick_C137 Now 100%

    ok I've found something that ~works !

    	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 ?

    1
  • nginx, Default server do not works ! [solved]
  • Rick_C137 Rick_C137 Now 100%

    line 5 you mean ?

    error_page 404 /404.html; #this one ?
    
    1
  • Hi, You might be aware that if a DNS request point your nginx server. and this later do not have a `server` rule for it , nginx will server anyway the first server found in your config file, WTF ! So I've found https://stackoverflow.com/a/23281442 ```nginx server { listen 80 default_server; server_name everythingelse; error_page 404 /404.html; # Everything is a 404 location / { return 404; #return the code 404 } # link the code to the file location = /404.html { #EDIT this line to make it match the folder where there is your errors page #Dont forget to create 404.html in this folder root /var/www/nginx/errors/; } } ``` But this is not working ! I made one of my domain pointing to this nginx server, and he still server another site aka `server` For httpS for http nothing appear.. Thanks.

    0
    6

    cross-posted from: https://programming.dev/post/13465911 > Hi, > > I'm confuse about those mandatory legal notices that governments impose for websites.. > > Before going further I invite you to read:\ > [A Declaration of the Independence of Cyberspace](https://www.eff.org/cyberspace-independence) \ > and \ > Discourse on Voluntary Servitude[^1] \ > > From all the articles[^2] that I read about *the mandatory notice to display for website* none of them reference the URL of their claim !! / of the legal text !! WTF[^links] > > Internet is by essence world wide, and when reading all those legal requirement it's seem that you should display notices for EVERY country ! > > it's seem also that if you own a private website, just for your own or family use, like for example a web file hosting services. (NextCloud etc..) > You should comply with the same requirement that are asked for company ! again... WTF ! > > Also I don't understand, why make mandatory those notices...(beside the scam (money) ) , I'll come back to this below. > > - If you want to buy something off a website, and this later do not mentions any legal address , contact info and so on, the responsibility to buy or not should be only yours. (For example, will you buy a yogurt in the supermarket if there were no brand, contact info on the packing or bill ?) > - if the state want to ~~censor~~ "regulate" a website on the *old internet*[^OI] there is plenty of way to know who is the author or at the very least where is it hosted.. > - if a website use/distribute a copyrighted&copy; elements. The right holder can do/contact in the following order: > - check the website for contact (if any) > - check the DNS record > - check the hosting > - contact the owner of the IP (IP are leased by company../ ISP ) > > > So there is no sense to ask everyone that extra heavy burden. > The only advantage is for law firm (and those cookies related firm) that make a profit out of it. I heard in my entourage peoples that had pay thousandth of $$ to generate those text, keep up to date etc.. even for small website. > > - If you think those legal notice are a good thing please do not hesitate to motivate your answer. > - If you have any good links about it, feel free to share. > - What are you doing your self on website of customer and/or for your private websites ? > - if you know a Lemmy community worth to share this post, step forward. > > Thanks... > > [^1]:https://en.wikipedia.org/wiki/Discourse_on_Voluntary_Servitude \ > https://archive.org/details/0000-00-00-00-etienne-de-la-boetie-00_202201/1548-00-00_Discourse%20on%20Voluntary%20Servitude_1942_org/mode/2up \ > -- > [^2]:https://elementor.com/blog/website-legal-requirements > https://www.websitepolicies.com/blog/legal-requirements-for-websites > [^OI]:The one that you are using now with the [domains scam](https://en.wikipedia.org/wiki/Domain_name). A future internet might be using TOR or GNU Name System > > [^links]: if you have those links feel free to share !

    -10
    3

    Hi, I'm confuse about those mandatory legal notices that governments impose for websites.. Before going further I invite you to read:\ [A Declaration of the Independence of Cyberspace](https://www.eff.org/cyberspace-independence) \ and \ Discourse on Voluntary Servitude[^1] \ From all the articles[^2] that I read about *the mandatory notice to display for website* none of them reference the URL of their claim !! / of the legal text !! WTF[^links] Internet is by essence world wide, and when reading all those legal requirement it's seem that you should display notices for EVERY country ! it's seem also that if you own a private website, just for your own or family use, like for example a web file hosting services. (NextCloud etc..) You should comply with the same requirement that are asked for company ! again... WTF ! Also I don't understand, why make mandatory those notices...(beside the scam (money) ) , I'll come back to this below. - If you want to buy something off a website, and this later do not mentions any legal address , contact info and so on, the responsibility to buy or not should be only yours. (For example, will you buy a yogurt in the supermarket if there were no brand, contact info on the packing or bill ?) - if the state want to ~~censor~~ "regulate" a website on the *old internet*[^OI] there is plenty of way to know who is the author or at the very least where is it hosted.. - if a website use/distribute a copyrighted&copy; elements. The right holder can do/contact in the following order: - check the website for contact (if any) - check the DNS record - check the hosting - contact the owner of the IP (IP are leased by company../ ISP ) So there is no sense to ask everyone that extra heavy burden. The only advantage is for law firm (and those cookies related firm) that make a profit out of it. I heard in my entourage peoples that had pay thousandth of $$ to generate those text, keep up to date etc.. even for small website. - If you think those legal notice are a good thing please do not hesitate to motivate your answer. - If you have any good links about it, feel free to share. - What are you doing your self on website of customer and/or for your private websites ? - if you know a Lemmy community worth to share this post, step forward. Thanks... ::: spoiler CrossPosted on: https://lemmy.ml/post/15583047 ::: [^1]:https://en.wikipedia.org/wiki/Discourse_on_Voluntary_Servitude \ https://archive.org/details/0000-00-00-00-etienne-de-la-boetie-00_202201/1548-00-00_Discourse%20on%20Voluntary%20Servitude_1942_org/mode/2up \ -- [^2]:https://elementor.com/blog/website-legal-requirements https://www.websitepolicies.com/blog/legal-requirements-for-websites [^OI]:The one that you are using now with the [domains scam](https://en.wikipedia.org/wiki/Domain_name). A future internet might be using TOR or GNU Name System [^links]: if you have those links feel free to share !

    -5
    1
    Systemd wants to expand to include a sudo replacement
  • Rick_C137 Rick_C137 Now 50%

    Something worth reading regarding Systemd https://www.devuan.org/os/announce/ Cheers.

    0
  • Hi, Unfortunately I need to register a domain name for the "old" Internet. So this one with the **domain name scam**[^DomainScam] and so on.. So which registrar would you recommend that is the closed regarding the [FLOSS](https://en.wikipedia.org/wiki/Free_and_open-source_software) / GNU philosophy ? And then I hope the world, will migrate to something better than this WWW scam and I could get rid of this domain.. Thanks. [^DomainScam]: - https://www.namepros.com/threads/is-the-domain-industry-like-a-ponzi-scheme.725672 - https://www.w3.org/2014/strint/papers/65.pdf - https://www.gnunet.org/en - https://www.torproject.org - https://youbroketheinternet.org

    1
    3
    How asymmetrically encrypt under windows ( CLI )
  • Rick_C137 Rick_C137 Now 100%

    I've gave a longer trial to gpg4win and it's very power full and easy to use ! Of course it's pointless to use such a nice tool on a none air-gaped Windows..

    For the others there is Gnu-Linux :)

    1
  • cross-posted from: https://programming.dev/post/10497245 > Hi, > > For websites I've always restricted `username` to use [Apostrophe](https://en.wikipedia.org/wiki/Apostrophe) `'` and `"` and some times even space ` `. If a website necessitate special character then I prefer to create an additional DB field ~`DisplayName`. > > It's easier to forbid the use of Apostrophe, otherwise you will have to escape also your search query to match what has been recorded in the DB. > > On the topic I've this > https://security.stackexchange.com/questions/202902/is-single-quote-filtering-nonsense > > But if you have better documentation feel free to share :) > > Thanks >

    18
    9

    Hi, For websites I've always restricted `username` to use [Apostrophe](https://en.wikipedia.org/wiki/Apostrophe) `'` and `"` and some times even space ` `. If a website necessitate special character then I prefer to create an additional DB field ~`DisplayName`. It's easier to forbid the use of Apostrophe, otherwise you will have to escape also your search query to match what has been recorded in the DB. On the topic I've this https://security.stackexchange.com/questions/202902/is-single-quote-filtering-nonsense But if you have better documentation feel free to share :) Thanks

    5
    5
    Is it possible to sign a PDF with an OpenPGP key generated by Thunderbird ?
  • Rick_C137 Rick_C137 Now 100%

    I've received a lot of reactions on the original post: https://programming.dev/post/10465121

    But if someone is involved with the development of Thunderbird I think this is worth reading: https://programming.dev/comment/7677398

    For my part I will use the OpenPGP sigin tools for now.

    Cheers.

    2
  • Is it possible to sign a PDF with an OpenPGP key generated by Thunderbird ?
  • Rick_C137 Rick_C137 Now 100%

    Thank you all for your quick reactions !!

    To summarize if I want to use the PDF built-in signing I will need to convert my OpenPGP into a X.509 cert otherwise I can simply use the OpenPGP file signing

    I want to stick to the UNIX Philosophy especially:

    Write programs that do one thing and do it well.

    So I will use the OpenPGP signing tool :)

    Thanks !

    3
  • cross-posted from: https://programming.dev/post/10465121 > Hi everyone, > > I was wondering if you know a way to use the generated OpenPGP key created trough Thunderbird to sign PDF's ? > > ([Devuan ](https://www.devuan.org/)distro) > > Thanks.

    5
    1
    How display an element from another page hosted on another sub domain ?
  • Rick_C137 Rick_C137 Now 100%

    You can interact with the HTML DOM with Python !!!!!

    1
  • How run validation on `input` that have a `value` set ?
  • Rick_C137 Rick_C137 Now 100%

    Thanks all for your input.

    My only workaround was to check programmatically all those input and set them with a setCustomValidity()

    Too bad there isn't a method to relaunch the validity across all the page :/

    Cheers

    1
  • Rick_C137 Now
    35 41

    Rick_C137

    programming.dev