This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//FoolSlide RSS Feed loader/formatter | |
//TODO: Use API instead of RSS feed | |
//Henry Stark 2015 | |
//ini_set('display_errors', 1); | |
//error_reporting(E_ALL ^ E_NOTICE); | |
$curl = curl_init(); | |
curl_setopt_array($curl, Array( | |
CURLOPT_URL => 'http://[INSERT FOOLSLIDE BASE URL]/feeds/rss/', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Slack team invite sign-up form handler | |
Henry Stark 2015 | |
Original Idea: https://levels.io/slack-typeform-auto-invite-sign-ups/ | |
*/ | |
/* VARIABLES TO EDIT */ | |
$slackTeam = 'scanlation';// Slack team name | |
$slackToken = 'xoxp-1234';// Slack API token (Generate at https://api.slack.com/web) |
NewerOlder