Live data from Hacker News

Static Website Generators

netlify.com

201–210 of 241 posts

Re: Static Website Generators

#201

The main question for me is comments. I don't want to use something like Disqus, and to require something like Discourse would cancel the whole point of having a static site generator that I can host on Github Pages or Gitlab pages. Ideally, what I would like to do is to have an hackernews post automatically generated for each post, and to redirect people to the HN post if they want to comment, but I am not sure that…

That would be absolutely awful. Imagine if every site did that. Would this be a site you would want to visit? Maybe what you want to do is have a link that sends you to the HN submission page with the fields pre-populated. That wouldn't be so bad.

The comments on my technical blog were always so friendly and encouraging. People telling me how my tutorial helped them or answering each others questions.

Redirecting them to the HN pit of cynicism and leave-no-stone-left-unturnedism sounds awful. :)

Re: Static Website Generators

#202
post #73

I crave simplicity in my life right now and am using markdeep: https://casual-effects.com/markdeep/ I write my documents in markdown and add this tag at the end of my document I "publish it" by copying it to my server and renaming it .html * note: To get started, here is the suggested starter document: https://casual-effects.com/markdeep/starter.md.html

Since the website is rendered with JS onload, doesn't this make your site a second class citizen in regards to SEO? If you want people to actually read what you write, static content from the server is still superior.

> doesn't this make your site a second class citizen in regards to SEO

Not with any search engine that matters.

Re: Static Website Generators

#203

Earlier quoted context omitted.

Also sort of a related, shameless plug-- I've been working on Formingo ( https://www.formingo.co ), a form processing service for static sites so you can receive your form submissions directly to your email without the need for server side code or your own backend. I've actually had a couple people ask me about comment systems that were an alternative to (and more simple than) Disqus, so it's cool to see someone work…

Your API is exactly what I would expect to see from such a service. Your pricing is also exactly what I would expect to see, so props. I only need a POST endpoint that will accept a few parameters and redirect back to my success page, and I will definitely keep your service in mind for that. Although, how do you keep everyone from sending spam from you?

Right now there's domain and email verification so that you don't get spammed from people taking your form and embedding it into their website, but I have some upcoming plans for spam detection.

In fact, the first parts of this system is in place already-- if you have an account and create a pre-validated form, you can go into your dashboard to see the responses and mark them as spam. This will become the training data for the spam filter at a future point in time.

Re: Static Website Generators

#204
I'm not so sure Octopress belongs on this type of list anymore.

I've been using it for about 4 years now, and I simply haven't had the time to convert it to anything else but plan to as soon as I can.

Over the last couple years I've dealt with countless type error issues, gem incompatibilities, etc. I have one single machine that Octopress generates my site from now, and it's an old Linux install that I refuse to update (because that will break OP). I believe the author tried his best to make what's essentially a clever Jekyll hack work as well as he could. He's tried creating a newer, smarter version but I'm not sure what the current status is. I'm guessing it's going slowly because most he, like most people, don't have time for such a huge project that isn't paying bills. I appreciate the attempt for sure, it worked great at first.

I don't want to sit and complain about a free product but would caution others about investing in it heavily like I did. I spent a considerable amount of time on overhead with this product as it sits. There are much easier (non Ruby!) solutions out there.

Re: Static Website Generators

#205

Earlier quoted context omitted.

Formingo looks good. But one thing I'd like is the ability to hide my email address so it doesn't get picked up by spammers. The current setup shows the address plainly in the page source. Could the action field take some sort of identifier number or hash, as in: /submit/12345 Then your system looks up 12345 and sees it means john@example.com.

You can sign up ( https://www.formingo.co/register ) for a free account that lets you create forms that hide your email address (along with pre-verify your email address and domains so you don't have to click a verification link every time you add a form to a new URL/email address combo) :)

Thanks Andrew. I was just looking at the intro example on https://www.formingo.co/create-a-form and didn't dig deeper. I'm glad I asked. I'll give it a try.

Re: Static Website Generators

#206

What are people using for hosting? I've thought about using github pages, but css ended up being severely limited.

Check out Aerobatic [https://www.aerobatic.com]

Integrated with Bitbucket, git push deploy, Docker auto-builds of static generators, wildcard SSL custom domains, CDN, etc.

disclaimer: I work at Aerobatic

Re: Static Website Generators

#207

Earlier quoted context omitted.

Isn't https://www.getlektor.com what you're looking for?

I think the flat-file part is a breaker for my current needs unfortunately. But, being OSS I could perhaps fix that, so I'll add it to my short-list of possible solutions.

Why using files is such an issue, if I can ask?

Re: Static Website Generators

#208

I'm not so sure Octopress belongs on this type of list anymore. I've been using it for about 4 years now, and I simply haven't had the time to convert it to anything else but plan to as soon as I can. Over the last couple years I've dealt with countless type error issues, gem incompatibilities, etc. I have one single machine that Octopress generates my site from now, and it's an old Linux install that I refuse to upd…

Same here. I am right in the middle of moving to metalsmith, it's much saner

Re: Static Website Generators

#209

Earlier quoted context omitted.

Also sort of a related, shameless plug-- I've been working on Formingo ( https://www.formingo.co ), a form processing service for static sites so you can receive your form submissions directly to your email without the need for server side code or your own backend. I've actually had a couple people ask me about comment systems that were an alternative to (and more simple than) Disqus, so it's cool to see someone work…

Your API is exactly what I would expect to see from such a service. Your pricing is also exactly what I would expect to see, so props. I only need a POST endpoint that will accept a few parameters and redirect back to my success page, and I will definitely keep your service in mind for that. Although, how do you keep everyone from sending spam from you?

This is our solution to this problem. Our service is a general purpose "sql database over cors and https", posting forms with captcha is the archetypical use case. It is more low level and requires some coding. Let us know, we're happy to help out!

https://www.lite-engine.com/blog/post_form.html

Re: Static Website Generators

#210

Earlier quoted context omitted.

Your API is exactly what I would expect to see from such a service. Your pricing is also exactly what I would expect to see, so props. I only need a POST endpoint that will accept a few parameters and redirect back to my success page, and I will definitely keep your service in mind for that. Although, how do you keep everyone from sending spam from you?

Right now there's domain and email verification so that you don't get spammed from people taking your form and embedding it into their website, but I have some upcoming plans for spam detection. In fact, the first parts of this system is in place already-- if you have an account and create a pre-validated form, you can go into your dashboard to see the responses and mark them as spam. This will become the training da…

Ah, I more meant "how do you make sure people don't send spam to arbitrary destinations sending your form", but I see you're doing email verification of the recipient first. I thought "put this form on your site" was literally all there was, at first, hence the question.
Post reply on HN