Notices by EdBoatConnoisseur (edboatconnoisseur@bae.st), page 10
-
EdBoatConnoisseur (edboatconnoisseur@bae.st)'s status on Friday, 20-Oct-2023 03:47:43 JST EdBoatConnoisseur
__manjuu_prinz_eugen_and_admiral_hipper_azur_lane_drawn_by_ferinosaki__54a0ad1cb30b2d3f8a1a3fd1508df1b5.jpg -
EdBoatConnoisseur (edboatconnoisseur@bae.st)'s status on Friday, 20-Oct-2023 03:28:15 JST EdBoatConnoisseur
__prinz_eugen_and_prinz_eugen_azur_lane_drawn_by_alexi_oekaki__5d52801c54b63153400cff62411e6be1.jpg -
EdBoatConnoisseur (edboatconnoisseur@bae.st)'s status on Friday, 20-Oct-2023 03:28:06 JST EdBoatConnoisseur
__prinz_eugen_azur_lane_drawn_by_fuooooo__6442109e026c78bff776b59fb478f67b.jpg -
EdBoatConnoisseur (edboatconnoisseur@bae.st)'s status on Friday, 20-Oct-2023 03:25:08 JST EdBoatConnoisseur
__prinz_eugen_and_prinz_eugen_azur_lane_drawn_by_kanesada_dp__80ffa65d82d38d3f4ac8d0804374fb65.png -
EdBoatConnoisseur (edboatconnoisseur@bae.st)'s status on Friday, 20-Oct-2023 03:25:04 JST EdBoatConnoisseur
__prinz_eugen_and_prinz_eugen_azur_lane_drawn_by_xiaoxiao_de_kuangsan__491438937271d0ee213f863a12314537.jpg -
EdBoatConnoisseur (edboatconnoisseur@bae.st)'s status on Friday, 20-Oct-2023 02:24:02 JST EdBoatConnoisseur
109701756_p0.png -
EdBoatConnoisseur (edboatconnoisseur@bae.st)'s status on Friday, 20-Oct-2023 02:19:15 JST EdBoatConnoisseur
111621602_p0.jpg -
EdBoatConnoisseur (edboatconnoisseur@bae.st)'s status on Friday, 20-Oct-2023 02:18:59 JST EdBoatConnoisseur
__friedrich_der_grosse_and_ulrich_von_hutten_azur_lane_drawn_by_ohisashiburi__99e79bb68301cb4292dfce565de88fb4.png -
EdBoatConnoisseur (edboatconnoisseur@bae.st)'s status on Friday, 20-Oct-2023 02:15:57 JST EdBoatConnoisseur thinking of oathing eugen
__prinz_eugen_azur_lane_drawn_by_hey_taisyou__f3b138f87473331620bba9f375d00ee6.jpg -
EdBoatConnoisseur (edboatconnoisseur@bae.st)'s status on Friday, 20-Oct-2023 01:28:16 JST EdBoatConnoisseur @Poe mastodon is objectively bad, just use an akkoma instance
Ep5mZzcVgAAytpj.jpg -
EdBoatConnoisseur (edboatconnoisseur@bae.st)'s status on Thursday, 19-Oct-2023 07:17:49 JST EdBoatConnoisseur @DrRyanSkelton @jimmybuffettfanaccount
ThankRape.jpg -
EdBoatConnoisseur (edboatconnoisseur@bae.st)'s status on Wednesday, 18-Oct-2023 12:35:30 JST EdBoatConnoisseur @MelGibsonafter4Beers no, a double nigger would be 2Nigger, that is a squared nigger. -
EdBoatConnoisseur (edboatconnoisseur@bae.st)'s status on Wednesday, 18-Oct-2023 12:35:29 JST EdBoatConnoisseur @MelGibsonafter4Beers now a Nigger³ or nigger cubed would be so much of a nigger it is a nigger in 3 dimensions. -
EdBoatConnoisseur (edboatconnoisseur@bae.st)'s status on Wednesday, 18-Oct-2023 07:44:22 JST EdBoatConnoisseur @ArdainianRight @ChristiJunior @boloros @sweetcreme toriyama may only be able to draw 5 faces but his character design is always on point
image.png -
EdBoatConnoisseur (edboatconnoisseur@bae.st)'s status on Wednesday, 18-Oct-2023 07:39:55 JST EdBoatConnoisseur @sweetcreme @ArdainianRight @ChristiJunior @boloros if you ever think you are too retarded to drive, remember goku canonically has a comercial driving permit, he drives just as bad as a real trucker.
image.png -
EdBoatConnoisseur (edboatconnoisseur@bae.st)'s status on Wednesday, 18-Oct-2023 07:39:55 JST EdBoatConnoisseur @sweetcreme @boloros @ArdainianRight @ChristiJunior deutsche dorito
image.png -
EdBoatConnoisseur (edboatconnoisseur@bae.st)'s status on Wednesday, 18-Oct-2023 00:03:36 JST EdBoatConnoisseur @MoeBritannica as always exposing their ignorance to the whole world, thanks for the community context -
EdBoatConnoisseur (edboatconnoisseur@bae.st)'s status on Tuesday, 17-Oct-2023 09:33:10 JST EdBoatConnoisseur ahoy fedi pirates, here's be nice script for downloading, linux only at the time but i may of make it python so it can be used by those unfortunate enough to still run microshaft winblows
```sh
#!/bin/sh
myname="${0##*/}"
DryRun=""
Debug=""
help () {
code=0
if [ -n "$1" ]; then
code="$1"
fi
printf '%s: %s\n' "$myname" "downloader utility"
printf '%s:\n' "Usage"
printf '\t%s\n' "${myname}: <links>"
printf '\t%s\n' "Use single quotes to quote the links to protect from shell"
printf '\t%s\n' "expansion of characters."
printf '\t-n\tdry run.\n\t-d\tdebug messages.\n\t-h\tshow this help.\n'
exit "$code"
}
handler_megatools () {
if [ -z "$DryRun" ]; then
# do we have the megatools wrapper?
MegatoolsWrpPath=$(command -v mtw)
[ -n "$MegatoolsWrpPath" ] && mtw_avail=1
if [ -n "$mtw_avail" ]; then
# is it actually a megatools wrapper
if mtw | grep -q "megatools"; then
mtw_valid=1
fi
fi
if [ -n "$mtw_valid" ]; then
mtw dl "$1"
else
megatools dl "$1"
fi
else
printf '%s: %s\n' "download link" "$1"
fi
}
handler_wget () {
if [ -z "$DryRun" ]; then
wget -c --content-disposition "$1"
else
printf '%s: %s\n' "download link" "$1"
fi
}
handler_aria () {
if [ -z "$DryRun" ]; then
aria2c -c --file-allocation=falloc -x 8 -s 8 --content-disposition-default-utf8 "$1"
else
printf '%s: %s\n' "download link" "$1"
fi
}
OPTIND=1
while getopts "hnd" o; do case "${o}" in
n) DryRun=1 ;;
d) Debug=1 ;;
*) help ;;
esac done
shift $(( OPTIND - 1 ))
[ -n "$Debug" ] && printf '%s\n' "arguments: ${#}"
if [ "${#}" -eq 0 ]; then
help 1
else
for link in "$@"; do
safeprot=""
case "${link}" in
http://*) safeprot=1 ;;
https://*) safeprot=1 ;;
ftp://*) safeprot=1 ;;
ftps://*) safeprot=1 ;;
esac
if [ "$safeprot" -eq 1 ]; then
handler=""
case "${link}" in
*mega.nz*) handler="megatools" ;;
*.jpg*) handler="wget" ;;
*) handler="aria" ;;
esac
printf '%12s: %s\n' "$handler" "$link"
case "$handler" in
megatools) handler_megatools "$link" ;;
wget) handler_wget "$link" ;;
aria) handler_aria "$link" ;;
esac
else
printf '%s: %s\n' "Ignoring potentially unsafe url" "$link"
fi
done
fi
```
__deutschland_azur_lane_drawn_by_naka_nakamaru_ak__b25fe65e5f8a87098e10b0b7fdda0cbe.png -
EdBoatConnoisseur (edboatconnoisseur@bae.st)'s status on Tuesday, 17-Oct-2023 09:29:51 JST EdBoatConnoisseur piracy good
__specter_arknights_drawn_by_3_sanyako1__fc681145041955765ac85c1f03659cbf.png -
EdBoatConnoisseur (edboatconnoisseur@bae.st)'s status on Tuesday, 17-Oct-2023 09:26:38 JST EdBoatConnoisseur @coolboymew needs moar green lines for a proper 80s neon