Karl L. Hughes
Karl L. Hughes
I think some indicator of the popularity of each would be helpful too. For example, it would be nice to know the Alexa ranking of these sites. There is a...
@rebootcode I was actually more interested in helping startups prioritize where they post rather than using this metric as a minimum threshold for inclusion, but that's not a bad idea...
Thanks for the feedback @lionleaf! I'll go through each comment individually, make edits, and let you know when it's ready for another review 👍
I created PR #440 to demonstrate how an RSS feed could be added. My biggest question is, what should the RSS feed attributes be? I set `title` to "'Dweet ID...
@yanivbh1 could you also alphabetize this? Thanks!
I like having a second section in the same file for now. Maybe when this list gets too big we can break it up into multiple files, but it's not...
Here's the outline for what I'm thinking as a good first article: - Introduction - What is OpenResty? - An overview of the tool, and its relationship to NGINX/Lua. -...
I've got the basic app going, but can't get the Nginx logs to show up in Fly. OpenResty is supposed to be symlinking Nginx access and error logs to stdout...
Nevermind, figured this out.
~~Well, in my case this time, I needed to add this to my `server` block in my Nginx conf:~~ ``` access_log /var/log/nginx/access.log; error_log /var/log/nginx/error.log; ``` ~~It's weird that I didn't...