Spyke

Replies

css

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

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

linux

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;
        }
}