I hereby claim:
- I am willnix on github.
- I am willnix (https://keybase.io/willnix) on keybase.
- I have a public key whose fingerprint is 5684 C0D8 2CBA 23F8 6586 46EA 9A53 2500 B675 2867
To claim this, I am signing this object:
/* See LICENSE file for copyright and license details. */ | |
/* appearance */ | |
static const char font[] = "-*-terminus-medium-*-*-*-14-*-*-*-*-*-*-*"; | |
static const char normbordercolor[] = "#49270a"; | |
static const char normbgcolor[] = "#995522"; | |
static const char normfgcolor[] = "#ffffff"; | |
static const char selbordercolor[] = "#e30212"; | |
static const char selbgcolor[] = "#49270a"; | |
static const char selfgcolor[] = "#e30212"; |
#!/usr/bin/env python | |
import sys,re,time,os | |
import urllib,urllib2,cookielib | |
import xml.dom.minidom | |
from ID3 import * | |
try: | |
import json | |
except ImportError,e: |
package main | |
import ( | |
"fmt" | |
"io/ioutil" | |
"log" | |
"net/http" | |
"net/url" | |
"strings" | |
"sort" |
package main | |
import ( | |
"fmt" | |
"github.com/hailiang/gosocks" | |
"io" | |
"net" | |
"os" | |
"strings" | |
"time" |
package main | |
import ( | |
"bufio" | |
"encoding/binary" | |
"fmt" | |
"log" | |
) | |
type num [4]uint32 |
I hereby claim:
To claim this, I am signing this object:
package main | |
import ( | |
"fmt" | |
"os" | |
"time" | |
"encoding/json" | |
"encoding/xml" | |
) |
// ==UserScript== | |
// @name BlurMa | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Blur latest Threema message preview | |
// @author Frieder Steinmetz | |
// @match https://web.threema.ch/* | |
// @grant none | |
// ==/UserScript== |
#!/usr/bin/env python3 | |
from http.server import SimpleHTTPRequestHandler, HTTPServer | |
class CustomHTTPRequestHandler(SimpleHTTPRequestHandler): | |
def do_GET(self): | |
''' | |
Print request and call SimpleHTTPRequestHandler.do_GET() | |
to serve static files | |
''' | |
print(">"+"-"*40+"<") |
from pyftpdlib.authorizers import DummyAuthorizer | |
from pyftpdlib.handlers import FTPHandler | |
from pyftpdlib.servers import FTPServer | |
from pyftpdlib.log import logger | |
HOMEDIR = "/var/ftp" | |
# Authorizer granting access to everyone and logging the credentials | |
class LoggingAuthorizer(DummyAuthorizer): | |
def validate_authentication(self, username, password, handler): |