Posts
4805
Following
319
Followers
489
Linux kernel hacker and maintainer etc.

OpenPGP: 3AB05486C7752FE1
@ben Retooted as people have rough ATM in the job market across the globe. Hope you find the right person for the job :-)
1
0
0

The 19th is looking for a full-stack engineer! It's a lovely team doing important work. If you're looking for a mission-driven, US-based full-stack role, this is the one. https://19thnews.org/full-stack-engineer-employee-hire/

1
2
0
@oleksandr I ended up to "uBlock Origin Lite", which MV3 compatible uBlock Origin :-) Solved.
0
1
0
@oleksandr And no, I don't even if the company runs in Cyprus (which is like oligarch safe haven, as is Malta).
1
0
0
@oleksandr I think it makes sense not delete the original post (thus I put a front banner).
1
0
0
@oleksandr I did not spot this so it was not a knowingly choice by me. Appreciate for pointing this out. I added a front banner :-)
1
0
0
In-browser ad blocker...





.... well, defense in depth man ;-)
0
0
0

Jarkko Sakkinen

Edited 4 months ago

EDIT: NOT removing this post as it is still informative. As @oleksandr (thanks) pointed out it has Russian binding. So probably going back to the drawing board and finding something else for Chrome.

My original post:

“During the post “uBlock Origin era”, I’ve came into conclusion that overall AdGuard fits the bill best:

https://adguard.com/en/welcome.html”

2
0
0

Jarkko Sakkinen

#fastmail does not have "envelope-to" or similar when configuring rules i.e., you have to go raw Sieve to reach that but I hope this will be sufficient workaround :-)
0
0
1

Jarkko Sakkinen

Edited 4 months ago
I also have had difficulties configuring some tools, such as vdirsyncer while trying to access Google contacts and calendar.
0
0
0

Jarkko Sakkinen

Edited 4 months ago
I used to have my inbox in one place, and calendar and contacts at Gmail. Not a political statement against Google, just nice to have all of this consolidated to single provider, when it comes to PIM :-)
1
0
0

Jarkko Sakkinen

Migrated to #fastmail for my personal email and @kernel.org. #email
1
0
2

Jarkko Sakkinen

this is what we build the product (Opinsys OS) on top of:

https://en.wikipedia.org/wiki/Puavo
1
0
2
@vegard @lkundrak Yeah, not eagerly exploring on topic :-) Now I know enough to wrap a shitty build container with bash and unshare, which will cover at least the next 5+ years ;-)
1
0
1
@vegard @lkundrak TBH, I'm quite newbie with namespaces. I've just stuck before to VMs because they are so much easier. Now I actually needed a container for the first time ever (to substitute systemd-nspawn in a build).
1
0
0
@vegard @lkundrak OK yet another option I was not aware about, thanks :-)
1
0
0

Jarkko Sakkinen

Edited 4 months ago

@lkundrak @vegard And if I ever need to get away from Debootstrap I can probably just:

mknod /dev/null c 1 3
mknod /dev/zero c 1 5
mknod /dev/full c 1 7
mknod /dev/random c 1 8
mknod /dev/urandom c 1 9
mknod /dev/tty c 5 0
0
0
0

@lkundrak @vegard getting rid of /dev was at least dead easy:

+# Debootstrap populates `/dev/{null,zero,full,random,urandom,tty}`, meaning that
+# mounting devtmpfs to `/dev` is not required.
 sudo unshare \
   --mount \
   --uts \
   --root "$ROOTFS" \
   sh -c "
-    mkdir -p /proc
-    mkdir -p /sys
-    mkdir -p /dev
-    mount -t sysfs /sys /sys
     mount -t proc /proc /proc
-    mount -t devtmpfs /dev /dev
     mount -t devpts /dev /dev/pts
     hostname $MACHINE
# ...

I think I can iterate from this :-) E.g, proc-mount can be probably (I’d guess) made unprivileged with “–fork –pid” i.e., creating PID namespace.

2
0
0
Show older