Comment on
Crontab problems... 😤 [solved]
Thanks everyone,
I figured out also the missing ./ but meanwhile I got already 4 reply ! \
Thanks so much !
Comment on
Crontab problems... 😤 [solved]
Thanks everyone,
I figured out also the missing ./ but meanwhile I got already 4 reply ! \
Thanks so much !
Comment on
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.
Comment on
Elevate privileges between Python program ( and Inter-process_communication )
Reply in thread
indeed I need it to be scriptable.
Comment on
Remote desktop, not sharing desktop, how ?! [solved]
Reply in thread
Thank you @[email protected]
Xpra works ! tons of features, floss and Python 🐍 ! ❤
Comment on
ASCII Diagram, offline, Linux, FLOSS
Reply in thread
Thanks @[email protected] But graph-easy is text to graph. and I'm looking to draw ! so draw to ~graph(ASCII) but it's a nice program too.
Comment on
Elevate privileges between Python program ( and Inter-process_communication )
Reply in thread
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
Comment on
Installing gunicorn once on the OS and reuse it between venv ?
Reply in thread
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 !!!!
Comment on
Mirror / parallel - squeeze / transform path is it possible ? [ SOLVED ]
Reply in thread
Comment on
Where submit a feature suggestion for Android ?
Reply in thread
it's related to the GPS fix. So which is it ?
Comment on
How install a package/program with all the dependencies tree to an offline devices ?
Reply in thread
indeed .appimage are an amazing thing as they do not require any special runtime or installation process !
I guess I will have to do my own .appimage of software that do not provide them
Comment on
How install a package/program with all the dependencies tree to an offline devices ?
Reply in thread
🤩 Woo I didn't know nix. It seem a better way to handle package !!!
But so if I have already apt that handle packages, is it compatible to use both on the same system !?
Nix stores all packages in isolation from each other; as a result there are no /bin, /sbin, /lib or /usr directories and all packages are kept in /nix/store instead.
Comment on
Request RSS reader option
RSS guard NoWebEngine version
Comment on
ASCII Diagram, offline, Linux, FLOSS
Reply in thread
Ideally running the .py python foobar.py will be ideal, otherwise an .appimage
I think I will have to build it my self (the .appimage ) :)
Comment on
Mirror / parallel - squeeze / transform path is it possible ? [ SOLVED ]
Reply in thread
I live in a country where the state doesn’t care about what people do online.
Lucky YOU !!!!, but it's not meaning other country will not track you...
What similar quick image sharing site should I use?
It's a really good question ! Sadly a lot of website admin do not understand the harm to use solution like Cloudflare etc... see https://stallman.org/cloudflare.html for a short introduction
I think it would be wise to open a topic for that question only
And again thanks four your inkscape solution
Comment on
ASCII Diagram, offline, Linux, FLOSS
Reply in thread
I'm not, I'm on MX Linux with SysVinit.
Comment on
Forward packets Wireguard to local subnet, with Nftables. [ solved ]
Reply in thread
SOLVED
The following works !
I guess one of my others rules was blocking
table ip Tip {
chain prerouting {
type nat hook prerouting priority -100; policy accept;
ip daddr 192.168.y.2 log prefix "forwarded " dnat to 192.168.y.3
}
chain postrouting {
type nat hook postrouting priority 100; policy accept;
masquerade
}
chain INPUT {
type filter hook input priority filter; policy accept;
}
chain FORWARD {
type filter hook forward priority filter; policy accept;
}
chain OUTPUT {
type filter hook output priority filter; policy accept;
}
}
Comment on
How install a package/program with all the dependencies tree to an offline devices ?
Reply in thread
Thank you very much @[email protected]
I have tried
apt-get -o Dir::Cache::archives="/to/path" install --download-only apt-offline
But it downloaded only the .deb of apt-offline and not all the dependence tree. Most probably because this machine have them already.
now, remain to force to download also all the dependency tree even if already installed...
Comment on
How install a package/program with all the dependencies tree to an offline devices ?
Reply in thread
Yes, but it's not reliable. because even if you use a bare linux vm to download the packages and dependency, you never know if the online will have already a dependence that the offline system do not have.
no, the only way is to force the dw of the already downloaded package.
Comment on
ASCII Diagram, offline, Linux, FLOSS
Reply in thread
I like light system and moreover I like the simplicity of .appimage
Unlike some systems such as Snap and Flatpak, AppImages work with very little support from the base distribution.
To run the app, an user simply needs to run this file — there’s no intermediate installation step.
source: https://www.booleanworld.com/creating-linux-apps-run-anywhere-appimage/
Comment on
How install a package/program with all the dependencies tree to an offline devices ?
Reply in thread
ohh ! great ! I'll see if I manage to install it on Devuan Thanks.