rejetto forum

Recent Posts

61
Everything else / Re: Message to Rejetto: forum's email is broken
« Last post by Mars on August 05, 2024, 11:19:54 PM »

works as expected, bots will be able to have fun again

 :o
62
Everything else / Re: Message to Rejetto: forum's email is broken
« Last post by rejetto on August 05, 2024, 07:27:22 PM »
it should be fixed now.
sorry guys
63
HFS ~ HTTP File Server / Re: how to inline images in folder view
« Last post by hanshenrik on August 01, 2024, 03:35:45 PM »
Could try the thumbnails plugin: https://github.com/rejetto/thumbnails
But I don't really trust the author, looks like a shady fellow.
So I wrote this custom-html-footer code:
Code: [Select]
(function () {
    // todo: is there an event fired by HFS when all elements are loaded? that would be better than this retry approach.
    let retryUntilSuccessFunction;
    retryUntilSuccessFunction = function () {
        let images = document.querySelectorAll('span[role="img"].fa-image');
        if (images.length === 0) {
            setTimeout(retryUntilSuccessFunction, 100);
            return;
        }
        document.querySelectorAll('span[role="img"].fa-image').forEach(function (el) {
            let span = el;
            while (el.tagName.toLocaleLowerCase() !== 'a') {
                el = el.parentNode;
            }
            let url = el.href;
            let imageElement = document.createElement('img');
            imageElement.src = url;
            imageElement.style['max-width'] = '500px';
            span.appendChild(imageElement);
        });
    };
    retryUntilSuccessFunction();
})();

- half-joking, I need to be able to specify max-width, made a feature request here https://github.com/rejetto/thumbnails/issues/3
64
HFS ~ HTTP File Server / Re: how to inline images in folder view
« Last post by hanshenrik on August 01, 2024, 02:54:07 PM »
Now I want to do the same on HFS3, anyone know how?
65
Everything else / Re: Message to Rejetto: forum's email is broken
« Last post by mzw18667 on July 26, 2024, 02:33:55 AM »
good to know, thanks.
66
Everything else / Message to Rejetto: forum's email is broken
« Last post by LeoNeeson on July 24, 2024, 12:08:26 AM »
Hi!, this is a message to Rejetto. :) I have his email, but I don't want to bother him with this, so I use this space to report that the forum's email system is completely broken. The forum system DOES NOT send any email. This means the following:

- Users doesn't get notifications of new 'Private Messages', neither of emails sent through the forum.
- Users doesn't get notifications of new posts, in case they were subscribed to get email notifications.

- New users can't signup/register, since they can't get the verification link, sent by the forum via email.

ยป Summarizing: any email sent through the forum, is lost and never sent...

Since this forum is using "OVH Web Hosting", perhaps the following link helps you:
https://help.ovhcloud.com/csm?id=kb_article_view&sysparm_article=KB0052915

@Rejetto: I hope you can fix it, but there is no pressure on doing it.
Take the time you need, but please don't forget about it. ;)
Thank you, and sorry for opening this thread.

Cheers,
Leo.-
67
HFS ~ HTTP File Server / Warning: HFS v2.x has a severe vulnerability
« Last post by LeoNeeson on July 22, 2024, 08:16:08 PM »
Hi everyone! This is a notice to all the users of HFS version 2.x (I will call it 'HFS2' for making it short). Recently, a severe vulnerability (CVE-2024-23692) was found in HFS2 (known to affect HFS v2.4.0 RC7 and HFS v2.3m). This information was kept private until now, to give it time to find a solution, but now I think it's time to make this notice public. This is only an informational message to let everyone know about this. Anyone with Pascal/Delphi knowledge could contribute to finding a fix.

We are discussing how to patch it, here:
https://github.com/drapid/hfs/issues/3

You could contribute by submitting code fixes to the source code, either on GitHub or here in the appropriate forum section: Programmers corner (opening a new thread there or leaving a comment here on this very same thread). If we find a correct fix (and since Rejetto will not update HFS2 anymore), perhaps we can build an unofficial "community" version for those who can't upgrade to HFS3.

Let's keep HFS v2.x alive, and...
...please do not panic. ;)

Stay safe,
Leo.-
68
Everything else / Re: Webd, similar to HFS, only 90KB
« Last post by mzw18667 on July 13, 2024, 09:31:34 AM »
It's time for me to get back to work,
until next time, goodbye...
Leo.-
Take care, and be healthy.

Did you got the message I sent to you. I'm not sure if this forum's messages is working.  ;D
69
Everything else / Re: Webd, similar to HFS, only 90KB
« Last post by LeoNeeson on July 11, 2024, 05:10:45 PM »
May I ask why you don't have enough free time?
The answer is simple: life is very uneven where I live, and it can be tough for those who are not lucky to have a great job. Having 2 or more jobs to survive is something normal here, that's why there is no free time. And programming isn't my source of income (I've studied programming many years ago, but in the end I dedicated myself to something else). Now I have a hobbyist approach to programming.

By the way, even replying messages like this, here on this forum, consumes too much of my free spare time. That's why I don't like chit-chatting about trivial matters, but only contributing to things that are useful to others. Please keep it that way. It's best that we keep this forum thread open, so that others can leave their opinion about your program (Webd) in the future, instead of continuing to undermine it with personal conversations, and it would be great if you could contribute in any way to the progress of HFS. :)

It's time for me to get back to work,
until next time, goodbye...
Leo.-

70
Everything else / Re: Webd, similar to HFS, only 90KB
« Last post by mzw18667 on July 11, 2024, 12:12:39 PM »
Keep in mind that it could take several years before a software gets wider usage. HFS needed 10 to 20 years to get on the position is today. It's not something that happens overnight, no matter how much you want to promote it. Too much promotion, could even be counterproductive, since it might look as something negative for some users. Adding advertisement to software is something that also scare off users, especially in English-speaking countries.
Yes, it take years for webd get popular in my native language world too.
I have already disabled ads for most languages, but the webui part of Webd still makes external requests. People with computer knowledge can easily block it. Many even use Webd in intranet environments isolated from the internet, and it still functions properly in such cases.

Yes, that's true. And those who use PC and run a permanent web server, will probably look for something more powerful/robust to handle a lot of traffic/users (concurrent connections), and they might already use Nginx, Apache, Lighttpd, LiteSpeed Web Server or similar (since they could be computer experts). People in the know are not afraid of using complex software. Personally, although I have some advanced computer knowledge, I always try to keep things simple. That's why I love HFS, because it can be very simple to use, but also very complex if needed.
Nowadays, many software programs are too bulky and cumbersome to use and configure, which is one of the motivations behind my development of Webd. This software has indeed helped many people. Many are starting to dislike flashy but impractical software.

If I'm not mistaken, you are from China, and people from there are smarter/intelligent (more geeky persons, open to test new technologies), than in English-speaking countries. There you all could be more comfortable to seeing advertisements than here too. That could be the reason why Webd is very popular there. I have a big respect (and admiration) for people from your country, but you should know that not everyone here have the same concept of your country (the world is very divided today). I do not get carried away by what others say, I evaluate and value people, I do not follow pre-established precepts. However, I am always very cautious when trying new software, no matter what country it comes from (and I like privacy-friendly software).
I speak Chinese, but that doesn't mean I am from China. There are other countries where similar forms of Chinese are spoken, such as Taiwan, Singapore, Malaysia, and communities in many other parts of the world. Because I speak Chinese, I have a better understanding of the situation there. What you see is just the surface; the underlying reason is the severe exploitation, both overt and covert, in that region. People act that way merely as a means of survival.

I also don't have too many friends (I prefer quality friends, to quantity of semi-acquaintances), but you can count on me to help you out, on whatever is possible to me, given my very limited free time. I always try to be active on this forum, helping people who need something (you can find me here and also on Twitter). Well, I have nothing more to say, I hope other users here can leave their opinion about your program.
May I ask why you don't have enough free time? In my impression, programmers in the Western world have plenty of free time and a decent standard of living, which allows them to contribute to the open-source community. Some programmers who have immigrated to Western countries say the same thing.

Rejetto (the author of HFS) would like if you try his new HFS3, and leave your opinion about it. ;)

I developed this software years ago, inspired by HFS. At that time, I wanted a similar software that could run on Linux, in terminal without GUI.
But now I don't have a suitable environment to run the new version of HFS, only a few spare computers running Windows 7.