Skip to content

Instantly share code, notes, and snippets.

View sydney1's full-sized avatar

Sydney Alcala sydney1

  • Gotsmith Web Studio
  • Texas
View GitHub Profile
@sydney1
sydney1 / wget
Created May 21, 2019 16:48
wget pull all files from txtfile with folders
wget -x -i blahblah.txt
// This will keep folders
// In blahblah.txt is public URL to files
@sydney1
sydney1 / slack.php
Created October 2, 2018 21:56 — forked from stefanzweifel/slack.php
Slack.com Webhook Integration (PHP) - Simple snippet which tells you, how to build your payload array.
<?php
//Options
$token = 'YOUR_TOKEN_HERE';
$domain = 'YOUR_SLACK_DOMAIN_GOES_HERE';
$channel = '#general';
$bot_name = 'Webhook';
$icon = ':alien:';
$message = 'Your message';