mirror of
https://github.com/r-freeman/portfolio.git
synced 2025-05-15 11:50:21 +00:00
This commit is contained in:
parent
b293c36e17
commit
a2ee57a7ea
@ -88,7 +88,7 @@ Cloudflare is essentially acting as the Man-in-the-Middle, which should be a hug
|
||||
|
||||
By setting up Cloudflare Tunnels to expose your websites or applications to the Internet you become dependent on Cloudflare for providing ongoing availability and stability of that service.
|
||||
|
||||
As the provider, Cloudflare could discontinue this service at any point in the future, rendering your applications or websites inaccessible. If you are keen self-hoster like me, your goal is to reduce your dependence on third-parties as much as possible.
|
||||
As the provider, Cloudflare could discontinue this service at any point in the future, rendering your applications or websites inaccessible. If you're a keen self-hoster like me, your goal is to reduce your dependence on third-parties as much as possible.
|
||||
|
||||
### Bandwidth limitations
|
||||
|
||||
|
@ -20,8 +20,8 @@ export async function getAllArticles(dateDesc = true) {
|
||||
|
||||
let articles = await Promise.all(articleFilenames.map(importArticle))
|
||||
|
||||
return dateDesc ? articles.sort((a, z) => a.date < z.date ? 1 : -1)
|
||||
: articles.sort((a, z) => a.date > z.date ? 1 : -1)
|
||||
return dateDesc ? articles.sort((a, b) => a.date < b.date ? 1 : -1)
|
||||
: articles.sort((a, b) => a.date > b.date ? 1 : -1)
|
||||
}
|
||||
|
||||
export async function groupArticlesByYear() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user