> CAP REQ :twitch.tv/commands
< :tmi.twitch.tv CAP * ACK :twitch.tv/commands
Enables USERSTATE
, HOSTTARGET
and CLEARCHAT
raw commands.
// ==UserScript== | |
// @name Review dropdown | |
// @namespace stackexchange.com | |
// @version 1.6 | |
// @description Review link replaced with a dropdown menu allowing you to access 10k tools and see how many posts there are in each review queue, with links to each one. | |
// @include http*://*.stackexchange.com/* | |
// @include http*://*stackoverflow.com/* | |
// @include http*://*superuser.com/* | |
// @include http*://*serverfault.com/* | |
// @include http*://*mathoverflow.com/* |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# Revokes any Twitch OAuth2 token. | |
# Usage: ./revoke-twitch-token.sh | |
# The script will prompt for the token to avoid leaking a valid token | |
# to history or environment in case an error occurs while attempting to revoke. | |
command -v jq >/dev/null 2>&1 || { echo >&2 "Please install 'jq'."; exit 1; } | |
command -v curl >/dev/null 2>&1 || { echo >&2 "Please install 'curl'."; exit 1; } |
using System.Collections.Generic; | |
using System.Text; | |
/***************************************************************************** | |
MIT License | |
Copyright (c) 2019 Werner Vänttinen | |
Permission is hereby granted, free of charge, to any person obtaining a copy |
<!DOCTYPE html> | |
<title>3v.fi - Discord Timestamp Generator</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<style> | |
html,body{margin:0;padding:0;background:#161620;color:#eee;font-family:sans-serif;} | |
.container{display:grid;grid-template-columns:1fr max-content;width:50rem;margin:0 auto;border-right:1px solid #666;border-left:1px solid #666;padding:1rem;} | |
.container>*{margin:0.2rem;} | |
#current{grid-column:span 2;} | |
input,select,button{background:#383842;color:#fff;border:1px solid #666;} | |
#code{font-family:monospace} |