Skip to content

Instantly share code, notes, and snippets.

View ViralTaco's full-sized avatar
🍋

Anthony Capobianco ViralTaco

🍋
View GitHub Profile
@ViralTaco
ViralTaco / lastfm.php
Last active March 15, 2019 05:39 — forked from dewey/lastfm.php
Last.fm "now playing" script for Textual.Installation: Copy this script to ~/Library/Application Scripts/com.codeux.irc.textual/lastfm.php Usage:/lastfm
#!/usr/bin/php
<?
# get api key here: https://www.last.fm/api/account/create
$api_key = "API_KEY_HERE";
$user = "HANDLE_HERE"; # case sensitive
$method = "method=user.getrecenttracks&user=";
$path = "http://ws.audioscrobbler.com/2.0/?";
$key = "&api_key=".$api_key;