HN user

guu

579 karma

https://www.softwaresessions.com/episodes/

Posts13
Comments80
View on HN

I recommend https://bearblog.dev (free) or https://ghost.org (paid). Both let you use your own domain.

It's fun to set up static site generators but I think it's better to pick something you can start writing in immediately instead of spending time thinking about what to use.

If you end up enjoying blogging you can switch to different software later if you like. But don't let that stop you from starting to write now.

Some technical details about the project you may find interesting:

- They were hosted on Digital Ocean but received a (probably invalid) DMCA takedown and all their servers were shut down by DO

- In response they bought an IPv4 block and built an Anycast CDN so complaints go to Neocities instead of the hosting provider

- People sometimes host spam or phishing sites on the domain which can cause google to flag it as malicious[0]

- There's a geocities gallery by the same author kyle[1]

I interviewed kyle if you want to hear more about the project[2].

[0] https://news.ycombinator.com/item?id=25803343

[1] https://geocities.restorativland.org/

[2] https://www.softwaresessions.com/episodes/bringing-geocities...

"Business Starter" accounts are a different category of account that can't join or create a family (To share YouTube Premium, YouTube TV, etc). Also, if you stop paying your email account gets suspended.

Individual is a "normal" Google account and doesn't increase your storage from the default 15GB or support custom domains. But if you stop paying you still have a valid @gmail account and just lose access to the additional features.

There are three main efforts in the official announcement[0]:

- Forum for COBOL programmers to express interest in volunteering or hiring[1]

- Forum monitored by experienced COBOL programmers to help developers[2]

- Open source COBOL training materials from IBM[3] (Available “in the coming days”)

[0] https://www.openmainframeproject.org/blog/2020/04/09/open-ma...

[1] https://community.openmainframeproject.org/c/calling-all-cob...

[2] https://community.openmainframeproject.org/c/cobol-technical...

[3] https://github.com/openmainframeproject

Get Static 6 years ago

Yes, with a properly configured CDN you can continue serving information even when the application server is overloaded or down.

I would suggest this route for organizations that are already using dynamic solutions like Wordpress.

Are you thinking of user-to-user sharing (ex: daniel shares his list with justin) or something more global?

To give an example: The indiehackers website uses firebase as its data store. It's a blog/forum, so posts and comments made by individual users can be seen by people who don't have accounts. Is this a use case you plan to support in the future?

If not, the potential use cases are much narrower than firebase. Not necessarily a bad thing but I'm just trying to understand the product.

If I understand correctly currently the data is per user and not shared.

If you have a todo app, the user can log in and see and modify their todos but there would be no way for them to share their todos.

There is no shared access to a modifiable store which I believe would be necessary for the view counter, comment, and signup use cases.