Any particular reason why you don't install using homebrew?
Building a fast, secured and free static site in less than three hours
131–140 of 201 posts
Re: Building a fast, secured and free static site in less than three hours
#132Holy cow. Is this an improvement? Remember in 1999 when you could get a static website up in 3 minutes using ftp?
I made my first website using vi to make an index.html file in the ~/public_html directory in the home directory of my account on a university Solaris server back in 1997. FTP was a luxury. Kids today.
Re: Building a fast, secured and free static site in less than three hours
#133I wrote a similar blog post: https://tberra.com/aws/amazon/meta/2016/11/12/the-birth-of-a... The main differences on mine are: - I use Jekyll, which is ranked #1 in the static site generator space. - Hosted on AWS S3. - CloudFront in front of S3. - Routing and aliases handled by Route53. - Deployed using a tool called s3_websites (change detection only uploading generated files AND cloud front cache invalidation for…
I see both Jekyll and Hugo mentioned frequently in the "Using GitHub and X to host your website" space. Do you have any practical our technical reasons for preferring one over the other?
Re: Building a fast, secured and free static site in less than three hours
#134Holy cow. Is this an improvement? Remember in 1999 when you could get a static website up in 3 minutes using ftp?
Using Hugo adds a lot of complexity. I'm using Surge.sh and raw html/css, I can have a site up in under 2 minutes. I think I spent less than an hour on my blog (it has a very simple layout).
This article seemed like a good start, but I'd love to know more about how you built your blog in a way that's easily maintainable.
Re: Building a fast, secured and free static site in less than three hours
#135Benefit above and beyond writing your own html and css? (Serious question). I see a lot of the example tutorials show a simple blog example. In this case why not just html and css and your favourite text editor? With css you can separate style from content, you can "change themes" etc.
Re: Building a fast, secured and free static site in less than three hours
#136It is possible to make it more secure by changing the setting to "Full SSL (non-strict)", which encrypts the connection between Cloudflare and GitHub against passive attacks but not active interception. Unfortunately, GitHub pages does not work with Cloudflare's "Full SSL (strict)" option.
Cloudflare SSL Options: https://support.cloudflare.com/hc/en-us/articles/200170416-W...
Example of attack between Cloudflare and origin: https://medium.com/@karthikb351/airtel-is-sniffing-and-censo...
GitHub issue page: https://github.com/isaacs/github/issues/156
Re: Building a fast, secured and free static site in less than three hours
#137Earlier quoted context omitted.
I think we need to clarify what a down vote is... My assumption was it was to flag something mean or off topic. Now People seem to use it to say "I disagree with your opinion but am too lazy to express my own".
Ask HN: Why has the downvoting timelimit been reduced? | https://news.ycombinator.com/item?id=12330029 (Aug 2016) TL;DR: I think it would be a big mistake to [...] outlaw downvoting for disagreement - dang (HN mod)
Re: Building a fast, secured and free static site in less than three hours
#138Neocities [0] does all of this! - It's free (though you can become a supporter and get some extra benefits) [1] - It's fast, since it uses it's own CDN. [2] - It's secure, all pages support SSL, even with custom domains. [3] - It has a command line tool [4] that can be wrapped to automate upload of pages, or used in a Git hook. - It has a plethora of learning resources [5]. [0] https://neocities.org [1] https://neoci…
Re: Building a fast, secured and free static site in less than three hours
#139Earlier quoted context omitted.
Assuming your blog is technical, this would have been a good chance to get some more traffic by at least mentioning the actual domain, linking to the github repo, or having one or both of those in your profile. Edit: Not sure why this has been met with a stream of downvotes. Is there something wrong with saying "I use a different approach to publish this blog: [link]," especially if it's technical and would be of int…
"Edit 2: I don't generally care where a post is but this went from -2 to +6 pretty quickly. Weird?" Probably I can answer that :) I noticed that when one of my posts get down voted even when having a neutral comment, it swings back to positive fast when touching -1 or -2. I guess that the gray comment takes a while for HN'ers to notice as down voted. And when they find that there is nothing wrong with it or they actu…
I've also seen many of my own comments go up and down quite a lot as the upvoters & downvoters battle it out. (Eventually they tend to settle on a solid "meh.")
Re: Building a fast, secured and free static site in less than three hours
#140I wrote a similar blog post: https://tberra.com/aws/amazon/meta/2016/11/12/the-birth-of-a... The main differences on mine are: - I use Jekyll, which is ranked #1 in the static site generator space. - Hosted on AWS S3. - CloudFront in front of S3. - Routing and aliases handled by Route53. - Deployed using a tool called s3_websites (change detection only uploading generated files AND cloud front cache invalidation for…
I see both Jekyll and Hugo mentioned frequently in the "Using GitHub and X to host your website" space. Do you have any practical our technical reasons for preferring one over the other?