Skip to content

Instantly share code, notes, and snippets.

@Underdoge
Last active August 12, 2017 05:01
Show Gist options
  • Save Underdoge/1a60b5969cc2b5b482e1bd7949b64ef8 to your computer and use it in GitHub Desktop.
Save Underdoge/1a60b5969cc2b5b482e1bd7949b64ef8 to your computer and use it in GitHub Desktop.
For weechat
#!/usr/bin/env bash
# Copyright (c) 2017, Anthony DeDominic <adedomin@gmail.com>, Underdoge
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
while IFS= read -r line; do
echo "$line"
sleep '0.500s'
done < <(curl "https://moose.ghetty.space/irc/${*:-random}" -s)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment