Skip to content

Instantly share code, notes, and snippets.

@chocolatkey
chocolatkey / foolfeed.php
Last active October 24, 2015 20:52
Foolslide RSS feed formatter for front page presentation (Foundation 5)
<?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/',
@chocolatkey
chocolatkey / slack.php
Created October 23, 2015 18:09
Slack team invite sign-up form handler
<?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)