I hereby claim:
- I am TheHowl on github.
- I am tyge (https://keybase.io/tyge) on keybase.
- I have a public key whose fingerprint is 20C1 DE5C 996B FF08 5CE7 9776 9130 A048 95AD 76B2
To claim this, I am signing this object:
#!/usr/bin/python | |
import json, threading, urllib.request, time, sys, traceback | |
import tweepy | |
auth = tweepy.OAuthHandler("Key", "Key") | |
auth.set_access_token("Key", "Key") | |
api = tweepy.API(auth) |
I hereby claim:
To claim this, I am signing this object:
// ==UserScript== | |
// @name Flash youtube videos to HTML5 | |
// @namespace http://howl.moe/ | |
// @version 0.1 | |
// @description fuck flash with a fucking huge cactus. It goddamn sucks and should die in a fire. | |
// @author Howl | |
// @match *://*/* | |
// @grant none | |
// ==/UserScript== |
// ==UserScript== | |
// @name Slack stats unveiler | |
// @namespace http://howl.moe/ | |
// @version 1.0 | |
// @description There's not much to see on the stats slack page if you're not on a slack paid plan. Let's get around it, because you *can* see more stats even if you did not pay for them! | |
// @author Howl | |
// @match http*://*.slack.com/admin/stats | |
// @grant none | |
// @updateURL https://gist.github.com/TheHowl/bad883282a676cefbcb2/raw/slack-stats-unveiler.user.js | |
// ==/UserScript== |
// ==UserScript== | |
// @name quad squad unmemer | |
// @namespace http://howl.moe/ | |
// @version 0.1 | |
// @description reasons | |
// @author You | |
// @match http*://quadsquad.xyz/* | |
// @grant none | |
// ==/UserScript== |
#!/bin/sh | |
git diff --name-only --cached | grep \.go | while read line | |
do | |
echo "hook : go fmt for $line..." | |
go fmt $line | |
git add $line | |
done |
+---------+----------+----------+---------------------+-----------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | |
| id | username | channel | moment | is_action | message | | |
+---------+----------+----------+---------------------+-----------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | |
| 36582 | peppy | #osu | 2015-07-15 09:33:16 | 0 | !system restart tatoe | | |
| 37137 | peppy | #osu | 2015-07-15 09:38:09 | |
MariaDB [osulogbot]> SELECT * FROM messages WHERE username="Nyo"; | |
+---------+----------+----------+---------------------+-----------+--------------------------+ | |
| id | username | channel | moment | is_action | message | | |
+---------+----------+----------+---------------------+-----------+--------------------------+ | |
| 1733194 | Nyo | #italian | 2015-08-02 22:36:31 | 0 | ciao chi mi chiama? | | |
| 1733264 | Nyo | #italian | 2015-08-02 22:37:13 | 0 | me too <3<3<3<3 | | |
| 3681843 | Nyo | #italian | 2015-08-19 23:14:24 | 0 | OMG GIAN QUITTA OSU!!!11 | | |
| 3681879 | Nyo | #italian | 2015-08-19 23:14:45 | 0 | che c'è? | | |
| 3681898 | Nyo | #italian | 2015-08-19 23:14:55 | 0 | bravoh | | |
| 3681900 | Nyo | #italian | 2015-08-19 23:14:55 | 0 | anche tu | |
// ==UserScript== | |
// @name like => fave in notifications | |
// @namespace http://howl.moe/ | |
// @version 0.1 | |
// @description what | |
// @author Howl | |
// @match https://tweetdeck.twitter.com/ | |
// @grant none | |
// ==/UserScript== |
package main | |
import ( | |
"github.com/gin-gonic/gin" | |
) | |
func main() { | |
r := gin.Default() | |
r.GET("/", func(c *gin.Context) { | |
c.String(200, "Welcome. This is a test.") | |
}) |