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
package middleware | |
type responseBuffer struct { | |
gin.ResponseWriter // the actual ResponseWriter to flush to | |
Body *bytes.Buffer // the response content body | |
Flushed bool | |
} | |
func (w *responseBuffer) Write(b []byte) (int, error) { | |
return w.Body.Write(b) |
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
/* | |
Twitch chat browsersource CSS for OBS | |
Just set the URL as https://www.twitch.tv/popout/%%TWITCHCHANNEL%%/chat | |
And paste this entire file into the CSS box | |
Original by twitch.tv/starvingpoet modified by github.com/Bluscream | |
Readjusted for new (2019/2020) Twitch by github.com/mjbogusz | |
General Settings | |
*/ | |
body { | |
color: #000000 !important; |
OlderNewer