Skip Navigation
Where submit a feature suggestion for Android ?
  • Thank you @gerbercj@lemmy.world sadly it's hosted on google ... :/ https://issuetracker.google.com

    If I post here on lemmy, me feature request somebody would be kind to submit to google ?

    Thanks.

  • Where submit a feature suggestion for Android ?
  • it's related to the GPS fix. So which is it ?

  • Images to animated GIF offline and FLOSS ( Linux )

    cross-posted from: https://programming.dev/post/18448635

    > Hi, > > I was a very long time I didn't need to created a animated gif... > I had a program before to take a static images (.jpg, .png etc..) and convert then into an animated gif.. > > All the web search engine push for online (aka SaaSS) tool 🤮 > > ! > > Do you know a program that do that ( Linux ) > > Thanks.

    2
    Images to animated GIF offline and FLOSS ( Linux )

    Hi,

    I was a very long time I didn't need to created a animated gif... I had a program before to take a static images (.jpg, .png etc..) and convert then into an animated gif..

    All the web search engine push for online (aka SaaSS) tool 🤮

    !

    Do you know a program that do that ( Linux )

    Thanks.

    6
    Create a `clip-path` animated ?

    Hi,

    I would like to use a rectangle that move (left to right) to reveal an element / image

    like this

    !

    The white box shall be the image to display

    But I'm already block at my svg animation

    svg <svg viewBox="0 0 265.135 68.642" xmlns="http://www.w3.org/2000/svg"> <g x="-55.790085" y="0.79151762"> <rect style="fill:#ffcc00;stroke-width:2.46513;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke fill markers;stop-color:#000000" width="55.465603" height="151.60599" transform="rotate(45)" /> <animate attributeName="x" values="-55.790085;265" dur="5s" repeatCount="indefinite" /> </g> </svg>

    Because the rectangle is not moving :'(

    Any ideas ?

    Thanks.

    0
    Where submit a feature suggestion for Android ?

    Hi everyone,

    Does someone know where I can submit a feature suggestion for Android ?

    Thanks

    9
    Installing gunicorn once on the OS and reuse it between venv ?
  • Thank you ! it works !

    Actually this is working :

    path/to/venv/bin/gunicorn A_Web_App:app
    

    Some other poster, claim it's dirty.. but which problems could it generate ? (if any)

    Thanks all !!!!

  • Installing gunicorn once on the OS and reuse it between venv ?
  • I don't want to make the venv portable...
    I want to use the gunicorn that is installed in one venv accessible to other venv

  • Python @lemmy.ml SpongeB0B @programming.dev
    Installing gunicorn once on the OS and reuse it between venv ?

    cross-posted from: https://programming.dev/post/17866168

    > Hi, > > I use gunicorn in my venv > > I have quite few venv that run gunicorn. > > I would like to reuse gunicorn for other venv > > I launch my web application like this > > bash > #PWD = venv dir > source ./bin/activate > gunicorn A_WebApp:app > #A_WebApp is my python file A_WebApp.py > > I supposes that gunicorn is a shell program ? if yes I should use $PATH ? \ > or gunicorn is a Python program only ? and then what I should do to use gunicorn in another venv ? > > Thanks.

    0
    Installing gunicorn once on the OS and reuse it between venv ?

    Hi,

    I use gunicorn in my venv

    I have quite few venv that run gunicorn.

    I would like to reuse gunicorn for other venv

    I launch my web application like this

    bash #PWD = venv dir source ./bin/activate gunicorn A_WebApp:app #A_WebApp is my python file A_WebApp.py I supposes that gunicorn is a shell program ? if yes I should use $PATH ? \ or gunicorn is a Python program only ? and then what I should do to use gunicorn in another venv ?

    Thanks.

    11
    How remove vertical gap between characters ?
  • ok I've found a work around

    <style>
    .FlexColumn {display: flex;flex-flow: column nowrap }
    .FlexColumn > div {display: inline-block; margin: -4px 0}
    </style>
    
    <div class="FlexColumn">
    	<div>X</div>
    	<div>X</div>
    	<div>X</div>
    	<div>X</div>
    	<div>X</div>
    </div>
    

    But if someone have something more proper, I'm all ears.

  • How remove vertical gap between characters ?

    Hi,

    No matter what I try

    ```html

    <style> .FlexColumn {display: flex;flex-flow: column nowrap } </style>

    <div class="FlexColumn"> <div>X</div> <div>X</div> <div>X</div> <div>X</div> <div>X</div> </div> ```

    html <!-- I tried many CSS trick here... --> <div> <span>X</span><br><span>X</span><br><span>X</span><br><span>X</span> </div> I always get a vertical gap between the characters !

    Any ideas ?

    Thanks.

    12
    [QUESTION] Flatpak or AUR?
  • AppImage !

    • Open format? Yes
    • Free format? Yes
    • Fully Contained Single Executable Support . Like an exe file for Windows systems Yes (the only one)
    • App Size** The lowest** !

    https://en.wikipedia.org/wiki/AppImage

    Matrix
    https://www.fosslinux.com/42410/snap-vs-flatpak-vs-appimage-know-the-differences-which-is-better.htm
    https://phoenixnap.com/kb/flatpak-vs-snap-vs-appimage \

  • Elevate privileges between Python program ( and Inter-process_communication )
  • Thank you very much @taaz

    So you say 2 but with unix socket so it the same as my proposal number 3 ? no ?

    I'll check capabilities

  • Elevate privileges between Python program ( and Inter-process_communication )

    Hi everyone,

    I have a Python program (A) that run under a regular user account. (good)

    When some events occur in (A) I need to modify my nftables and only the root is allowed to do so.

    I've come up with 3 ways to do that (if you know other please share) but I don't which would be the best.

    1. Make a sudo call from (A) with from subprocess import run but I will need to store the password ! and I don't think is possible to keep it encrypted and decrypted when need it (it's a flaw) \ .
    2. Make (A) writing a file with the requests. Create a (B) daemon (that run as root) that check that file every X and do the necessary \ .
    3. Make (A) do an IPC ( Linux socket ) to (B) daemon (that run as root) and does the necessary.

    I suppose that the solution 2 is less heavy that the 3 ? But if I'm not mistaken it will react also slower ?

    Thanks.

    🐧

    10
    SpongeB0B SpongeB0B @programming.dev
    Posts 8
    Comments 8