ademir

joined 1 year ago
[–] ademir@lemmy.eco.br 1 points 6 days ago

This is what I also think, would make the #fediverse much more viable this way.

[–] ademir@lemmy.eco.br 31 points 1 week ago

That's actually... quite accurate.

[–] ademir@lemmy.eco.br 1 points 1 week ago

we are not relevant enough for propaganda bots lol

[–] ademir@lemmy.eco.br 1 points 1 week ago (1 children)

I appreciate people like you.

[–] ademir@lemmy.eco.br 5 points 1 week ago
  1. XMPP
  2. Lemmy
  3. Akkoma
  4. Peertube
[–] ademir@lemmy.eco.br 2 points 3 weeks ago* (last edited 3 weeks ago)

Go to hell (na)zionist

[–] ademir@lemmy.eco.br 0 points 3 weeks ago

O puto ainda tentou te reportar kkkkkkkkkkkk

[–] ademir@lemmy.eco.br 1 points 1 month ago
[–] ademir@lemmy.eco.br 2 points 1 month ago

of course they matter, otherwise they wouldn't exist. Think for a second before answering non-sense.

There is a reason this type of platform has a voting system.

[–] ademir@lemmy.eco.br 6 points 1 month ago

I agree, one thing that should be available when choosing an instance is to be able to easily tell the blocks from instances.

Also, IMHO, 90% of instance blocks are childish drama. Lots of instances with the same world view block each other because of admins fighting, and this problem is not exclusive to Lemmy, all activitypub platforms suffer from it.

The ideal model would be instances be more tolerable and use instance block as last resort only for SPAM or Crimes. And the user itself ban what they don't want to see.

[–] ademir@lemmy.eco.br 4 points 1 month ago (1 children)

still blocks e.g. threads.net.

Anyway Lemmy can't interact with threads.net.

[–] ademir@lemmy.eco.br 2 points 1 month ago (1 children)

Verification: Implement robust account verification and clearly label bot accounts.

☑ Clear label for bot accounts
☑ 3 different levels of captcha verification (I use the intermediary level in my instance and rarely deal with any bot)

Behavioral Analysis: Use algorithms to identify bot-like behavior.

Profiling algorithms seems like something people are running away when they choose fediverse platforms, this kind of solution have to be very well thought and communicated.

User Reporting: Enable easy reporting of suspected bots by users.

☑ Reporting in lemmy is just as easy as anywhere else.

Rate Limiting: Limit posting frequency to reduce spam.

☑ Like this?

image

Content Moderation: Enhance tools to detect and manage bot-generated content.

What do you suggest other than profiling accounts?

User Education: Provide resources to help users recognize bots.

This is not up to Lemmy development team.

Adaptive Policies: Regularly update policies to counter evolving bot tactics.

Idem.

51
submitted 11 months ago* (last edited 11 months ago) by ademir@lemmy.eco.br to c/linux@lemmy.ml
 

Come the next major release of Red Hat Enterprise Linux, Red Hat is officially dropping the Xorg package, whilst it'll still be available in RHEL 9 until 2032 the countdown has begun, Xorg is on the way out. Are you and your software going to be ready in time.

New video by: @BrodieOnLinux@linuxrocks.online

13
submitted 11 months ago* (last edited 11 months ago) by ademir@lemmy.eco.br to c/linux@lemmy.ml
 

OpenSSH's ssh-keygen command just got a great upgrade.

New video from @vkc@mspsocial.net


Edit:

She has a peertube channel: !veronicaexplains@tinkerbetter.tube and it federatess as a Lemmy Community

The Peertube video in Lemmy.ml: https://lemmy.ml/post/8842820

Link to the video in your instance.

2
submitted 11 months ago* (last edited 11 months ago) by ademir@lemmy.eco.br to c/linux@lemmy.ml
 

cross-posted from: !linux@lemmy.eco.br | https://lemmy.eco.br/post/1969330

I've been using Gnome for about 10 months and it always bothered me that my city (with more than a million inhabitants) was not found in the Weather program.

I looked for solutions several times and never found them, until I found this thread yesterday. That the user Julian made a script that solves this problem. you just have to run and enter the name of your city and then confirm.

script

#!/bin/bash

if [[ ! -z "$(which gnome-weather)" ]]; then
	system=1
fi

if [[ ! -z "$(flatpak list | grep org.gnome.Weather)" ]]; then
	flatpak=1
fi

if [[ ! $system == 1 && ! $flatpak == 1 ]]; then
	echo "GNOME Weather isn't installed"
	exit
fi

if [[ ! -z "$*" ]]; then
	query="$*"
else
	read -p "Type the name of the location you want to add to GNOME Weather: " query
fi

query="$(echo $query | sed 's/ /+/g')"

request=$(curl "https://nominatim.openstreetmap.org/search?q=$query&format=json&limit=1" -s)

if [[ $request == "[]" ]]; then
	echo "No locations found, consider removing some search terms"
	exit
fi

read -p "If this is not the location you wanted, consider adding search terms
Are you sure you want to add $(echo $request | sed 's/.*"display_name":"//' | sed 's/".*//')? [y/n] : " answer

if [[ ! $answer == "y" ]]; then
	echo "Not adding location"
	exit
else
	echo "Adding location"
fi

id=$(echo $request | sed 's/.*"place_id"://' | sed 's/,.*//')

name=$(curl "https://nominatim.openstreetmap.org/details.php?place_id=$id&format=json" -s | sed 's/.*"name": "//' | sed 's/".*//')

lat=$(echo $request | sed 's/.*"lat":"//' | sed 's/".*//')
lat=$(echo "$lat / (180 / 3.141592654)" | bc -l)

lon=$(echo $request | sed 's/.*"lon":"//' | sed 's/".*//')
lon=$(echo "$lon / (180 / 3.141592654)" | bc -l)

if [[ $system == 1 ]]; then
	locations=$(gsettings get org.gnome.Weather locations)
fi

if [[ $flatpak == 1 ]]; then
	locations=$(flatpak run --command=gsettings org.gnome.Weather get org.gnome.Weather locations)
fi

location="<(uint32 2, <('$name', '', false, [($lat, $lon)], @a(dd) [])>)>"

if [[ $system == 1 ]]; then
	if [[ ! $(gsettings get org.gnome.Weather locations) == "@av []" ]]; then
		gsettings set org.gnome.Weather locations "$(echo $locations | sed "s|>]|>, $location]|")"
	else
		gsettings set org.gnome.Weather locations "[$location]"
	fi
fi

if [[ $flatpak == 1 ]]; then
	if [[ ! $(flatpak run --command=gsettings org.gnome.Weather get org.gnome.Weather locations) == "@av []" ]]; then
		flatpak run --command=gsettings org.gnome.Weather set org.gnome.Weather locations "$(echo $locations | sed "s|>]|>, $location]|")"
	else
		flatpak run --command=gsettings org.gnome.Weather set org.gnome.Weather locations "[$location]"
	fi
fi


It occurred to me that some people might not know how to run scripts, so here's a brief tutorial:

How to run scripts in Linux

  1. Save the script to a text file and save with the .sh extension
  2. Provide execute permission: chmod u+x script.sh
  3. run the script by double clicking or ./script.sh
 
view more: next ›