I wanted something that i) is simple to host and edit, ii) did not require me maintaining a server somewhere, and iii) it was easy to go from Jupyter notebooks to a post. So I opted for Pelican ( https://blog.getpelican.com/ ) which has a plugin for converting Jupyter/IPython notebooks into blog posts. It is hosted in S3. If you are curious, here it is: http://ramondario.com/
Ask HN: What stack is your personal blog built on?
71–80 of 80 posts
Re: Ask HN: What stack is your personal blog built on?
#72I have built this website with Hugo Static Generator. I found that Hugo has lot more variety of themes to choose and easier to understand the structure. I also like their templating engine. Set up is very easy and building and compiling the site is very fast.
I have also tried Gatsby before finalizing to go with Hugo. IMHO, Gatsby is equally good. However Gatsby is well suited for developers with bit of react knowledge and has limited set of theme selection. For performance, I like the pre-fetch functionality of Gatsby.
Here is my current setup.
1) Hugo Static Site
2) Code repository on Git
3) Automated build and hosted on Netlify (Simple and easy to use)Re: Ask HN: What stack is your personal blog built on?
#73Re: Ask HN: What stack is your personal blog built on?
#74I'll probably eventually add JavaScript and WebGL and WebAssembly for some specific project pages.
https://joelvalleroy.github.io/
eventually some more content might get added too ;)
Re: Ask HN: What stack is your personal blog built on?
#75Re: Ask HN: What stack is your personal blog built on?
#76Re: Ask HN: What stack is your personal blog built on?
#77I went with Wordpress after a blogging guide suggested to minimize time spent messing with the blogging software, because messing with blogging software isn't blogging.
True that, but it's good fun anyway ;-) Plus, I'd rather spend two days setting up a usable, solid stack than be annoyed with WordPress every time I load their web interface...
I, too, went with WordPress after years of trying to avoid it. After having launched ~30 WP sites in the past ~5 years, it just made sense.
Re: Ask HN: What stack is your personal blog built on?
#78Earlier quoted context omitted.
True that, but it's good fun anyway ;-) Plus, I'd rather spend two days setting up a usable, solid stack than be annoyed with WordPress every time I load their web interface...
It's good fun to do once or twice, but eventually, like the parent poster states, you eventually find yourself having spent more time tinkering with the stack than actually writing. I, too, went with WordPress after years of trying to avoid it. After having launched ~30 WP sites in the past ~5 years, it just made sense.
Re: Ask HN: What stack is your personal blog built on?
#79Running my girlfriend's recipe blog on Python + Django + Wagtail CMS on a Heroku server, wired up to Google cloud storage. It ends up being completely free with the dev tier Heroku server and staying within the free tier of Google's cloud storage. It was mostly as a learning exercise, but it's a pretty flexible stack, and I'm a fan of the Wagtail admin panel; didn't really feel the need to customize anything there.
How does it work with Heroku dynos waking up after inactivity? Whats the loading time?
Re: Ask HN: What stack is your personal blog built on?
#80I wanted something that i) is simple to host and edit, ii) did not require me maintaining a server somewhere, and iii) it was easy to go from Jupyter notebooks to a post. So I opted for Pelican ( https://blog.getpelican.com/ ) which has a plugin for converting Jupyter/IPython notebooks into blog posts. It is hosted in S3. If you are curious, here it is: http://ramondario.com/
I'm interested in hosting a static site on s3 but worry that some smartass could rent a botnet and hammer the bucket just for lulz. It might only take a minute for the charges to bankrupt me, and I can't find any failsafe solution in the AWS documentation. I know I could make a billing alarm trigger a lambda function to disable public access, but it might not be instantaneous. Is there any reliable information to be…