Two ways:npostgres=# \lnnpostgres=# select * from pg_database;
Category: howto
Thanks Ansible, I just saved some money on infrastucture
Just reran my ansible notebooks to provision a smaller digitalocean droplet,nand recreate this site on it. For about 45 minutes of work, I saved more than 200$/year.
How to add a “Read more” link to a Jekyll blog
We want to add a “read more” link, when the post excerptndiffers from the content. Then we link to the post using the handy post.url.nEasily done by adding this within your post loop (mine was part of home.html):n{% raw %}n{% if post.excerpt != post.content %}nRead more…n{% endif %}nn{% endraw %}