Mastodon github.com/rknightuk proven.lol/aaecd5

NVM not Working on Deploy on Laravel Forge

Source nvm in the deploy script to fix this:

. ~/.nvm/nvm.sh

Parse an RSS feed to JSON

function Parse($url){
$simpleXml = simplexml_load_file($url, "SimpleXMLElement", LIBXML_NOCDATA);
$json = json_encode($simpleXml);
return $json;
}