Broken user icons in mentions list

Any non-existing/banned/etc user appearing in the mentions list of any post has a broken icon as shown in above screenshot. Also some times interaction count might be wrong as such users might still appear in the mentions list on the direct link to the post. And also links to such users blog always redirect to main loforo page instead of any error page or anything such alike.

Broken posts are annoying

But having no style override for them is even worse :\ Since such posts started appearing  I had to create a style override so the site would work again. Below is stylus rule exported to mozilla format, use an import function in the extension if you want to use it.

@-moz-document domain("loforo.com") {
div.media.pic > img {
    object-position: unset !important;
    max-width: 100% !important;
    height: auto !important;
    position: unset !important;
    top: unset !important;
    left: unset !important;
    object-fit: unset !important;
    transition-duration: unset !important;
    transition-timing-function: unset !important; Read More »

Reposted from juozaspo

Broken posts are annoying

But having no style override for them is even worse :\ Since such posts started appearing  I had to create a style override so the site would work again. Below is stylus rule exported to mozilla format, use an import function in the extension if you want to use it.

@-moz-document domain("loforo.com") {
div.media.pic > img {
    object-position: unset !important;
    max-width: 100% !important;
    height: auto !important;
    position: unset !important;
    top: unset !important;
    left: unset !important;
    object-fit: unset !important;
    transition-duration: unset !important;
    transition-timing-function: unset !important; Read More »

Random slow connections on vpn

Some times when using loforo (e.g. scrolling) it suddently stops connecting. Mostly happen when using VPN server hosted in same country (Lithuania) that I'm connecting from. Images and next page loads slower than usual and some times it does not connect at all. Very anoying. Happens multiple times for at least a few days. Not sure what is the cause. Speed test on vpn shows it's ~100 on both up and down Mbps

Edit: It does not appear to be a big slowdown compared to direct connection, as I've tested on a new browser profile, though page load speed decreases on later pages, probably due to browser lag. Read More »

Kyselo just stopped working

The certificate just expired, or was replaced with a certificate that expired ages ago. So the site is no longer reachable.

Edit: The site's back. There was a temporary problem with ssl proveder or the server itself but now everything's back and is working, no more errors like that.

Upload random image to loforo from any folder using the loforo API

To upload random file from current working directory on Linux use a command similar to shown below, also do not forget to quote html as not doing so might cause bugs and this is just an example:

mkdir -p uploaded
FILE=$(find *.* -type f | shuf -n 1); curl -F 'key=<your api key>' -F "media=@$FILE" -F 'content="<p>some html here</p>"' https://loforo.com/api/post/create; mv -v $FILE uploaded

You can copy files you want to upload to a temporary directory by using a command below as example and run above command from there:

for arg in {1..10}; do FILE="$(find -type f|shuf -n 1|cut -d\/ -f2-)"; cp -v --backup=numbered "$FILE" /path/to/tmp/dir/; done Read More »

Reposted from juozaspo