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
running 1 test | |
[OpenGL] GetString(7938) | |
[OpenGL] GetIntegerv(33309, 0x43ef1a0) | |
[OpenGL] GetStringi(7939, 0) | |
[OpenGL] GetStringi(7939, 1) | |
[OpenGL] GetStringi(7939, 2) | |
[OpenGL] GetStringi(7939, 3) | |
[OpenGL] GetStringi(7939, 4) | |
[OpenGL] GetStringi(7939, 5) | |
[OpenGL] GetStringi(7939, 6) |
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
#!/usr/bin/sh | |
# use $IMAGE environment variable to specify image file | |
if [ "$IMAGE" = "" ]; then | |
IMAGE=$( | |
dbus-launch gsettings get org.gnome.desktop.screensaver picture-uri | | |
sed -e "s/'//g" | | |
sed -e "s/^file:\/\///g" | |
) | |
fi |
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
#!/usr/bin/env python2 | |
import os | |
import getpass | |
import urllib2 | |
from StringIO import StringIO | |
import time | |
import datetime | |
import argparse | |
import praw | |
from bs4 import BeautifulSoup |