Skip to content

Instantly share code, notes, and snippets.

@TheButterZone
TheButterZone / googformnonverbosediscord.gs
Created March 13, 2023 04:57
Google Form Non-Verbose Discord Webhook Notification
function webhook() {
const url = "YOURDISCORDWEBHOOKHERE";
const options = {
"method": "post",
"headers": {
"Content-Type": "application/json"
},
"payload": JSON.stringify({
"content": "YOURCUSTOMMESSAGEHERE"
})
<?xml version="1.0" encoding="UTF-8"?>
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
<ShortName>FCC License View</ShortName>
<InputEncoding>UTF-8</InputEncoding>
<Image height="16" width="16">data:image/x-icon;base64,AAABAAMAMDAAAAEAIACoJQAANgAAACAgAAABACAAqBAAAN4lAAAQEAAAAQAgAGgEAACGNgAAKAAAADAAAABgAAAAAQAgAAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAP///wD8/PwA/Pz8APz8/AD///8A/Pz8APz8/AD///8A/Pz8AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////APz8/AD///8A////APz8/AD///8A////APz8/AD///8A////APz8/AD///8A////APz8/AD///8A////APz8/AD///8A////APz8/AD///8A/Pz8APz8/AD///8A/Pz8APz8/AD///8A/Pz8AP///wD///8A////AP///wD///8A////AP///wD8/PwA////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD8/PwA////AP///wD8/PwA////AP///wD8/PwA////APz8/AD///8A////AP///wD8/PwA/Pz8AP///wD///8A/Pz8AP///wD8/PwA////AP///wD8/PwA////AP///wD8/PwA////AP///wD8/PwA////AP///wD8/PwA////AP///wD8/PwA////AP/
tell application "Adium"
send the chat "#emptychannel" message "/nick groupednick1"
delay 21
send the chat "#emptychannel" message "/nick groupednick2"
delay 21
send the chat "#emptychannel" message "/nick groupednick3"
delay 21
send the chat "#emptychannel" message "/nick yourmainnick"
end tell

Keybase proof

I hereby claim:

  • I am thebutterzone on github.
  • I am thebutterzone (https://keybase.io/thebutterzone) on keybase.
  • I have a public key ASAgJOxtweXdHkOyODaUqG32FEhrbajSaNoGyZL_VVWJVgo

To claim this, I am signing this object:

@TheButterZone
TheButterZone / btcticker.scpt
Last active May 28, 2017 05:01
AppleScript to launch telnet bitcointicker
# Export as Run-only Application
tell application "Terminal"
do script "telnet ticker.bitcointicker.co 10080"
end tell
tell application "Terminal" to activate