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
{ 旼컴컴컴컴컴컴커 | |
? FIRE.PAS ? | |
旼컴컴컴컴컨컴컴컴컴컴컴컴좔컴컴컴컴컴? | |
?갚꾼 Version 1.11 (C) 22/6/94 昉굅 ? | |
쳐컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴컴? | |
?My puny attempt at a fire effect. ? | |
?Yes, I know... it'll all end in ? | |
?tears. Well, it was just about the ? | |
?only thing in the PCGPE that didn't ? | |
?involve incredible amounts of trig. ? |
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 | |
// (string) $message - message to be passed to Slack | |
// (string) $room - room in which to write the message, too | |
// (string) $icon - You can set up custom emoji icons to use with each message | |
public static function slack($message, $room = "engineering", $icon = ":longbox:") { | |
$room = ($room) ? $room : "engineering"; | |
$data = json_encode(array( | |
"channel" => "#{$room}", | |
"text" => $message, |