mastodon.online is one of the many independent Mastodon servers you can use to participate in the fediverse.
A newer server operated by the Mastodon gGmbH non-profit

Server stats:

11K
active users

#mortal

0 posts0 participants0 posts today

Aplastamiento fatal en roro

El 20 de julio de 2021, a las 13:53 horas, el contramaestre del Clipper Pennant fue aplastado mientras guiaba la carga de un semiremolque. El conductor del mafi no vio que lo había aplastado, desconectó la cabeza tractora y se marchó. Poco después, dos miembros de la tripulación encontraron al contramaestre atrapado entre la parte trasera del remolque y la estructura del

webmar.com/archives/16741

www.webmar.comAplastamiento fatal en roro | Bitácora – webmar.com

Did you know we die because some #nerd listened to a #god?

Per the #mythology of #Mesopotamia, there was a guy, Adapa, who got thrown into the sea by the south wind & was so angry that he cut the wind's wings.

Sky god An summoned him & upon hearing about the trial, creator god Enki told him to neither eat nor drink from the gatekeepers (both vegetation gods).

He refuses the food & drink of #life which amuses An.

He is thus sent back unharmed but leaving us all #mortal.

Mortal - Nu-En-Jin (2002)

The last album from industrial rockers, Mortal (Jyro Xhan & Jerome Fontamillas [bassist of #Switchfoot ]), is a different one from their work of the 1990s in terms of sound, tone, instrumentals, and vocals. That being said, it's quite a good listen, and I definitely recommend it for fans of industrial, electronic rock, and hardcore music in general.

youtube.com/playlist?list=OLAK

For Linux people who want to play games on Steam💩 but can't because it's completely inaccessible, this script might help. I named it spos.sh. If there's enough interest in this I could put it somewhere more permanent.

#!/usr/bin/env bash

# Steam username
userName=""
# Steam password
password=""


if [[ ${#userName} -lt 2 ]] || [[ "${#password}" -lt 2 ]]; then
    echo "Please edit $0 and set userName and password."
    exit 0
fi

export DIALOGOPTS='--no-lines --visit-items'

startPosition="$(grep -n '^exit 0$' "${0}")"
startPosition="${startPosition%%:*}"
((startPosition++))
mapfile -t data < <(tail -n +${startPosition} "$0" | grep -v "^#" | grep -v "^$")
if [[ "${#data[@]}" -lt 1 ]]; then
    echo "No games added yet."
fi
declare -a menuList
for i in "${data[@]}" ; do
    menuList+=(
        "${i#*|}"
        "${i%|*}"
    )
done
game="$(dialog --backtitle "Steaming Pile of Shit Launcher" \
    --clear \
    --ok-label "Launch" \
    --no-tags \
    --menu "Please select a game to launch" 0 0 0 "${menuList[@]}" --stdout)"
[[ $? -ne 0 ]] && exit 0
steam -applaunch "${game}" -silent -login "${userName}" "${password}" -rememberpassword "$@"

exit 0
# Examples of how to add a game.
#Conjury|2684520
#Mortal Kombat 1|1971870