0x0

joined 2 months ago
[–] 0x0@lemmy.zip -1 points 1 hour ago (1 children)

Minimum here is 18, so 18.
Yeah i get the temp crappy jobs kids get, but still, 18.
Maybe if you work at your parents' small shop or something you could pull it off, but they could get in trouble.

[–] 0x0@lemmy.zip -1 points 1 hour ago (6 children)

The 17yo... at work?? I wonder what's the minimum working age in memeland.

[–] 0x0@lemmy.zip 4 points 2 hours ago (1 children)
[–] 0x0@lemmy.zip 1 points 6 hours ago

No issues so far, got sources?
Anyway, always follow 3-2-1 for backups.

[–] 0x0@lemmy.zip 2 points 6 hours ago

🤯
Well... kinda takes the edge off... i'll stick to compiling.

[–] 0x0@lemmy.zip 1 points 6 hours ago (1 children)

So you bought into the think of the children argument?
You know that's a red-herring, right? It's really about eroding privacy.

[–] 0x0@lemmy.zip 1 points 6 hours ago

But I’m still on the fence with professional and Olympic level sports.

At that level you have lots of money involved, which means, among other things, steroids, corruption and lack of sportsmanship (oh gee maybe it's sportspersonship now...). So, really, not what i would consider sport so i don't give a damn; they can all "compete" with llamas for all i care.
On everything else, it's a sport, you're doing it for sport, so who cares?
Of course some cultures are more competitive than others.

backup generators when black outs happen for hospitals

Good point.

Making it really expensive and hard to acquire should be all that’s needed.

All that ever does is limit access to the rich.

Free-speech so ideas don’t go suppressed,

Bare in mind that in english (especially murican english culture), "free-speech" is often used as "i can say whatever i want, including bigoted shit". I do see a significant increase in the number of easily-offended people in the last decade, must be a generational thing.

make such decisions truely unbias

No such thing, there's always a bias, but trying to minimize it is indeed a good goal imho.

Keeping some merit success with a socialist system to reward people to achieve more.

I'd say places where merit is actually and properly valued are few and far between.
And "socialist" red-scares muricans.

[–] 0x0@lemmy.zip 4 points 23 hours ago

...but kittens with 5 tits!

[–] 0x0@lemmy.zip 2 points 1 day ago

centrist exist with non black and white opinions.

On the internet?! Impossible!|

[–] 0x0@lemmy.zip 2 points 1 day ago* (last edited 1 day ago) (2 children)

Am I left or right? …Or centrist?

Judging by the down-votes : not-left.
On trans athletes: it's a non-issue.
On guns: these three videos always spring to mind.

Can you substantiate the remainder of your last paragraph a bit?

[–] 0x0@lemmy.zip 1 points 1 day ago

Wealth includes assets. If you can borrow against it, it can be taxed.

Is it though?

 
 

Just a little bit more privacy invasion. C'mon, juuuust a little.. 'till you no longer notice.

 
1
SATA vs M.2 (lemmy.zip)
 

Greetings,

I currently have a 3-drive RAIDZ1 pool of Crucial MX500 1TB SATA disks (CT1000MX500SSD1).
I also have another, M.2 Crucial MX500 1TB disk (CT1000MX500SSD4), not in the pool, of which i find no info on.

I intend to redo the pool from scratch and, as far as fdisk is concerned, these 4 are identical in all but model name.
The board is a Asus Prime X370-A and i'm sure there are speed differences between SATA and M.2, so the question is can i use the 4 together in a new pool? Can i use the M.2 as cache? Pros and cons? Suggestions?

2
submitted 2 months ago* (last edited 3 weeks ago) by 0x0@lemmy.zip to c/debian@lemmy.ml
 

I know it's not directly Debian, but...

I'm currently running a Zorin 17 x86_64 vm (in virtualbox, windows 11 host), which uses wayland.
In it i have a Debian 9 stretch aarch64 chroot, which comes with X.

I'd like to test the GUI app i compiled in that chroot, how is that feasible?

For reference, this is how i setup initially:

$ sudo apt install debootstrap qemu-user-static
$ sudo mkdir -p /opt/deb9/sysroot && sudo chown -R myuser:myuser /opt/deb9
$ sudo /usr/sbin/debootstrap --arch=arm64 --foreign --variant=minbase stretch /opt/deb9/sysroot http://archive.debian.org/debian-archive/debian/
$ sudo cp /usr/bin/qemu-aarch64-static /opt/deb9/sysroot/usr/bin/
$ sudo chroot /opt/deb9/sysroot qemu-aarch64-static /bin/bash
	# /debootstrap/debootstrap --second-stage
	# echo 'APT::Install-Recommends "0";' >> /etc/apt/apt.conf.d/99noExtras
	# echo 'APT::Install-Suggests "0";'   >> /etc/apt/apt.conf.d/99noExtras
	# echo 'deb http://archive.debian.org/debian-archive/debian/ stretch main contrib'      > /etc/apt/sources.list
	# echo 'deb-src http://archive.debian.org/debian-archive/debian/ stretch main contrib' >> /etc/apt/sources.list
	# uname -nm | sed -e 's/ /-/' > /etc/debian_chroot
	# apt update
	# apt install -y g++ make cmake automake autoconf libtool git vim pax-utils tree
	# adduser myuser
	$ su myuser
		> do stuff

~~Network isn't really configured so any git push or similar is done outside the chroot.~~

Edit: turns out i needed Debian 11 instead and it was a matter of mapping a lot of env onto the chroot, creating necessary dirs and rbinding.

Script to chroot:

#!/usr/bin/env bash

sudo mount --rbind /proc ${SYSROOT}/proc/
sudo mount --rbind /sys ${SYSROOT}/sys/
sudo mount --rbind /dev ${SYSROOT}/dev/
sudo mount --rbind /run/systemd/resolve ${SYSROOT}/run/systemd/resolve
sudo mount --rbind /run/user/1000 ${SYSROOT}/run/user/1000
sudo mount --rbind /run/mysqld ${SYSROOT}/run/mysqld
sudo mount --rbind /etc/xdg ${SYSROOT}/etc/xdg
sudo chroot ${SYSROOT} qemu-aarch64-static /bin/bash
exit 0

The caveats being MariaDB runs on the host and user 1000 isn't a portable solution.
~/.bashrc of the chrooted user:

export XDG_SESSION_DESKTOP=zorin
export XDG_SESSION_TYPE=wayland
export XDG_CURRENT_DESKTOP=zorin:GNOME
export XDG_SESSION_CLASS=user
export XDG_RUNTIME_DIR=/run/user/1000
export XDG_CONFIG_DIRS=/etc/xdg
export XAUTHORITY=$(ls -a /run/user/1000/.mutter*)
export WAYLAND_DISPLAY=wayland-0
 

TL;DR don't restart old plants, build new ones.

 

TL;DR

— Personal devices only
— Don’t leak from work, on a work device, or from work Wi-Fi
— Use Signal and Signal’s camera
— The reporter should recreate any image you leak before displaying it to the public

view more: next ›